@kfromlarkit/glitchtip-mcp
v1.0.2
Published
MCP server for GlitchTip error monitoring integration
Downloads
54
Maintainers
Readme
GlitchTip MCP Server
MCP server for integrating GlitchTip error monitoring with AI assistants like Claude.
Installation
Prerequisites
- Cursor IDE installed
- GlitchTip API token or session ID
- Your GlitchTip organization slug
Quick Install
Click the button above and follow the installation flow, or manually configure:
Manual Configuration
Open your MCP configuration file:
- Global (all projects):
~/.cursor/mcp.json - Project-specific:
.cursor/mcp.jsonin project root
- Global (all projects):
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"
}
}
}
}- Replace the environment variables with your actual values
- Save the file and restart Cursor
Using .env File (Recommended)
For better security, store credentials in a .env file:
- Create
.envin your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com- Update
.cursor/mcp.json:
{
"mcpServers": {
"glitchtip": {
"command": "npx",
"args": ["-y", "glitchtip-mcp"]
}
}
}- Add
.envto.gitignore:
echo ".env" >> .gitignoreVerify Installation
- Restart Cursor completely
- Check for green dot in Settings → Tools & Integrations → MCP Tools
- In chat/composer, check "Available Tools"
- Test with: "Show me GlitchTip errors"
Prerequisites
- OpenClaw installed
- GlitchTip API token or session ID
- Your GlitchTip organization slug
Configuration
Open your OpenClaw configuration file (
openclaw.json)Add the following to the
mcpServerssection:
{
"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"
}
}
}
}- Replace the environment variables with your actual values
- Save the file and restart OpenClaw
Verify Installation
- Restart OpenClaw
- Check that the glitchtip MCP server is listed in available tools
- Test with: "Show me GlitchTip errors"
Prerequisites
- Claude Desktop installed
- GlitchTip API token or session ID
- Your GlitchTip organization slug
Configuration
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
- macOS:
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"
}
}
}
}- Replace the environment variables with your actual values
- Save the file and restart Claude Desktop
Using .env File (Recommended)
For better security, store credentials in a .env file:
- Create
.envin your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com- Update
claude_desktop_config.json:
{
"mcpServers": {
"glitchtip": {
"command": "npx",
"args": ["-y", "glitchtip-mcp"]
}
}
}- Add
.envto.gitignore:
echo ".env" >> .gitignoreVerify Installation
- Restart Claude Desktop completely
- Look for the 🔌 icon in the bottom right
- Click it to see available MCP servers
- Test with: "Show me GlitchTip errors"
Prerequisites
- Claude Code CLI installed
- GlitchTip API token or session ID
- 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 @kfromlarkit/glitchtip-mcpUsing Environment Variables (Recommended)
For better security, store credentials in a .env file:
- Create
.envin your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com- 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 @kfromlarkit/glitchtip-mcp- Add
.envto.gitignore:
echo ".env" >> .gitignoreConfiguration Scopes
-s user: Available across all projects-s project: Shared via.mcp.jsonfile (committed to repo)- Default:
local(current project only)
Verify Installation
claude mcp list
claude mcp get glitchtipTest with: "Show me GlitchTip errors"
Prerequisites
- VS Code installed
- Cline extension installed
- GlitchTip API token or session ID
- Your GlitchTip organization slug
Configuration
- Open VS Code
- Click the MCP Servers icon (📚) in the Cline extension
- Click the "Installed" tab
- Click "Configure MCP Servers"
- Add the following to
cline_mcp_settings.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"
}
}
}
}- Replace the environment variables with your actual values
- Save the file
- Restart VS Code or reload the Cline extension
Using .env File (Recommended)
For better security, store credentials in a .env file:
- Create
.envin your project root:
GLITCHTIP_TOKEN=your-api-token
GLITCHTIP_ORGANIZATION=your-org-slug
GLITCHTIP_BASE_URL=https://app.glitchtip.com- Update
cline_mcp_settings.json:
{
"mcpServers": {
"glitchtip": {
"command": "npx",
"args": ["-y", "glitchtip-mcp"]
}
}
}- Add
.envto.gitignore:
echo ".env" >> .gitignoreVerify Installation
- Restart VS Code or reload Cline
- Check the MCP Servers panel in Cline
- Look for "glitchtip" in the list of connected servers
- Test with: "Show me GlitchTip errors"
Getting Your GlitchTip Credentials
- Log in to GlitchTip
- Go to https://app.glitchtip.com/profile/auth-tokens
- Create a new API token
- Copy the token
- Log in to GlitchTip
- Open browser DevTools (F12)
- Go to Application/Storage → Cookies
- Copy the
sessionidcookie value
Configuration
| Variable | Required | Description | Default |
|----------|----------|-------------|---------|
| GLITCHTIP_TOKEN | Yes* | API token | - |
| GLITCHTIP_SESSION_ID | Yes* | Session cookie | - |
| GLITCHTIP_ORGANIZATION | Yes | Organization slug | - |
| GLITCHTIP_BASE_URL | No | Instance URL | https://app.glitchtip.com |
*Either GLITCHTIP_TOKEN or GLITCHTIP_SESSION_ID is required
Available Tools
glitchtip_issues
Get issues (grouped errors) from GlitchTip with optional filtering.
Parameters:
project(optional): Filter by project slug (e.g.'parlay-api','frontend')environment(optional): Filter by environment (e.g.'production','staging','development')status(optional):'resolved','unresolved', or'all'(default:'unresolved')query(optional): Search with tag filters (e.g.'walletAddress:0x123...')
Examples:
- "Show me all GlitchTip errors"
- "Get resolved issues from the frontend project"
- "Show production errors"
glitchtip_events
Search events (individual error occurrences) with optional filtering. Returns summary info — use glitchtip_latest_event for full details.
Parameters:
project(optional): Filter by project slug (e.g.'parlay-api','frontend')environment(optional): Filter by environment (e.g.'production','staging','development')query(optional): Search with tag filters (e.g.'walletAddress:0x123...')
Examples:
- "Show me recent events from production"
- "Find events for wallet 0x123..."
glitchtip_latest_event
Gets the latest event for a specific issue with full context including stack trace, breadcrumbs, and tags.
Parameters:
issueId: The issue ID
Example: "Get details for issue #123"
Available Resources
glitchtip://issues
Resource endpoint providing all current issues in JSON format.
Available Prompts
recent_errors
Get overview of recent production errors with analysis and prioritization.
Use case: Quick triage of production issues
Example: "Use the recent_errors prompt"
debug_issue
Deep-dive into a specific error with full context and suggested fixes.
Parameters:
issueId: The issue ID to debug
Use case: Detailed investigation of a specific error
Example: "Use the debug_issue prompt for issue 12345"
Usage Examples
Debug Production Error
User: "Check GlitchTip for recent 500 errors"
AI: I found 3 recent 500 errors:
1. DatabaseConnectionError in /api/users
2. TimeoutError in payment processing
3. ValidationError in checkout flow
User: "Show me details about the payment timeout"
AI: [Analyzes event] The TimeoutError occurs when...
[Provides stack trace and suggested fixes]Monitor Error Trends
User: "What are the most frequent errors?"
AI: Top errors by frequency:
1. CORS policy errors (145 occurrences)
2. Missing auth token (89 occurrences)
3. Rate limit exceeded (67 occurrences)Use Prompts for Guided Analysis
User: "Use the recent_errors prompt"
AI: [Analyzes all unresolved issues]
Summary:
- 23 unresolved errors across 5 projects
- Critical: DatabaseConnectionError (89 occurrences)
- High: TimeoutError in payment flow (45 occurrences)
- Medium: ValidationErrors (12 occurrences)
Recommended prioritization:
1. Fix database connection pooling
2. Investigate payment timeout root cause
3. Add validation for edge cases
User: "Use the debug_issue prompt for issue 12345"
AI: [Deep-dives into specific error with stack trace and fix suggestions]Troubleshooting
Authentication Failed
- Verify your token/session ID is valid
- Check organization slug is correct
- Ensure token has appropriate permissions
Connection Error
- Verify
GLITCHTIP_BASE_URLis correct - Check network connectivity
- Ensure GlitchTip instance is accessible
No Issues Found
- Verify issues exist in GlitchTip
- Check organization slug
- Ensure you have permission to view issues
Security
- Never commit
.mcp.json,.cursor/mcp.json, or.envto version control - Use
.envfiles for storing secrets (automatically ignored by git if added to.gitignore) - Use API tokens instead of session IDs for team usage
- Each developer should use their own credentials
Development & Contributing
Installation
npm installBuild
npm run buildWatch Mode
npm run watchTest with MCP Inspector
export GLITCHTIP_TOKEN="your-token"
export GLITCHTIP_ORGANIZATION="your-org"
npm run inspectorProject Structure
glitchtip-mcp/
├── src/
│ ├── types.ts # TypeScript type definitions
│ ├── client.ts # GlitchTip API client
│ └── index.ts # MCP server implementation
├── package.json
├── tsconfig.json
└── README.mdLicense
MIT
Based on mcp-glitchtip
