We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thetom42/perplexica-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"claude_desktop_stdio": {
"description": "Configuration for Claude Desktop using stdio transport",
"config": {
"mcpServers": {
"perplexica": {
"command": "uv",
"args": ["run", "/path/to/perplexica-mcp/src/perplexica_mcp.py", "--transport", "stdio"],
"env": {
"PERPLEXICA_BACKEND_URL": "http://localhost:3000/api/search"
}
}
}
}
},
"claude_desktop_sse": {
"description": "Configuration for Claude Desktop using SSE transport",
"config": {
"mcpServers": {
"perplexica": {
"command": "uv",
"args": ["run", "/path/to/perplexica-mcp/src/perplexica_mcp.py", "--transport", "sse", "--host", "localhost", "--sse-port", "3001"],
"env": {
"PERPLEXICA_BACKEND_URL": "http://localhost:3000/api/search"
}
}
}
}
},
"cursor_mcp": {
"description": "Configuration for Cursor IDE MCP integration",
"config": {
"servers": {
"perplexica": {
"command": "uv",
"args": ["run", "/path/to/perplexica-mcp/src/perplexica_mcp.py", "--transport", "stdio"],
"env": {
"PERPLEXICA_BACKEND_URL": "http://localhost:3000/api/search"
}
}
}
}
}
}