We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/richinex/berry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"inputs": [],
"servers": {
"berry-mcp-stdio": {
"type": "stdio",
"command": "/home/richard/.local/bin/uv",
"args": ["run", "python", "-m", "berry_mcp"],
"env": {}
},
"berry-mcp-custom-tools": {
"type": "stdio",
"command": "/home/richard/.local/bin/uv",
"args": ["run", "python", "-m", "berry_mcp"],
"env": {
"BERRY_MCP_TOOLS_PATH": "my_custom_tools"
}
},
"berry-mcp-sse": {
"type": "sse",
"url": "http://localhost:8080",
"headers": {
"Content-Type": "application/json"
}
},
"berry-mcp-sse-auth": {
"type": "sse",
"url": "http://localhost:8080",
"authorization_token": "YOUR_ACCESS_TOKEN_HERE",
"headers": {
"Content-Type": "application/json"
}
}
}
}