Perplexity Sonar MCP Server
MCP server for Perplexity API integration with Claude Desktop and other MCP clients
felores
README
Perplexity Sonar MCP Server
An MCP server implementation that brings the power of Perplexity's Sonar models to Claude Desktop and other MCP clients. Unlike traditional MCP servers, this implementation provides access to Perplexity's advanced AI models with web search capabilities, allowing Claude to perform real-time web searches and provide up-to-date information during conversations.
Why Perplexity Sonar MCP?
- Real-time Web Search: Access current information from the web during conversations
- Multiple Models: Choose from various Sonar models to fit your needs:
sonar
: Balanced model for general usesonar-pro
: Enhanced capabilities for complex taskssonar-reasoning
: Specialized in logical reasoning and analysissonar-deep-research
: In-depth research with comprehensive citations
- Rich Parameters: Fine-tune your queries with extensive parameters:
- Control search domains and recency
- Adjust response format (markdown/JSON)
- Manage temperature and token generation
- Get related questions and images
- Seamless Integration: Works natively with Claude Desktop and other MCP clients
Requirements
- Node.js 18.0.0 or higher
- A Perplexity API key (get one at https://www.perplexity.ai/account/api)
- Claude Desktop (for desktop integration)
To verify your Node.js installation:
node --version # Should be 18.0.0 or higher
If Node.js is not installed or needs updating:
- Download from nodejs.org
- Follow the installation instructions for your operating system
- Restart your terminal after installation
Usage
With Claude Desktop
-
Edit your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Add the following configuration:
{ "mcpServers": { "perplexity": { "command": "npx", "args": [ "-y", "@felores/perplexity-sonar-mcp" ], "env": { "PERPLEXITY_API_KEY": "your_api_key_here" } } } }
-
Restart Claude Desktop
Standalone Mode
You can also run the server in standalone mode with HTTP/SSE support:
PERPLEXITY_API_KEY=your_api_key_here perplexity-sonar-mcp
This will start the server on port 3000 by default. You can specify a different port:
PERPLEXITY_API_KEY=your_api_key_here PORT=8080 perplexity-sonar-mcp
API Reference
The server exposes the following MCP tool:
perplexity-chat
Parameters:
model
(optional): Model to use (default: "sonar")- Options:
sonar
: Balanced model for general usesonar-pro
: Enhanced capabilities for complex taskssonar-reasoning
: Specialized in logical reasoningsonar-deep-research
: In-depth research with citations
- Options:
messages
: Array of message objects with:role
: "system" | "user" | "assistant"content
: string
temperature
(optional): Controls randomness (0-2)- Lower values (e.g., 0.3) for more focused responses
- Higher values (e.g., 0.8) for more creative responses
max_tokens
(optional): Maximum tokens to generatetop_p
(optional): Controls diversity via nucleus sampling (0-1)search_domain_filter
(optional): Array of domains to limit citations to- Example: ["wikipedia.org", "github.com"]
return_images
(optional): Whether to return images from search resultsreturn_related_questions
(optional): Whether to return related questionssearch_recency_filter
(optional): Filter search results by recency- Options: "month", "week", "day", "hour"
top_k
(optional): Maximum number of search results to considerstream
(optional): Whether to stream the responsepresence_penalty
(optional): Penalizes token presencefrequency_penalty
(optional): Penalizes token frequencyoutput_format
(optional): Response format ("json" or "markdown", default: "markdown")
Example Queries
Here are some examples of what you can ask Claude using this server:
-
Basic search with default model: "What are the latest developments in quantum computing?"
-
Deep research with citations: "Using sonar-deep-research, explain the current state of fusion energy."
-
Domain-specific search: "Search only on arxiv.org and nature.com for recent papers about large language models."
-
Recent news search: "What happened in AI research this week? Use search_recency_filter: 'week'"
Development
-
Clone the repository:
git clone https://github.com/felores/perplexity-sonar-mcp.git cd perplexity-sonar-mcp
-
Install dependencies:
npm install
-
Build the project:
npm run build
-
Run in development mode:
npm run dev
Troubleshooting
If you encounter issues:
- Verify your API key is correct
- Check Node.js version compatibility
- Look for errors in Claude Desktop logs:
- macOS:
~/Library/Logs/Claude/mcp.log
- Windows:
%APPDATA%\Claude\logs\mcp.log
- macOS:
- Try running in standalone mode to isolate issues
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.