The Perplexity Ask MCP Server is a Model Context Protocol (MCP) implementation that connects to Perplexity's Sonar API, enabling real-time web-wide research in conversational AI. This server allows Large Language Models (LLMs) to securely and efficiently access web search capabilities, making it a powerful tool for AI-driven research and information retrieval.
The Perplexity Ask MCP Server provides the following tools:
- Web Search Integration: Enables AI agents to perform web searches and retrieve relevant information.
- Contextual Data Retrieval: Supports fetching data in a structured format for efficient LLM usage.
To use the Perplexity Ask MCP Server, you need to configure it with the appropriate API keys and endpoints. Here’s an example configuration for Claude Desktop:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-perplexity"],
"env": {
"PERPLEXITY_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
To start the Perplexity Ask MCP Server, use the following command:
npx -y @modelcontextprotocol/server-perplexity
Once the server is running, you can integrate it with your AI tools to enable web search capabilities.
Typescript-based servers in this repository can be used directly with npx
. For example, this will start the Perplexity Ask MCP Server:
npx -y @modelcontextprotocol/server-perplexity
To use the Perplexity Ask MCP Server with an MCP client like Claude Desktop, configure the client as follows:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-perplexity"],
"env": {
"PERPLEXITY_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
See CONTRIBUTING.md for information about contributing to this repository.
See SECURITY.md for reporting security vulnerabilities.
This project is licensed under the MIT License - see the LICENSE file for details.
If you find the Perplexity Ask MCP Server useful, please consider starring the repository and contributing new servers or improvements!
Managed by Anthropic, but built together with the community. The Model Context Protocol is open source and we encourage everyone to contribute their own servers and improvements!