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

execute python derived

api.statemind.aiIdentityderived

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

no methodabsent from every registrycounted above 0% of Identity

0.1 USDC

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

Compare with anotherEvery figure as JSONCite this page

the price, as of 2026-09-15 11:42 UTC · method

Validation state
no method
as of 2026-09-15 06:53 UTC · method · sweep daily-2026-09-15
Uptime, 7 / 30 / 90 days
— / — / —
as of 2026-09-15 06:53 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 11:42 UTC · method
Unique payers, trailing 30 days
0
as of 2026-09-15 11:42 UTC · method
Last called
2026-08-16 15:34 UTC
as of 2026-09-15 11:42 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.1 USDC
as of 2026-09-15 11:42 UTC · method · on eip155:8453
Networks
1
as of 2026-09-15 11:42 UTC · method

Counters

27 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 1,491 endpoints in Identity 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: 1,490 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 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.

In words

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

On Base, execute python asks 0.1 USDC per call.

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

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

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

api.statemind.ai lists no other endpoint.

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

execute python sits nearest in price to pay tier3 (api.truthbear.co) and attest (pulse.chainverdict.xyz) among listings in identity.

execute python is priced above 86% of comparable listings in identity.

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

execute 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.

The price of execute python is declared by 46 other listings in identity too.

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 11:42 UTC · method

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

Preflight checks at the last sweep

the checks, as of 2026-09-15 06:53 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:53 UTCno method0daily-2026-09-15
2026-09-14 06:21 UTCno method0daily-2026-09-14
2026-09-13 06:11 UTCno method0daily-2026-09-13
2026-09-12 08:29 UTCno method0daily-2026-09-12
2026-09-11 14:38 UTCno method0daily-2026-09-11

Registry presence

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

  1. absent from Coinbase at this pull
  2. 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 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": "execute_python",
    "transport": "streamable-http",
    "description": "Run Python in a throwaway container with no network and a read-only filesystem, and report what it did against the caller's examples.",
    "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, "execute python on api.statemind.ai". https://tollindex.com/e/api-statemind-ai-mcp-execute-python-e97c4a. Accessed [access date].

BibTeX

@misc{toll-e-api-statemind-ai-mcp-execute-python-e97c4a-2026-09-15,
  author = {TOLL},
  title = {execute python on api.statemind.ai},
  howpublished = {\url{https://tollindex.com/e/api-statemind-ai-mcp-execute-python-e97c4a}},
  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 execute 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 e97c4aa605ac89b62398283022e3494d71a43c56dd9c7b7f77e4be31c8b3c195 from wallet 0xaa7116CdDA58286F4cdA40C6F735762C22447104

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

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