Veridence provides an official Model Context Protocol (MCP) server that exposes codebase compliance tools directly to AI coding assistants (like Cursor, Claude Desktop, and VS Code).
To connect your LLM agent, add the following stdio server configuration to your IDE's global MCP settings file (e.g. cursor's settings or claude_desktop_config.json):
{
"mcpServers": {
"veridence-audit-cockpit": {
"command": "python",
"args": ["-m", "veridence.mcp_server"],
"env": {
"ADMIN_GATEWAY_SECRET": "your-admin-secret"
},
"cwd": "/absolute/path/to/veridence-python"
}
}
}