We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docherty/contextmgr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.js•292 B
// Server test - run in one terminal
import { ContextmgrServer } from './index.js';
console.log('Starting test server...');
const server = new ContextmgrServer({
projectRoot: process.cwd()
});
server.start().catch(error => {
console.error('Fatal error:', error);
process.exit(1);
});