TOLL

What software pays for, recorded every six hours.

Snapshot
2026-09-15 16:57 UTC
Sweep
daily-2026-09-15 · finished 2026-09-15 07:10 UTC
Listed
16,167

repair python derived

api.statemind.aiComputederived

? https://api.statemind.ai/mcp#repair_python#repair_python

no methodabsent from every registrycounted above 0% of Compute

0.03 USDC

per call, as the listing declares it on eip155:84532

Compare with anotherEvery figure as JSONCite this page

the price, as of 2026-09-15 04:52 UTC · method

Validation state
no method
as of 2026-09-15 06:52 UTC · method · sweep daily-2026-09-15
Uptime, 7 / 30 / 90 days
— / — / —
as of 2026-09-15 06:52 UTC · method · 0 of 0 in 7d, 0 of 0 in 30d, 0 of 0 in 90d
Calls, trailing 30 days
0
as of 2026-09-15 04:52 UTC · method
Unique payers, trailing 30 days
0
as of 2026-09-15 04:52 UTC · method
Last called
2026-08-16 11:27 UTC
as of 2026-09-15 04:52 UTC · method
First observed by TOLLderived
2026-09-10
as of 2026-09-10 19:08 UTC · method · observation began 10 September 2026; listings that predate it show that date
Pricederived
0.03 USDC
as of 2026-09-15 04:52 UTC · method · on eip155:84532
Networks
1
as of 2026-09-15 04:52 UTC · method

Counters

26 observations, 1 of them a change, fewer than the 3 a trace needs

How big is this endpoint among the ones like it?

1 call100,000this endpoint
Calls counted in the trailing thirty days across the 482 endpoints in Compute that carry counters, binned on a logarithmic scale because the range runs over five orders of magnitude. The marked bin is this endpoint, at 0: 482 in the category are counted higher and 0 lower.

No trace is drawn of this endpoint’s own volume. Its counters have changed 1 time across 26 observations, and 3 changes are the fewest this site will draw a trace through, because two points and a guess are not a series. Every observation is in the JSON.

In words

api.statemind.ai serves repair python, a an undeclared method endpoint that TOLL places in compute, listed in neither registry at the last pull.

Per call, repair python declares 0.03 USDC on Base Sepolia.

repair python is an MCP tool on the server at api.statemind.ai.

A response from repair python, as declared, includes score, valid, fixed_code and diagnostics.

repair python declares no HTTP method, so the daily sweep leaves it uncalled.

api.statemind.ai lists no other endpoint.

Zero calls to repair python are counted in the trailing 30 days; a last-call timestamp is present all the same, 2026-08-16.

Closest in price to repair python within compute: resolve at resolve.exende.dev and services agent manifest lint at sandbox.weverpay.com.

repair python is priced above 65% of comparable listings in compute.

6 listed endpoints on one host pay to the same wallet.

repair python was missing from the Coinbase registry at the pull of 2026-09-15, confirmed at the pull of 2026-09-15; that is registry presence, not liveness.

Where the sentences above compare this endpoint with others, the comparison is against the index as it stands now, live; the figures above are final.

Payment options as declared

the payment options, as of 2026-09-15 04:52 UTC · method

Every payment option declared on this listing
registrynetworkassetamountschemepay to
Coinbaseeip155:84532USDC0.03 USDCexact0xaa7116…447104

Preflight checks at the last sweep

the checks, as of 2026-09-15 06:52 UTC · methodendpoint answered HTTP none

No named check failed.

Validation history, 90 days

Every sweep that observed this endpoint, newest first.

Validation observations over the last 90 days
observed, UTCstatefailed checkssweep
2026-09-15 06:52 UTCno method0daily-2026-09-15
2026-09-14 06:20 UTCno method0daily-2026-09-14
2026-09-13 06:10 UTCno method0daily-2026-09-13
2026-09-12 08:28 UTCno method0daily-2026-09-12
2026-09-11 14:36 UTCno method0daily-2026-09-11

Registry presence

Presence in a registry, not liveness of the service (method). Newest first.

  1. absence from Coinbase confirmed, rule v1
  2. absent from Coinbase at this pull
  3. listed in Coinbase

Declared input and output, as listed

From the registry record, not validated by TOLL.the declared schema, as of 2026-08-16 11:27 UTC · method

The input and output block
{
  "input": {
    "type": "mcp",
    "example": {
      "code": "def bitcount(n):\n    count = 0\n    while n:\n        n ^= n - 1\n    return count\n",
      "options": {
        "examples": "assert bitcount(127) == 7\nassert bitcount(0) == 0"
      }
    },
    "toolName": "repair_python",
    "transport": "streamable-http",
    "description": "Return corrected Python for code that fails those checks: the fix is applied and re-checked, and only returned when it holds.",
    "inputSchema": {
      "type": "object",
      "$defs": {
        "Mode": {
          "enum": [
            "static",
            "repair",
            "execute"
          ],
          "type": "string",
          "title": "Mode",
          "description": "How much work the service is allowed to do.\n\n``static``\n    Never executes the submitted code. Parsing, linting and security\n    scanning only. This is the default and the only mode that is safe to\n    expose without a container sandbox.\n``repair``\n    Static mode plus deterministic auto-fixes and refactors.\n``execute``\n    Repair plus running the code inside a sandbox to prove it works."
        },
        "Options": {
          "type": "object",
          "title": "Options",
          "properties": {
            "examples": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "title": "Examples",
              "default": null,
              "description": "What the code is supposed to do, as doctest lines ('>>> f(2)' on one line, '4' on the next) or as plain assertions ('assert f(2) == 4'). In execute mode they are run in the sandbox: an example that does not hold is a 'python:example-mismatch' error and makes the response invalid, and repair searches for a single-token change that makes every one of them pass. This is the only way the service can tell code that runs from code that is right, so send it whenever you know what you asked for. Examples already written in the code ('>>> ' in any string) are used the same way without this option. Ignored in the other modes, which run nothing."
            },
            "optimize": {
              "type": "boolean",
              "title": "Optimize",
              "default": false,
              "description": "Run constant folding / dead-code elimination. Off by default: the optimiser rewrites the program, and a rewrite is only returned when it provably keeps every effectful construct."
            },
            "timeout_s": {
              "anyOf": [
                {
                  "type": "number",
                  "maximum": 60,
                  "exclusiveMinimum": 0
                },
                {
                  "type": "null"
                }
              ],
              "title": "Timeout S",
              "default": null,
              "description": "Wall-clock budget for running the code. Omitted means the service's own default (MSVC_DEFAULT_TIMEOUT_S). Only execute mode runs anything; a deployment may cap this below the 60 the schema allows and refuses a larger value."
            },
            "transpile_to": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "title": "Transpile To",
              "default": null,
              "description": "Target language for a transpiled copy, e.g. 'javascript'. The copy is made from the code as it ends up, so in repair and execute mode it translates the repaired source rather than the submitted one."
            },
            "max_iterations": {
              "type": "integer",
              "title": "Max Iterations",
              "default": 3,
              "maximum": 10,
              "minimum": 1,
              "description": "How many fix/verify rounds the repair loop may take. Ignored in static mode, which changes nothing."
            },
            "expected_output": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "title": "Expected Output",
              "default": null,
              "description": "Exact stdout the code must produce in execute mode. A mismatch is an 'expected-output' diagnostic and makes the response invalid, even when the program exits cleanly. Ignored in the other modes, which produce no output."
            }
          },
          "description": "Per-request tuning knobs."
        },
        "Language": {
          "enum": [
            "python",
            "javascript",
            "typescript",
            "html",
            "sql",
            "solidity",
            "other"
          ],
          "type": "string",
          "title": "Language",
          "description": "Source languages a validator can accept."
        }
      },
      "title": "ValidateRequest",
      "required": [
        "code"
      ],
      "properties": {
        "code": {
          "type": "string",
          "title": "Code",
          "maxLength": 200000,
          "minLength": 1,
          "description": "The source to check, as a whole file where possible: diagnostics carry the line and column of the text you send, and a fragment hides the imports and definitions the type check needs. A deployment may accept fewer bytes than the 200000 here."
        },
        "options": {
          "$ref": "#/$defs/Options",
          "description": "Tuning knobs. Most of them only take effect in the mode that does the corresponding work; see each field."
        },
        "language": {
          "$ref": "#/$defs/Language",
          "default": "python",
          "description": "The language of the code. A service that does not handle it refuses the request rather than guessing; the enum is shared across services, so it lists more than any one of them accepts."
        }
      },
      "description": "A validation job submitted by an agent."
    }
  },
  "output": {
    "type": "json",
    "example": {
      "score": 0.4,
      "valid": false,
      "fixed_code": "def bitcount(n):\n    count = 0\n    while n:\n        n &= n - 1\n        count += 1\n    return count\n",
      "diagnostics": [
        {
          "code": "python:example-mismatch",
          "message": "assert bitcount(127) == 7 failed: the code loops forever",
          "severity": "error"
        }
      ]
    }
  }
}
Cite this page

This endpoint is delisted: the page is frozen at its last observation and its live URL is the stable one. Data reuse is under CC BY 4.0 (terms).

Plain text

TOLL, "repair python on api.statemind.ai". https://tollindex.com/e/api-statemind-ai-mcp-repair-python-repair-python-e78b8e. Accessed [access date].

BibTeX

@misc{toll-e-api-statemind-ai-mcp-repair-python-repair-python-e78b8e-2026-09-15,
  author = {TOLL},
  title = {repair python on api.statemind.ai},
  howpublished = {\url{https://tollindex.com/e/api-statemind-ai-mcp-repair-python-repair-python-e78b8e}},
  year = {2026},
  month = {9},
  note = {Frozen at its last observation, 2026-09-15 16:57 UTC. Accessed [access date].}
}

Reports and replies about this endpoint

None yet. Anything submitted through the form below is published here with its outcome.

Report an error about repair python, or reply as the named seller

No account, no token. Published unedited with its outcome, upheld or not. Do not include personal data.

Kind

Published as typed. Optional.

10 to 4,000 characters.

Verify with the payee wallet (optional, EVM)

Sign this message with the wallet named on the page and paste the signature; it is checked, stored, never published. TOLL reply about endpoint e78b8e7595d9f2d534e96442bace8e7a03617c23af4d06a0116409122c32eb0f from wallet 0xaa7116CdDA58286F4cdA40C6F735762C22447104

The 0x address named as payee on this page, 42 characters.

The hex signature of the message above, starting 0x.