We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apolosan/design_patterns_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
seed.ts•298 B
/**
* CLI Entry Point for Seed Command
* Seeds the database with pattern data from JSON files
*/
import { SeedCommand } from './commands/seed-command.js';
const command = new SeedCommand();
command.execute().catch((error) => {
console.error('Seeding failed:', error);
process.exit(1);
});