We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/drvova/discord-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
// Simple test to verify the build output exists and has the expected structure
import { existsSync } from 'fs';
import { join } from 'path';
const requiredFiles = [
'dist/index.js',
'dist/discord-service.js',
'dist/types.js',
'package.json',
'node_modules/@modelcontextprotocol/sdk',
'node_modules/discord.js'
];
console.log('Verifying Discord MCP build...\n');
let allGood = true;
for (const file of requiredFiles) {
const exists = existsSync(file);
console.log(`${exists ? '✓' : '✗'} ${file}`);
if (!exists) allGood = false;
}
console.log('\n' + (allGood ? '✅ Build verification passed!' : '❌ Build verification failed!'));
process.exit(allGood ? 0 : 1);