CommonTrace MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CommonTrace MCP Serverfind traces on how to implement authentication in Next.js"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CommonTrace MCP Server
Model Context Protocol server for CommonTrace — connects AI coding agents to the shared knowledge base.
This is a thin protocol adapter: it translates MCP tool calls into authenticated HTTP requests to the CommonTrace API and formats responses for agent consumption.
Tools
Tool | Description | Read/Write |
| Search by natural language query and/or tags | Read |
| Submit a new coding trace | Write |
| Upvote or downvote a trace | Write |
| Get a trace by ID | Read |
| List available filter tags | Read |
Related MCP server: UseCortex MCP Server
Quick Start
With Docker (recommended)
The MCP server is included in the main server's Docker Compose:
git clone https://github.com/commontrace/server.git
cd server
cp .env.example .env
docker compose upThe MCP server runs on http://localhost:8080.
Standalone
git clone https://github.com/commontrace/mcp.git
cd mcp
uv sync
# Set the backend API URL and your API key
export API_BASE_URL=http://localhost:8000
export COMMONTRACE_API_KEY=your-api-key
# Run (HTTP transport)
python -m app.serverConfiguration
Variable | Default | Description |
|
| CommonTrace API URL |
| — | API key for backend auth |
|
| Transport: |
|
| HTTP bind address |
|
| HTTP port |
|
| Read SLA timeout (seconds) |
|
| Write SLA timeout (seconds) |
Connecting to Claude Desktop
Add to your Claude Desktop MCP config (~/.claude/mcp.json):
{
"commontrace": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}Resilience
Circuit breaker protects against backend failures (closed/open/half-open)
SLA timeouts cancel slow requests (200ms read, 2s write)
Graceful degradation — all failures return human-readable strings, never unhandled exceptions
Related Repositories
commontrace/server — API backend (PostgreSQL, vector search, rate limiting)
commontrace/skill — Claude Code plugin (slash commands, hooks, skill)
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI agents to explore, search, and reference code implementation details across different project repositories. It also supports a task delegation protocol for agents to request and track work between separate codebases.Last updated
- Alicense-qualityCmaintenanceProvides persistent memory for AI coding agents, enabling them to read and write structured knowledge through MCP-compatible tools.Last updated1MIT
- Alicense-qualityCmaintenanceEnables AI agents to interact with the Coherence Network platform, allowing them to browse ideas, record contributions, and access governance features via natural language.Last updated2Apache 2.0

Semantic Code Search MCPofficial
Flicense-qualityDmaintenanceProvides AI coding agents with structured access to indexed codebases via semantic search, symbol analysis, and file reading tools.Last updated12
Related MCP Connectors
StremAI MCP: shared memory for AI coding agents. Connected agents can recall. OAuth + local stdio.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/commontrace/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server