DaInfernalCoder/perplexity-mcp
A Model Context Protocol (MCP) server for research and documentation assistance using Perplexity AI. Won 1st @ Cline Hackathon
Overview
DaInfernalCoder/perplexity-mcp is a JavaScript MCP server licensed under MIT. A Model Context Protocol (MCP) server for research and documentation assistance using Perplexity AI. Won 1st @ Cline Hackathon
Ranked #4648 out of 25632 indexed tools.
Ecosystem
JavaScript MIT
Signal Breakdown
Stars 284
Freshness 4mo ago
Issue Health 50%
Contributors 6
Dependents 0
Forks 35
Description Good
License MIT
How to Improve
Description low impact
Freshness high impact
Dependents medium impact
Matched Queries
From the README
# Perplexity MCP Server
An intelligent research assistant powered by Perplexity's specialized AI models. Features automatic query complexity detection to route requests to the most appropriate model for optimal results. Unlike the Official server, it has search capabilities FOR EVERY TASK, essentially
It also forces the agent using the MCP to be specific
## Tools
### 1. Search (Sonar Pro)
Quick search for simple queries and basic information lookup. Best for straightforward questions that need concise, direct answers.
```javascript
const result = await use_mcp_tool({
server_name: "perplexity",
tool_name: "search",
arguments: {
query: "What is the capital of France?",
force_model: false // Optional: force using this model even if query seems complex
}
});
```
### 2. Reason (Sonar Reasoning Pro)
Handles complex, multi-step tasks requiring detailed analysis. Perfect for explanations, comparisons, and problem-solving.
```javascript
const result = await use_mcp_tool( Read full README on GitHub →
Are you the maintainer? Claim this listing