We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/amidabuddha/unichat-ts-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
import { program } from 'commander';
async function main() {
program
.option('-s, --stdio', 'Use stdio transport')
.option('-e, --sse', 'Use SSE transport')
.parse(process.argv);
const options = program.opts();
// Default to stdio if no transport is specified
if (!options.sse && !options.stdio) {
options.stdio = true;
}
if (options.stdio) {
await import('./transports/stdio.js');
} else if (options.sse) {
await import('./transports/sse.js');
}
}
main().catch((error) => {
console.error('Server error:', error);
process.exit(1);
});