Skip to content

Logfire MCP Server

An MCP (Model Context Protocol) server that provides access to OpenTelemetry traces and metrics through Logfire. This server enables LLMs to query your application's telemetry data, analyze distributed traces, and perform custom queries using Logfire's OpenTelemetry-native API.

You can check the Logfire MCP server repository for more information.

Usage

The MCP server is a CLI tool that you can run from the command line.

You'll need a read token to use the MCP server. See Create Read Token for more information.

You can then start the MCP server with the following command:

LOGFIRE_READ_TOKEN=<your-token> uvx logfire-mcp

Note

The uvx command will download the PyPI package logfire-mcp, and run the logfire-mcp command.

Configuration

The way to configure the MCP server depends on the software you're using.

Cursor

Cursor is a popular IDE that supports MCP servers. You can configure it by creating a .cursor/mcp.json file in your project root:

{
  "mcpServers": {
    "logfire": {
      "command": "uvx",
      "args": ["logfire-mcp", "--logfire-read-token=YOUR-TOKEN"],
    }
  }
}

Note

You need to pass the token via the --read-token flag, because Cursor doesn't support the env field in the MCP configuration.

For more detailed information, you can check the Cursor documentation.

Claude Desktop

Claude Desktop is a desktop application for the popular LLM Claude.

You can configure it to use the MCP server by adding the following configuration to the ~/claude_desktop_config.json file:

{
  "mcpServers": {
    "logfire": {
      "command": "uvx",
      "args": [
        "logfire-mcp",
      ],
      "env": {
        "LOGFIRE_READ_TOKEN": "your_token"
      }
    }
  }
}

Check out the MCP quickstart for more information.

Cline

Cline is a popular chatbot platform that supports MCP servers.

You can configure it to use the MCP server by adding the following configuration to the cline_mcp_settings.json file:

{
  "mcpServers": {
    "logfire": {
      "command": "uvx",
      "args": [
        "logfire-mcp",
      ],
      "env": {
        "LOGFIRE_READ_TOKEN": "your_token"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}