no methodabsent from every registrycounted above 0% of Compute
0.03 USDC
per call, as the listing declares it on eip155:
Compare with anotherEvery figure as JSONCite this page
the price, as of 2026-09-15 11:42 UTC · method
- Validation state
- no method
- Uptime, 7 / 30 / 90 days
- — / — / —
- Calls, trailing 30 days
- 0
- Unique payers, trailing 30 days
- 0
- Last called
- 2026-08-16 15:34 UTC
- First observed by TOLLderived
- 2026-09-10
- Pricederived
- 0.03 USDC
- Networks
- 1
How big is this endpoint among the ones like it?
No trace is drawn of this endpoint’s own volume. Its counters have changed 1 time across 27 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.
api.statemind.ai serves repair python, a an undeclared method endpoint that TOLL places in compute, listed in neither registry at the last pull.
On Base, repair python asks 0.03 USDC per call.
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, not yet confirmed by a second pull; 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.
the payment options, as of 2026-09-15 11:42 UTC · method
| registry | network | asset | amount | scheme | pay to |
|---|---|---|---|---|---|
| Coinbase | eip155: | USDC | 0.03 USDC | exact | 0xaa7116…447104 |
the checks, as of 2026-09-15 06:51 UTC · methodendpoint answered HTTP none
No named check failed.
Every sweep that observed this endpoint, newest first.
| observed, UTC | state | failed checks | sweep |
|---|---|---|---|
| 2026-09-15 06:51 UTC | no method | 0 | daily-2026-09-15 |
| 2026-09-14 06:19 UTC | no method | 0 | daily-2026-09-14 |
| 2026-09-13 06:10 UTC | no method | 0 | daily-2026-09-13 |
| 2026-09-12 08:27 UTC | no method | 0 | daily-2026-09-12 |
| 2026-09-11 14:34 UTC | no method | 0 | daily-2026-09-11 |
Presence in a registry, not liveness of the service (method). Newest first.
- absent from Coinbase at this pull
- listed in Coinbase
From the registry record, not validated by TOLL.the declared schema, as of 2026-08-16 15:34 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-e6a09a. Accessed [access date].
BibTeX
@misc{toll-e-api-statemind-ai-mcp-repair-python-e6a09a-2026-09-15,
author = {TOLL},
title = {repair python on api.statemind.ai},
howpublished = {\url{https://tollindex.com/e/api-statemind-ai-mcp-repair-python-e6a09a}},
year = {2026},
month = {9},
note = {Frozen at its last observation, 2026-09-15 16:57 UTC. Accessed [access date].}
}None yet. Anything submitted through the form below is published here with its outcome.