We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Leantime/leantime-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
leantime-mcp.js•335 B
#!/usr/bin/env node
// Simple wrapper that runs the MCP server
import('../dist/index.js').then(async (module) => {
// Call the main function if it exists
if (typeof module.main === 'function') {
await module.main();
}
}).catch(error => {
console.error('Failed to start Leantime MCP server:', error);
process.exit(1);
});