Labsco
DaInfernalCoder logo

Perplexity

β˜… 295

from DaInfernalCoder

Intelligent search, reasoning, and research capabilities powered by Perplexity's AI models.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedAccount requiredAdvanced setup

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.

Copy & paste β€” that's it
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.

Copy & paste β€” that's it
const result = await use_mcp_tool({
 server_name: "perplexity",
 tool_name: "reason",
 arguments: {
 query: "Compare and contrast REST and GraphQL APIs, explaining their pros and cons",
 force_model: false // Optional: force using this model even if query seems simple
 }
});

3. Deep Research (Sonar Deep Research)

Conducts comprehensive research and generates detailed reports. Ideal for in-depth analysis of complex topics.

Copy & paste β€” that's it
const result = await use_mcp_tool({
 server_name: "perplexity",
 tool_name: "deep_research",
 arguments: {
 query: "The impact of quantum computing on cryptography",
 focus_areas: [
 "Post-quantum cryptographic algorithms",
 "Timeline for quantum threats",
 "Practical mitigation strategies"
 ],
 force_model: false // Optional: force using this model even if query seems simple
 }
});

Star History