AI-agent programming language. JSON AST in, WASM out. Typed, effect-tracked, Z3-verified.
Edict MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. AI-agent programming language. JSON AST in, WASM out. Typed, effect-tracked, Z3-verified.
Edict is a statically-typed, effect-tracked programming language where the canonical program format is a JSON AST. It's purpose-built so AI agents can write, verify, and execute programs through a structured pipeline — no text parsing, no human-readable syntax, no ambiguity.
The server ships on npm as edict-lang, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Once Edict is connected, these are the calls the assistant has available:
edict_schema — Returns the full AST JSON Schema — the spec for how to write programsedict_version — Returns compiler version and capability infoedict_examples — Returns 41 example programs as JSON ASTs (includes schema snippet)edict_validate — Validates AST structure (field names, types, node kinds)edict_check — Full pipeline: validate → resolve names → type check → effect check → verify contractsedict_compile — Compiles a checked AST to WASM (returns base64-encoded binary)edict_run — Executes a compiled WASM binary, returns output and exit codeedict_patch — Applies targeted AST patches by nodeId and re-checksedict_errors — Returns machine-readable catalog of all error typesedict_lint — Runs non-blocking quality analysis and returns warningsedict_debug — Execution tracing and crash diagnosticsedict_compose — Combines composable program fragments into a modulePlenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Edict's toolset — edict_schema, edict_version, edict_examples and 11 more — is a fair guide to whether it matches your workflow. It is maintained by Sowiedu; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| edict_schema | Returns the full AST JSON Schema — the spec for how to write programs |
| edict_version | Returns compiler version and capability info |
| edict_examples | Returns 41 example programs as JSON ASTs (includes schema snippet) |
| edict_validate | Validates AST structure (field names, types, node kinds) |
| edict_check | Full pipeline: validate → resolve names → type check → effect check → verify contracts |
| edict_compile | Compiles a checked AST to WASM (returns base64-encoded binary) |
| edict_run | Executes a compiled WASM binary, returns output and exit code |
| edict_patch | Applies targeted AST patches by nodeId and re-checks |
| edict_errors | Returns machine-readable catalog of all error types |
| edict_lint | Runs non-blocking quality analysis and returns warnings |
| edict_debug | Execution tracing and crash diagnostics |
| edict_compose | Combines composable program fragments into a module |
| edict_explain | Explains AST nodes, errors, or compiler behavior |
| edict_export | Packages a program as a UASF portable skill |
{
"mcpServers": {
"edict": {
"command": "npx",
"args": ["-y", "edict-lang"]
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
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.