What is the agentrace MCP server?
Structured observability for AI agents. Trace steps, decisions, and errors. MCP server + CLI viewer.
How to install agentrace
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentrace": {
"command": "node",
"args": [
"-y",
"@ura-dev/agentrace",
"agentrace-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"agentrace": {
"command": "node",
"args": [
"-y",
"@ura-dev/agentrace",
"agentrace-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agentrace": {
"command": "node",
"args": [
"-y",
"@ura-dev/agentrace",
"agentrace-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"agentrace": {
"type": "stdio",
"command": "node",
"args": [
"-y",
"@ura-dev/agentrace",
"agentrace-mcp"
]
}
}
}Claude Code
claude mcp add agentrace -- node -y @ura-dev/agentrace agentrace-mcp