Skip to main content
Monocle Studio includes a built-in MCP server. This lets AI coding assistants like Claude Code, Cursor, or Codex query your local telemetry data directly — find errors, inspect traces, and debug performance issues without leaving your editor.

Setup

The MCP server is available at http://localhost:4200/mcp when Monocle Studio is running.
npx add-mcp monocle --url http://localhost:4200/mcp -a claude-code

Available tools

ToolDescription
list_tracesList recent traces with entry point, duration, and status. Supports filtering by trace ID.
get_traceGet the complete span waterfall for a trace — parent/child relationships, durations, attributes.
list_logsList logs filtered by severity, search text, or trace ID.
list_errorsList exceptions with type, message, stacktrace, and trace context.
list_queriesList database queries with SQL statement, duration, and system. Filter by database type.
clear_dataClear all collected telemetry for a fresh debugging session.

Examples

Once connected, you can ask your AI assistant things like:
  • “What errors happened in the last few requests?”
  • “Show me the trace for the slow /api/users endpoint”
  • “Find all database queries slower than 200ms”
  • “What’s the overall health of my app right now?”
  • “Clear all data and start a fresh debugging session”
The assistant will call the appropriate MCP tools, query Monocle Studio, and give you the answer in context.