We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mrchris2000/mcp-devops-plan'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-package.js•405 B
#!/usr/bin/env node
// Basic smoke test to ensure the package can be imported and initialized
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
try {
console.log("✅ Package can be imported successfully");
console.log("✅ MCP SDK is accessible");
process.exit(0);
} catch (error) {
console.error("❌ Package test failed:", error.message);
process.exit(1);
}