We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OnePieceLwc/CodeMind-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
codemind-mcp.js•440 B
#!/usr/bin/env node
/**
* A simplified and robust launcher for the CodeMind MCP server,
* designed for maximum compatibility with `npx`.
*
* This script uses a direct relative import, relying on Node.js's module
* resolution to find the main server file from the `bin` directory.
*/
try {
await import('../dist/index.js');
} catch (err) {
console.error(`[CodeMind-Launcher] A critical error occurred:`, err);
process.exit(1);
}