We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/starlink-awaken/mcp-openclaw'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"mcpServers": {
"openclaw": {
"command": "node",
"args": [
"/absolute/path/to/mcp-openclaw/dist/index.js"
],
"env": {
"OPENCLAW_API_URL": "https://api.openclaw.example.com",
"OPENCLAW_API_KEY": "your-api-key-here",
"LOG_LEVEL": "info"
}
},
"openclaw-dev": {
"command": "node",
"args": [
"--loader",
"ts-node/esm",
"/absolute/path/to/mcp-openclaw/src/index.ts"
],
"env": {
"OPENCLAW_API_URL": "https://api.openclaw.example.com",
"OPENCLAW_API_KEY": "your-dev-api-key",
"LOG_LEVEL": "debug"
}
}
}
}