A Model Context Protocol (MCP) server for intelligent code analysis and debugging using Perplexity AI’s API, seamlessly integrated with the Claude desktop client.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-perplexity-serve": {
"command": "npx",
"args": [
"-y",
"joewilsonai/mcp-perplexity-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-perplexity-serve npx -y joewilsonai/mcp-perplexity-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-perplexity-serve": {
"command": "npx",
"args": [
"-y",
"joewilsonai/mcp-perplexity-server"
]
}
}
}
📋 Copy