We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MerabyLabs/promptarchitect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.ts•342 B
#!/usr/bin/env node
/**
* PromptArchitect MCP Server CLI
* Entry point for running the server via stdio transport
*/
// Load environment variables from .env file
import 'dotenv/config';
import { runServer } from './server.js';
runServer().catch((error) => {
console.error('Failed to start MCP server:', error);
process.exit(1);
});