Skip to main content
Glama

Glitchtip MCP Server

by CleverMobi
glitchtip-mcp-server.cjs569 B
#!/usr/bin/env node // CommonJS wrapper for better npx compatibility const { spawn } = require('child_process'); const path = require('path'); // Path to the actual implementation const indexPath = path.join(__dirname, '..', 'src', 'index.js'); // Spawn node with the index.js file const child = spawn(process.execPath, [indexPath, ...process.argv.slice(2)], { stdio: 'inherit', env: process.env }); child.on('exit', (code) => { process.exit(code || 0); }); child.on('error', (err) => { console.error('Failed to start server:', err); process.exit(1); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CleverMobi/glitchtip-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server