Agentic infrastructure,
addressable over JSON-RPC.
samurai/mcp is an open catalog of Model Context Protocol servers backed by a multi-layer outcome substrate. Deterministic caches, cross-model consensus, causal memory. Discovered via tools/list. Billed per call.
Why a protocol, not a SaaS
Agent stacks already speak MCP. A SaaS forces a custom SDK, a custom auth flow, a custom dashboard. We offer none of those, on purpose.
# Any MCP-compliant client. No SDK required.
curl https://mcp.mi-kernel2026.xyz/v1 \
-H "Authorization: Bearer $SAMURAI_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,
"method":"tools/list"}'
Live substrate
Counters pulled from the engine's stigmergy layer. If the engine is unreachable from your browser the cells stay blank — we don't make numbers up.
Tool catalog
Three servers, small composable tool surfaces. Each manifest is fetched from the server itself; this table mirrors what tools/list returns today.
A complete call
JSON-RPC 2.0 over HTTP POST. Cache lookup against cache.get. Pricing is one-tenth of a cent per call, deducted on the response that names hit: true.
curl -sS https://mcp.mi-kernel2026.xyz/v1 \
-H "Authorization: Bearer $SAMURAI_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 42,
"method": "cache.get",
"params": {
"prompt_hash": "a3f1bc09d4e2",
"model": "claude-sonnet-4-7"
}
}'
# → 200 OK
{
"jsonrpc": "2.0",
"id": 42,
"result": {
"hit": true,
"value": "…cached response body…",
"ttl_s": 2871,
"cost_saved_usd": 0.012
}
}
Signals
What we publish so you don't have to take our word for it.