Connects Claude to The Code Registry's hosted analysis platform for programmatic codebase audits. Exposes account creation, project setup, vault management, and result polling via JSON-RPC tools. You'd reach for this during M&A due diligence or security audits when you need formatted reports without leaving the conversation. The LOCAL_AGENT mode keeps code on your machine and only uploads anonymized metrics. Free tier gives you 200k tokens and summary-level results. Agents walk through create account, create project, spin up a vault with Docker commands, then poll for completion. PDF reports get emailed automatically, or you can fetch them via the results API. Re-analysis generates comparison reports against previous snapshots.
Enterprise-grade code intelligence for AI assistants
Quick Start • Features • Use Cases • Documentation • Website
Enterprise-grade code intelligence for business leaders by The Code Registry. Now with a native, fully-featured MCP server for AI agents. Analyze codebases for due diligence, tech debt, security vulnerabilities, code quality and more - directly from Claude Desktop, Claude API, and other MCP-compatible clients.
Use this URL when configuring any MCP-compatible client:
https://integrator.app.thecoderegistry.com/api/ai/router
Some MCP clients and editors (including Cursor) require MCP server configuration before the skill can use tools.
{
"mcpServers": {
"coderegistry": {
"url": "https://integrator.app.thecoderegistry.com/api/ai/router"
}
}
}
Use this JSON in your Cursor MCP settings, or copy the same example from integrations/cursor/config.json.
CallMcpTool known limitation and workaroundSome Cursor builds (and other clients that wrap MCP tools behind a generic CallMcpTool) may show an incomplete tool schema that omits arguments, even though the runtime accepts it.
For The Code Registry tools, always pass required parameters in the arguments field when using CallMcpTool.
Prompt hint that often fixes this behavior:
Use the CallMcpTool with the arguments field to pass the required parameters.
Example wrapper call shape:
{
"server": "coderegistry",
"toolName": "create_project",
"arguments": {
"user_id": "<user_id>",
"name": "My Project"
}
}
Then install the skill:
npx skills add The-Code-Registry/mcp-server
The code-registry skill gives your client AI agent extra context and instructions for using this MCP server correctly, including:
create_account -> create_project -> create-code-vault -> polling)This is a hosted MCP server that lets AI agents create accounts, manage projects, analyze code, and retrieve analysis results without leaving the conversation. It is designed for business leaders (M&A professionals, CTOs, VCs, board members) who need fast, reliable code insights and clean reports.
Any codebase can be analyzed and results can be ready in as quick as 30 minutes depending on code volume. PDF reports containing the results are automatically emailed to the user after analysis is complete, and as their AI agent you can retrieve the results as soon as they are ready, to show in your conversation with the user or to generate graphs/charts/reports with etc.
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to data sources and tools. Learn more at modelcontextprotocol.io.
This server supports the full MCP JSON-RPC 2.0 flow, including:
initializetools/listtools/callresources/list and resources/readprompts/list and prompts/getIf the user already has a Code Registry account, they can generate an API key in the web app and use it directly via the
X-API-Key header (preferred). If the MCP client cannot set custom headers, pass api_key in tool arguments instead.
Once the MCP server is configured, you can ask your AI agent or system questions like:
{
"jsonrpc": "2.0",
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {}
},
"id": 1
}
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "create_account",
"arguments": {
"email": "user@example.com",
"name": "User Name",
"team_name": "Example Org",
"integrator_id": "agent-name"
}
},
"id": 2
}
Response: Returns api_key, team_id, and user_id (inside result.content[0].text as JSON) - store the API key securely and include it in all subsequent requests via X-API-Key header.
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "create_project",
"arguments": {
"user_id": "<user_id>",
"name": "My Project",
"description": "Optional"
}
},
"id": 3
}
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "create-code-vault",
"arguments": {
"project_id": "<project_id>",
"user_id": "<user_id>",
"name": "My Code Vault",
"source_type": "LOCAL_AGENT"
}
},
"id": 4
}
Response: Includes next_steps.commands with Docker commands to run locally.
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get-code-vault-results",
"arguments": { "vault_id": "<vault_id>" }
},
"id": 5
}
Note: Results are typically ready in 30 minutes to a few hours, depending on codebase size. Poll with exponential backoff.
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get-code-vault-reports",
"arguments": { "vault_id": "<vault_id>" }
},
"id": 6
}
Note: PDF reports are generated after analysis completes and are automatically emailed to the user.
To re-run analysis on an existing code vault:
reanalyze-code-vaultLOCAL_AGENTImportant: Once re-analysis starts, get-code-vault-summary, get-code-vault-results, and get-code-vault-reports return the new version only. Previous version data is no longer accessible via these tools.
Quickly assess acquisition targets for technical risk, security vulnerabilities, and architecture concerns. See examples/use-cases/due-diligence.md.
Monitor technical debt across your portfolio and track improvements over time. See examples/use-cases/tech-debt-analysis.md.
Identify security vulnerabilities and compliance issues before they become problems. See examples/use-cases/security-audit.md.
Track engineering metrics across multiple companies in your investment portfolio. See examples/use-cases/portfolio-monitoring.md.
See integrations/ for client-specific setup:
This repository includes a reusable agent skill at skills/code-registry that gives agents additional context and concrete operating instructions for this MCP server (tool order, polling lifecycle, completion rules, and result interpretation).
skills/code-registry/SKILL.mdskills/code-registry/references/vault-lifecycle.mdskills/code-registry/references/result-interpretation.mdskills/code-registry/scripts/poll_vault_status.pyInstall the code-registry folder into your agent's skills directory, then run your agent normally:
$CODEX_HOME/skills/~/.claude/skills/.cursor/skills/See skills/README.md for usage details and script examples.
get-security-issues, get-code-smells, get-git-history, get-contributors, get-components, get-code-iq-automated-queries, and get-the-code-score. Verification-only (VerifyYourCode) plans do not include access to these tools.Available on all plans:
docs/getting-started.md - Step-by-step walkthroughdocs/api-reference.md - Complete action referencedocs/authentication.md - API key managementdocs/facets.md - Definitions for analysis facets in resultsdocs/troubleshooting.md - Common issues and solutionsdocs/architecture.md - System design overviewskills/README.md - Install and use the Code Registry agent skillFor M&A Professionals:
For CTOs & Technical Leaders:
For VCs & Board Members:
See LICENSE file for details.
We welcome contributions! See CONTRIBUTING.md for guidelines.
Built with ❤️ by The Code Registry
The World's first code intelligence platform built for business leaders
com.exploit-intel/eip-mcp
dmontgomery40/pentest-mcp
pantheon-security/notebooklm-mcp-secure
cyanheads/pentest-mcp-server
io.github.akhilucky/ai-firewall-mcp