← Discover MCPs and Agents
L
MCPData & AnalyticsMCP Registry

Loggerhead

Read the logs, metrics, and traces of the app you are editing, from the Loggerhead Mac app.

Links

README

From the repo.

Loggerhead MCP server

Your coding agent reads your app's logs, metrics, and traces.

Loggerhead is a native Mac app that receives OpenTelemetry logs, metrics, and traces from the software you run on your own Mac, and stores them in a DuckDB file on your disk. The MCP server runs inside the app. This repository holds loggerhead-mcp, the small bridge that connects Claude, Cursor, Codex, Windsurf, or any other MCP client to it.

Every tool is read-only. The endpoint listens on loopback only. Nothing leaves the Mac.

The Loggerhead app must be installed and running. Download it first. The bridge exits when the app is not running. The free tier includes the MCP server.

Install

Claude Desktop

Download loggerhead-mcp.mcpb from the latest release and open it. Claude Desktop installs the extension.

Claude Code

claude mcp add loggerhead -- "/Applications/Loggerhead.app/Contents/Resources/loggerhead-mcp"

Cursor, Codex, Windsurf, and other stdio clients

Every stdio client takes the same two values. The .mcp.json in this repository is the file to copy:

{
  "mcpServers": {
    "loggerhead": {
      "command": "/Applications/Loggerhead.app/Contents/Resources/loggerhead-mcp"
    }
  }
}

The app itself writes this entry for you: open Settings → AI analysis and click Add beside your tool.

The bridge finds the app by itself on a fixed ladder of local ports. You set no port, and it needs no permission to read the app's files. Full instructions: Set up the MCP server.

Tools

ToolPurpose
query_logsSearch log records by text, severity, and time.
query_metricsRead time-series metrics by name and time range.
query_tracesFind traces by service, operation, duration, and time.
get_traceRead every span of one trace.
list_environmentsList every workspace and environment on this Mac, with the receiver ports.
get_receiver_infoReport the effective OTLP ports and the addresses to send telemetry to.
query_improvementsList the telemetry-lint findings: noisy logs, unbounded labels, secrets, lost trace context.

One resource, loggerhead://stats, reports the total counts of logs, metrics, and spans. Every parameter is in the tools reference.

Privacy Policy

The bridge and the server read telemetry from the Loggerhead app on the same Mac and hand it to the MCP client you connected. They collect nothing about you, they store nothing of their own, they share nothing with a third party, and they open no network connection except to 127.0.0.1. Data retention is the app's: the telemetry lives in a DuckDB file on your disk for as long as the app's retention setting keeps it, and you can delete the file. The full policy of the publisher, Rubics Code, is at https://rubicscode.com/privacy. Contact: support@getloggerhead.com.

Registry

The registry name of this server is com.getloggerhead/loggerhead.

  • MCP Registry name: mcp-name: com.getloggerhead/loggerhead

Licence

The bridge is part of Loggerhead, a proprietary application by Rubics Code (ABN 40 440 756 434), Australia. The app has a free tier. The source of the app is not public.

Config for your environment

Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "{MCP_ENDPOINT_URL}"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.