We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Bathinanna/CodePilot_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start-server.js•498 B
// Simple startup script to force the MCP server to start
import { CodePilotMCPServer } from './dist/index.js';
// Set flag to indicate we're using STDIO mode (no console logging)
process.env.MCP_STDIO_MODE = 'true';
// Use stderr for any startup messages to avoid interfering with MCP protocol
console.error('Starting CodePilot MCP Server...');
const server = new CodePilotMCPServer();
server.start().catch((error) => {
console.error('Failed to start server:', error);
process.exit(1);
});