GlitchTip MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add -e "GLITCHTIP_TOKEN=${GLITCHTIP_TOKEN}" -e "GLITCHTIP_ORGANIZATION=${GLITCHTIP_ORGANIZATION}" -e "GLITCHTIP_BASE_URL=${GLITCHTIP_BASE_URL}" glitchtip-mcp -- npx -y glitchtip-mcp
Required:GLITCHTIP_TOKENGLITCHTIP_ORGANIZATIONGLITCHTIP_BASE_URL
README.md

Integrates GlitchTip error monitoring with AI assistants

GlitchTip MCP Server

MCP server for integrating GlitchTip error monitoring with AI assistants like Claude.

Installation

Install in Cursor

Prerequisites

  1. Cursor IDE installed
  2. GlitchTip API token or session ID
  3. Your GlitchTip organization slug

Quick Install

Click the button above and follow the installation flow, or manually configure:

Manual Configuration

  1. Open your MCP configuration file:

    • Global (all projects): ~/.cursor/mcp.json
    • Project-specific: .cursor/mcp.json in project root
  2. Add the following configuration:

{
  "mcpServers": {
    "glitchtip": {
      "command": "npx",
      "args": ["-y", "glitchtip-mcp"],
      "env": {
        "GLITCHTIP_TOKEN": "your-api-token",
        "GLITCHTIP_ORGANIZATION": "your-org-slug",
        "GLITCHTIP_BASE_URL": "https://app.glitchtip.com"
      }
    }
  }
}
  1. Replace the environment variables with your actual values
  2. Save the file and restart Cursor

Using .env File (Recommended)

For better security, store credentials in a .env file:

  1. Create .env in your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com
  1. Update .cursor/mcp.json:
{
  "mcpServers": {
    "glitchtip": {
      "command": "npx",
      "args": ["-y", "glitchtip-mcp"]
    }
  }
}
  1. Add .env to .gitignore:
echo ".env" >> .gitignore

Verify Installation

  1. Restart Cursor completely
  2. Check for green dot in Settings → Tools & Integrations → MCP Tools
  3. In chat/composer, check "Available Tools"
  4. Test with: "Show me GlitchTip errors"
Install in Claude Desktop

Prerequisites

  1. Claude Desktop installed
  2. GlitchTip API token or session ID
  3. Your GlitchTip organization slug

Configuration

  1. Open your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: ~/.config/Claude/claude_desktop_config.json
  2. Add the following configuration:

{
  "mcpServers": {
    "glitchtip": {
      "command": "npx",
      "args": ["-y", "glitchtip-mcp"],
      "env": {
        "GLITCHTIP_TOKEN": "your-api-token",
        "GLITCHTIP_ORGANIZATION": "your-org-slug",
        "GLITCHTIP_BASE_URL": "https://app.glitchtip.com"
      }
    }
  }
}
  1. Replace the environment variables with your actual values
  2. Save the file and restart Claude Desktop

Using .env File (Recommended)

For better security, store credentials in a .env file:

  1. Create .env in your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com
  1. Update claude_desktop_config.json:
{
  "mcpServers": {
    "glitchtip": {
      "command": "npx",
      "args": ["-y", "glitchtip-mcp"]
    }
  }
}
  1. Add .env to .gitignore:
echo ".env" >> .gitignore

Verify Installation

  1. Restart Claude Desktop completely
  2. Look for the 🔌 icon in the bottom right
  3. Click it to see available MCP servers
  4. Test with: "Show me GlitchTip errors"
Install in Claude Code CLI

Prerequisites

  1. Claude Code CLI installed
  2. GlitchTip API token or session ID
  3. Your GlitchTip organization slug

Installation

Run the following command in your terminal:

claude mcp add glitchtip -e GLITCHTIP_TOKEN=your-api-token -e GLITCHTIP_ORGANIZATION=your-org-slug -e GLITCHTIP_BASE_URL=https://app.glitchtip.com -- npx -y glitchtip-mcp

Using Environment Variables (Recommended)

For better security, store credentials in a .env file:

  1. Create .env in your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com
  1. Add the MCP server:
claude mcp add glitchtip -e GLITCHTIP_TOKEN=$(grep GLITCHTIP_TOKEN .env | cut -d '=' -f2) -e GLITCHTIP_ORGANIZATION=$(grep GLITCHTIP_ORGANIZATION .env | cut -d '=' -f2) -e GLITCHTIP_BASE_URL=$(grep GLITCHTIP_BASE_URL .env | cut -d '=' -f2) -- npx -y glitchtip-mcp
  1. Add .env to .gitignore:
echo ".env" >> .gitignore

Configuration Scopes

  • -s user: Available across all projects
  • -s project: Shared via .mcp.json file (committed to repo)
  • Default: local (current project only)

Verify Installation

claude mcp list
claude mcp get glitchtip

Test with: "Show me GlitchTi

Tools (2)

list_issuesList recent issues from GlitchTip
get_issue_detailsRetrieve detailed information about a specific issue

Environment Variables

GLITCHTIP_TOKENrequiredYour GlitchTip API token or session ID
GLITCHTIP_ORGANIZATIONrequiredYour GlitchTip organization slug
GLITCHTIP_BASE_URLrequiredThe base URL for your GlitchTip instance

Configuration

claude_desktop_config.json
{"mcpServers": {"glitchtip": {"command": "npx", "args": ["-y", "glitchtip-mcp"], "env": {"GLITCHTIP_TOKEN": "your-api-token", "GLITCHTIP_ORGANIZATION": "your-org-slug", "GLITCHTIP_BASE_URL": "https://app.glitchtip.com"}}}}

Try it

Show me the latest errors from GlitchTip.
List the open issues in my GlitchTip organization.
Get details for the most recent error issue.
Analyze the latest production error and suggest a fix.

Frequently Asked Questions

What are the key features of GlitchTip MCP Server?

Fetch and list production errors from GlitchTip. Retrieve detailed event information for specific issues. Enable guided triage of application errors via AI. Support for environment-based configuration for security.

What can I use GlitchTip MCP Server for?

Quickly identifying the root cause of production crashes. Automating the triage process for incoming error reports. Integrating error monitoring directly into the development workflow. Analyzing error trends without leaving the AI chat interface.

How do I install GlitchTip MCP Server?

Install GlitchTip MCP Server by running: npx -y glitchtip-mcp

What MCP clients work with GlitchTip MCP Server?

GlitchTip MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep GlitchTip MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare