Go from natural language to verified finite state machines — topology bugs caught before code runs.
Orca MCP server exists for a simple reason — assistants are far more useful when they can act on Orca directly instead of describing what you should do. Go from natural language to verified finite state machines — topology bugs caught before code runs.
The core insight: LLMs generate flat transition tables reliably, but they struggle to guarantee topology correctness on their own. Orca separates program structure (state machine topology) from computation (action functions), then verifies the structure automatically before any code runs.
Installation goes through your MCP client rather than a global install: point it at tsx on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Once Orca is connected, these are the calls the assistant has available:
submit_payment — payment_authorizedpayment_declined — retry_requestedon_entry — send_authorization_requestTimeouts — timeout: 30s -> state_nameMulti — machine files: multiple machines in one .orca.md separated by ---Reachability — every state is reachable from the initial stateCompleteness — every (state, event) pair is handled or explicitly ignoredCross-machine — cycle detection, child reachability to final state, input mapping validationon_done — -> completedinvoke — PaymentProcessoron_error — payment_failedtimeout — 30s -> timed_outYou will need 4 environment variables: ORCA_API_KEY, ORCA_PROVIDER, ORCA_BASE_URL, ORCA_MODEL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Orca's toolset — submit_payment, payment_declined, on_entry and 11 more — is a fair guide to whether it matches your workflow. It is maintained by jascal; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| submit_payment | payment_authorized |
| payment_declined | retry_requested |
| on_entry | send_authorization_request |
| Timeouts | timeout: 30s -> state_name |
| Multi | machine files: multiple machines in one .orca.md separated by --- |
| Reachability | every state is reachable from the initial state |
| Completeness | every (state, event) pair is handled or explicitly ignored |
| Cross-machine | cycle detection, child reachability to final state, input mapping validation |
| on_done | -> completed |
| invoke | PaymentProcessor |
| on_error | payment_failed |
| timeout | 30s -> timed_out |
| macOS | ** ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | ** %APPDATA%\Claude\claude_desktop_config.json |
{
"mcpServers": {
"orca": {
"command": "npx",
"args": ["-y", "@orcalang/orca-mcp-server"],
"env": {
"ORCA_API_KEY": "<your-api-key>",
"ORCA_PROVIDER": "anthropic"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| ORCA_API_KEY | Credential the server authenticates with. | Yes |
| ORCA_PROVIDER | Configuration value read at startup. | Optional |
| ORCA_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| ORCA_MODEL | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.