_ registry / mcp http-sse · checked 1h ago

compiler-explorer

https://godbolt.org

Registry code: 9f3abde79efcadde

api record

Compile code with thousands of compilers, inspect the assembly, and share godbolt.org links

from a public catalogue that lists it, not from the operator

endpoint
https://godbolt.org/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
381ms

last good check

priced tools
0

of 7 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 7 tools
2 open 5 never probed 2 of 7 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • list_languages open 1h ago

    List supported languages. Each entry has `defaultCompiler` and `compilerCount`.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • list_compilers open 1h ago

    List available compilers, optionally filtered by language

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "lean": {
          "type": "boolean",
          "description": "Force id+name only, regardless of count. Useful to browse the catalog before drilling in."
        },
        "match": {
          "type": "string",
          "description": "Case-insensitive AND-of-tokens filter on id and name. Punctuation splits tokens; numeric tokens match whole-word (\"gcc 14.1\" matches \"14.1.0\" not \"14.10\"); alphanumeric tokens substring-match (\"g14\" matches \"g142\"). Literal text only — for \"newest version\" use `latestPerMajor`; for \"newest X on arch Y\" prefer `instructionSet` + `latestPerMajor`."
        },
        "language": {
          "type": "string",
          "description": "Language ID to filter by (e.g. \"c++\", \"rust\", \"python\")"
        },
        "maxResults": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Cap full-detail entries (default 25). Beyond the cap, degrades to lean (id+name only) with a refinement hint.",
          "exclusiveMinimum": 0
        },
        "instructionSet": {
          "enum": [
            "6502",
            "aarch64",
            "amd64",
            "x86",
            "arm32",
            "avr",
            "beam",
            "c6x",
            "dex",
            "ebpf",
            "evm",
            "eravm",
            "ez80",
            "hook",
            "hppa",
            "core",
            "java",
            "kvx",
            "llvm",
            "loongarch",
            "m68k",
            "mips",
            "mos6502",
            "mpy",
            "mrisc32",
            "msp430",
            "perl",
            "powerpc",
            "ptx",
            "python",
            "riscv32",
            "riscv64",
            "s390x",
            "sass",
            "sh",
            "sparc",
            "spirv",
            "vax",
            "wasm32",
            "wasm64",
            "wdc65c816",
            "xtensa",
            "z180",
            "z80"
          ],
          "type": "string",
          "description": "Target architecture filter. Combine with `latestPerMajor: true` for \"newest X for arch Y\" (e.g. `{language:\"c++\", instructionSet:\"amd64\", latestPerMajor:true}`)."
        },
        "latestPerMajor": {
          "type": "boolean",
          "description": "\"Newest X\" filter. By release track (stable/nightly/prerelease/experimental): newest stable per (language, instructionSet, semver major); all nightly + prerelease; experimental skipped unless `includeExperimental: true`."
        },
        "includeExperimental": {
          "type": "boolean",
          "description": "With `latestPerMajor: true`, also include experimental compilers (c++ proposal forks, llvm-mos platform variants). Off by default — bloats \"newest X\" answers."
        }
      }
    }
    arguments 82 lines
  • list_libraries unknown never probed

    List available libraries for a given programming language

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "language"
      ],
      "properties": {
        "lean": {
          "type": "boolean",
          "description": "Force id+name only, regardless of count. Useful to browse the catalog before drilling in."
        },
        "match": {
          "type": "string",
          "description": "Case-insensitive AND-of-tokens filter on id, name, and version strings (so \"boost 1.88\" finds Boost when one of its versions matches 1.88.x). Numeric tokens match version-prefix; alphanumeric substring."
        },
        "language": {
          "type": "string",
          "description": "Language ID (e.g. \"c++\", \"rust\")"
        },
        "maxResults": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Cap full-detail entries (default 25). Beyond the cap, degrades to lean (id+name only) with a refinement hint.",
          "exclusiveMinimum": 0
        }
      }
    }
    arguments 27 lines
  • compile unknown never probed

    Compile source code and return assembly output, stdout, and stderr

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "source",
        "language"
      ],
      "properties": {
        "stdin": {
          "type": "string",
          "description": "Standard input for execution (requires execute=true)"
        },
        "source": {
          "type": "string",
          "description": "Source code to compile"
        },
        "execute": {
          "type": "boolean",
          "description": "Run the program instead of returning assembly. `asm` becomes empty; runtime output goes to top-level `stdout`/`stderr`; compile diagnostics move to `buildResult.stdout`/`stderr`."
        },
        "filters": {
          "type": "object",
          "properties": {
            "trim": {
              "type": "boolean",
              "description": "Trim whitespace (default: false)"
            },
            "intel": {
              "type": "boolean",
              "description": "Use Intel assembly syntax (default: true)"
            },
            "labels": {
              "type": "boolean",
              "description": "Filter unused labels (default: true)"
            },
            "demangle": {
              "type": "boolean",
              "description": "Demangle symbol names (default: true)"
            },
            "directives": {
              "type": "boolean",
              "description": "Filter assembler directives (default: true)"
            },
            "commentOnly": {
              "type": "boolean",
              "description": "Filter comment-only lines (default: true)"
            },
            "libraryCode": {
              "type": "boolean",
              "description": "Filter library code (default: false)"
            }
          },
          "description": "Output filters"
        },
        "options": {
          "type": "string",
          "description": "Compiler flags (e.g. \"-O2 -std=c++20 -Wall\")"
        },
        "compiler": {
          "type": "string",
          "description": "Compiler ID from list_compilers (e.g. \"g161\"). If omitted, uses the language's `defaultCompiler` from list_languages."
        },
        "language": {
          "type": "string",
          "description": "Language ID (e.g. \"c++\", \"c\", \"rust\", \"python\")"
        },
        "libraries": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "id",
              "version"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "Library ID from list_libraries (e.g. \"boost\")."
              },
              "version": {
                "type": "string",
                "description": "Version id (\"188\") OR human form (\"1.88.0\") — both accepted."
              }
            }
          },
          "description": "Libraries to link."
        },
        "maxAsmLines": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Cap asm output (default 500 lines).",
          "exclusiveMinimum": 0
        },
        "maxStderrLines": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Cap each stderr stream — compile and execute separately (default 100).",
          "exclusiveMinimum": 0
        },
        "maxStdoutLines": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Cap each stdout stream — compile and execute separately (default 100).",
          "exclusiveMinimum": 0
        }
      }
    }
    arguments 107 lines
  • lookup_asm_instruction unknown never probed

    Look up documentation for an assembly instruction

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "instruction_set",
        "opcode"
      ],
      "properties": {
        "opcode": {
          "type": "string",
          "description": "Assembly instruction mnemonic (e.g. \"MOV\", \"ADD\", \"JMP\")"
        },
        "instruction_set": {
          "enum": [
            "6502",
            "aarch64",
            "amd64",
            "arm32",
            "avr",
            "evm",
            "java",
            "llvm",
            "perl",
            "powerpc",
            "ptx",
            "python",
            "riscv64",
            "sass",
            "wdc65c816"
          ],
          "type": "string",
          "description": "Instruction set architecture (no default — must match the asm dialect being looked up)."
        }
      }
    }
    arguments 35 lines
  • generate_short_url unknown never probed

    Create a Compiler Explorer short URL for sharing code with compiler settings

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "source",
        "language",
        "compiler"
      ],
      "properties": {
        "source": {
          "type": "string",
          "description": "Source code"
        },
        "options": {
          "type": "string",
          "description": "Compiler flags (e.g. \"-O2 -std=c++20\")"
        },
        "compiler": {
          "type": "string",
          "description": "Compiler ID from list_compilers (e.g. \"g161\", \"clang_trunk\")"
        },
        "language": {
          "type": "string",
          "description": "Language ID (e.g. \"c++\", \"c\", \"rust\")"
        },
        "libraries": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "id",
              "version"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "Library ID from list_libraries."
              },
              "version": {
                "type": "string",
                "description": "Version id (\"188\") OR human form (\"1.88.0\")."
              }
            }
          },
          "description": "Libraries to include."
        }
      }
    }
    arguments 48 lines
  • get_shortlink_info unknown never probed

    Retrieve source and compiler config from a CE short URL. Compiler entries are returned in the `compile` tool's shape ({compiler, options, libraries:[{id, version}]}). Multi-pane shortlinks (executors, conformance views, CMake trees, per-compiler filters/tools) are flattened — only the basic compile inputs survive.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "Short link ID or full URL (e.g. \"G38YP7eW4\" or \"https://godbolt.org/z/G38YP7eW4\")"
        }
      }
    }
    arguments 13 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/9f3abde79efcadde/badge.svg)](https://brick.blue/agent/9f3abde79efcadde)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.