We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alisaitteke/docker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-mcp-server.js•241 B
#!/usr/bin/env node
// This file is the entry point for npx
// It imports the compiled JavaScript from dist/
import('../dist/index.js').catch((error) => {
console.error('Failed to start Docker MCP Server:', error);
process.exit(1);
});