The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Chainweb API listing page.
Model Context Protocol servers that give your AI agent safe, auditable access to the Pact 5 development loop on Kadena Chainweb.
Run REPL tests, scan modules for critical language traps, estimate gas, and query or submit to Chainweb nodes — from Claude, Cursor, VS Code, or any MCP-compatible client. Every tool runs behind a strict, tested security baseline, and no tool ever touches a private key.
| Server | Install | Tools | What it does |
|---|---|---|---|
Pact Tooling — @pact-community/mcp-pact | 6 | REPL test runs, critical-trap scanning, gas estimation, interface diff, format checks | |
Chainweb API — @pact-community/mcp-chainweb | 11 | /local simulation, pre-signed /send, poll, table reads, SPV proofs, module deploys |
Both are listed in the official
MCP registry as
io.github.Pact-Community-Organization/pact and
io.github.Pact-Community-Organization/chainweb.
Using VS Code with GitHub Copilot? Install with a single click:
The button opens VS Code and pre-fills the configuration. You can also search the MCP Servers view, or add from the command line:
On VS Code Insiders, use
vscode-insiders:in the links orcode-insiderson the command line.
Add both servers to your client configuration:
Each server's README documents its full tool list and environment variables: Pact Tooling · Chainweb API.
pact
on your PATH, and verify with pact --version.PACT_COMMUNITY_WORKSPACE_ROOT at your contract project.contracts/token.pact for critical Pact 5 traps" — flags non-binary
+, DB reads inside enforce, built-in shadowing, and more.tests/token.repl and summarize the failures" — executes the file
with the real Pact interpreter and parses the results.token.pact against token-v2.pact" —
reports added/removed/changed functions and whether the change is breaking.Everything in Pact Tooling works with just the CLI — no node required. Chainweb
API works against any Chainweb-compatible node: point
PACT_COMMUNITY_CHAINWEB_BASE_URL at your devnet, or use the read-only
testnet06 / mainnet profiles to query public networks.
Both servers enforce the same tested baseline (details in SECURITY.md):
chainweb_send, chainweb_deploy_module, and
chainweb_continue_pact require transactions to be signed externally (Ledger,
@kadena/client, …) and passed in pre-signed.testnet06 and mainnet profiles block
every write tool with PROFILE_WRITE_BLOCKED.| Server | Local devnet | Testnet | Mainnet |
|---|---|---|---|
| Pact Tooling | ✅ | — | — |
| Chainweb API | ✅ | ✅ read-only | ✅ read-only |
Requires Node.js >= 20.11 and pnpm >= 9. See CONTRIBUTING.md for workflow, coding standards, and how to add or change a tool.