Skip to main content
Glama

Tracxn MCP Server

by pHequals7
start-server.js579 B
#!/usr/bin/env node // Simple script to start the MCP server import { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); // Start the server using tsx const serverProcess = spawn('npx', ['tsx', 'src/index.ts'], { stdio: 'inherit', cwd: __dirname }); serverProcess.on('error', (error) => { console.error('Failed to start server:', error); process.exit(1); }); serverProcess.on('exit', (code) => { process.exit(code); });

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/pHequals7/tracxn-mcp'

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