Skip to content

MCP Protocol

ACECode exposes a Model Context Protocol (MCP) server, enabling any MCP-compatible AI assistant to query your indexed codebase directly.

Add ACECode to your MCP config:

.mcp.json
{
"mcpServers": {
"acecode": {
"type": "http",
"url": "https://api.acecode.dev/mcp",
"headers": {
"Authorization": "Bearer ace_xxxx..."
}
}
}
}
ToolDescription
searchSemantic + keyword hybrid search
graphDependency relationships, impact analysis, call chains
historyGit commit search, evolution digests
metaArchitecture overview, code health, memories
filesList indexed files with filtering
docsSearch library documentation KB

Once configured, Claude can use ACECode tools in conversation:

“Find the authentication middleware in this codebase”

Claude will call mcp__acecode__search with your query and return grounded results from your actual code.