MCP servers
Inferior MCP server — TypeScript (stdio)
Local-subprocess MCP server, Node-native. Same 18 tools, 4 resources, 5 prompts as the Python MCP — see Python MCP → Tools/Resources/Prompts for the authoritative reference. The two verify_* tools are documented at Verify Action API.
Install
npm install -g @inferior-ai/mcp@beta
# or, no install:
npx @inferior-ai/mcp
Node 18+. Configure in your host's MCP config:
{
"mcpServers": {
"inferior": {
"command": "npx",
"args": ["@inferior-ai/mcp"],
"env": { "INFERIOR_API_KEY": "cw_full_..." }
}
}
}
Live manifest
Identical fetch behaviour to the Python MCP: GET /v1/mcp/manifest.json at boot via fetch() with a 3 s AbortController. Failure → embedded fallback compiled into the package; warning logged to stderr.
Response shape
Tool output is rendered text built from the v2.0 REST response shapes — see REST → Response structures. The TypeScript MCP exposes nothing the REST API doesn't.
See also
- Verify Action API —
verifyActionInferior/verifyOutcomeInferiorreference + response shapes - Python MCP — authoritative per-tool / per-resource / per-prompt reference
- Streamable HTTP MCP — zero-install hosted variant
- Codex plugin, Gemini extension — hosts that consume this MCP