Docs SDKs & integrations
MCP server
Expose your gridtrue ledger to AI coding agents as structured context.
gridtrue ships an MCP (Model Context Protocol) server that lets AI coding agents query your ledger — who verified what, when, and how. Day-one support for Claude Code, Cursor, Windsurf, Continue and Zed.
Install
bash
gridtrue mcp install # auto-detect installed agents
gridtrue mcp install --for cursor # configure Cursor onlyWhat the agent can call
| Tool | Use case |
|---|---|
| search_attestations | Find attestations matching a predicate / identity / path / time range. |
| get_commit_history | Walk the commit state machine for a file or directory. |
| get_file_verification_status | Ask 'is the file I'm editing verified? by whom? how recently?'. |
| get_repo_policy | Read the policy contract to explain why a push would be rejected. |
| find_similar_failures | Pattern-match the current failing build against historical attestations. |
| get_module_experts | Identify which teammates most frequently attest a given module. |
| check_proposed_change | Dry-run a diff against the policy contract before the agent suggests it. |