We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"my-server1": {
"command": "my-command",
"args": ["--arg-key", "arg-value"],
"env": {
"MY_ENV_VAR": "my-env-value"
}
},
"my-server2": {
"type": "stdio",
"command": "node",
"args": ["server.js", "--port", "3000"],
"env": {
"NODE_ENV": "production",
"PORT": "3000"
}
},
"my-server3": {
"type": "sse",
"url": "https://api.example.com/mcp/sse",
"headers": {
"Authorization": "Bearer token123"
}
},
"redis-server": {
"type": "stdio",
"command": "redis-cli",
"args": ["--host", "localhost", "--port", "6379"],
"env": {
"REDIS_HOST": "localhost",
"REDIS_PORT": "6379"
}
}
}