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
generate-embeddings.ts•370 B
/**
* CLI Entry Point for Generate Embeddings Command
* Generates embeddings for all patterns in the database
*/
import { GenerateEmbeddingsCommand } from './commands/generate-embeddings-command.js';
const command = new GenerateEmbeddingsCommand();
command.execute().catch((error) => {
console.error('Embedding generation failed:', error);
process.exit(1);
});