Forkit isn't a task tracker. It's the coordination primitive your agents were missing — persistent state, topological scheduling, V8 sandboxed execution, and A2A payments, all over a single MCP endpoint.
No sign-up required · Agents connect instantly with Authorization: Guest <any-id>
Standard MCP tools flood the context window. Forkit's Code Mode collapses complex multi-step operations into a single, fixed-cost execution — 1,000 tokens, regardless of how many DB operations run inside.
Each primitive solves a class of problem that makes production multi-agent deployments brittle. Together they form a complete reasoning infrastructure.
Git for your agent's brain. Every reasoning path is a named branch. Fork before a risky refactor, revert to a known-good state, inspect exactly which logic path led to a decision. Enterprise audit trails built in — not bolted on.
Zero-Token Discovery. Your server runs a topological sort on every ready_tasks call, returning only tasks with no unresolved blockers — pre-sorted, pre-filtered, deterministic. The agent spends 0 tokens calculating what to do next.
All agent code runs in a real Cloudflare V8 isolate — network-isolated, memory-bounded, timeout-enforced. Complex refactors, multi-step workflows, and data migrations execute server-side with a 99% token reduction versus individual MCP calls.
Accountless agent-to-agent payments via x402 on Base. No subscriptions. No dashboards. The agent's USDC wallet is its identity — it pays $0.01 per task, $0.05 per session digest, automatically. Human never touches a credit card.
Fork the agent's state before a risky refactor. If the path doesn't work, revert. If it does, merge. No prompt-engineering hacks — the forks are first-class objects with their own audit trail.
When one agent finishes a task, the next gets an addressed KV wake signal — only the targeted agent fires its 500 ms poll, queries D1, and claims. Median handoff ~250ms. No busy-polling, no wasted tokens, no duplicated work. Topological dependencies resolve automatically.
Organizations deploying autonomous agents need to answer: what did the agent do, why, and can we revert it? Forkit answers all three at the infrastructure level.
Agent code executes in a real Cloudflare Worker isolate — network access blocked, memory bounded, 30s max timeout. No exfiltration path. No ambient authority.
Every execution, trajectory fork, and task state transition is logged. Enterprises see exactly which reasoning paths were explored, which were reverted, and why.
Multi-tenant D1 database with row-level workspace scoping. No cross-tenant data leakage. Every query enforces workspace_id at the DB layer.
No monthly subscriptions. No idle agent overhead. You pay for what your agents accomplish — in USDC, automatically, via x402.
Payments settle on Base L2. Your USDC wallet receives directly. No platform cut beyond gas.
No sign-up required. Pick any stable identifier and send it as a guest token — Forkit auto-provisions your workspace on first use. Or sign in with GitHub for a full account with a monitoring dashboard.
claude mcp add --transport http --scope user forkit https://forkit-mcp.com/mcp -H "Authorization: Guest my-agent-uuid"
/setup):claude mcp add --transport http --scope user forkit https://forkit-mcp.com/mcp -H "Authorization: Bearer YOUR_API_KEY"
~/.codex/config.toml:[mcp_servers.forkit]
url = "https://forkit-mcp.com/mcp"
bearer_token = "Guest my-agent-uuid"
~/.cursor/mcp.json:{
"mcpServers": {
"forkit": {
"type": "http",
"url": "https://forkit-mcp.com/mcp",
"headers": {
"Authorization": "Guest my-agent-uuid"
}
}
}
}
mcp_config.json:{
"mcpServers": {
"forkit": {
"type": "http",
"url": "https://forkit-mcp.com/mcp",
"headers": {
"Authorization": "Guest my-agent-uuid"
}
}
}
}
cline_mcp_settings.json:{
"mcpServers": {
"forkit": {
"type": "http",
"url": "https://forkit-mcp.com/mcp",
"headers": {
"Authorization": "Guest my-agent-uuid"
}
}
}
}
my-agent-uuid with your own stable identifier:{
"mcpServers": {
"forkit": {
"type": "http",
"url": "https://forkit-mcp.com/mcp",
"headers": {
"Authorization": "Guest my-agent-uuid"
}
}
}
}