1. Conduid
  2. AI
  3. Perplexity MCP
MCP server · AI

Perplexity MCP

An MCP server for the Perplexity for use with Claude Code and Claude Desktop, giving you enhanced search and reasoning capabilties.

Unclaimed MIT last commit a year ago claudellmmcp-serveraiperplexity-api
59Fair

Scored yesterday · breakdown

About Perplexity MCP

Perplexity MCP is an MCP server published by Alcova-AI in the AI category: an MCP server for the Perplexity for use with Claude Code and Claude Desktop, giving you enhanced search and reasoning capabilties. It has been installed 0 times through Conduid.

The repository has 29 stars and 4 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx perplexity-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Perplexity MCP

Powered by Claude · Grounded in docs

I know everything about Perplexity MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.2.6v0.2.6 · 20 Mar 2025Changelog af82e2391f4a11f509a659c6a60ed385810b2afd: Add suport for tokens (@ivanvanderbyl) Copyright 2025 Alcova AI Pty Ltd. All rights reserved. Released under the [MIT License](https://opensource.org/licenses/MIT).
v0.2.5v0.2.5 · 20 Mar 2025Changelog daa5bfe41bbc6980341ac0b7578076055e666cc6: Add args back in (@ivanvanderbyl) Copyright 2025 Alcova AI Pty Ltd. All rights reserved. Released under the [MIT License](https://opensource.org/licenses/MIT).
v0.2.1v0.2.1 · 20 Mar 2025Changelog b8e7f0c Add detailed usage examples for Claude Code, Claude Desktop, and Cursor b941f44 Enhance README with detailed client integration instructions and benefits 1ac44c9 Fix MCP server configuration instructions in README 6cd78d9…
v0.2.0v0.2.0 · 20 Mar 2025Changelog b8e7f0c Add detailed usage examples for Claude Code, Claude Desktop, and Cursor b941f44 Enhance README with detailed client integration instructions and benefits 1ac44c9 Fix MCP server configuration instructions in README 6cd78d9…
v0.1.0v0.1.0 · 20 Mar 2025Changelog e9d8ede Add GoReleaser and Homebrew configuration 7f6251f Add deps 1259276 Implement Perplexity MCP server with search and reasoning 0deac6a Update MCP configuration to include reasoning tool

README

Perplexity MCP Server

A Model Context Protocol (MCP) server for the Perplexity API written in Go. This server enables AI assistants like Claude (Code and Desktop) and Cursor to seamlessly access Perplexity's powerful search and reasoning capabilities directly from their interfaces.

Description

The Perplexity MCP Server acts as a bridge between AI assistants and the Perplexity API, allowing them to:

  1. Search the web and retrieve up-to-date information using Perplexity's Sonar Pro model via the perplexity_ask tool
  2. Perform complex reasoning tasks using Perplexity's Sonar Reasoning Pro model via the perplexity_reason tool

This integration lets AI assistants like Claude access real-time information and specialized reasoning capabilities without leaving their interface, creating a seamless experience for users.

Key Benefits

  • Access to real-time information: Get current data, news, and information from the web
  • Enhanced reasoning capabilities: Leverage specialized models for complex problem-solving tasks
  • Seamless integration: Works natively with Claude Code, Claude Desktop, and Cursor
  • Simple installation: Quick setup with Homebrew, Go, or pre-built binaries
  • Customizable: Configure which Perplexity models to use for different tasks

Installation

Using Homebrew (macOS and Linux)

brew tap alcova-ai/tap
brew install perplexity-mcp

From Source

Clone the repository and build manually:

git clone https://github.com/Alcova-AI/perplexity-mcp.git
cd perplexity-mcp
go build -o perplexity-mcp-server .

From Binary Releases (Other platforms)

Download pre-built binaries from the releases page.

Usage

This server supports only the stdio protocol for MCP communication.

Setup with Claude Code

Adding to Claude Code:

claude mcp add-json --scope user perplexity-mcp '{"type":"stdio","command":"perplexity-mcp","env":{"PERPLEXITY_API_KEY":"pplx-YOUR-API-KEY-HERE"}}'

That's it! You can now use Perplexity in Claude Code.

Setup with Claude Desktop

Adding to Claude Desktop:

  1. Exit the Claude Desktop MCP config:
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
  1. Add the Perplexity MCP server:
  {
    "mcpServers": {
+        "perplexity-mcp": {
+            "command": "perplexity-mcp",
+            "args": [
+                "--model",
+                "sonar-pro",
+                "--reasoning-model",
+                "sonar-reasoning-pro"
+            ],
+            "env": {
+                "PERPLEXITY_API_KEY": "pplx-YOUR-API-KEY-HERE"
+            }
+        }
    }
  }

Command Line Options

  • --model, -m: Specify the Perplexity model to use for search (default: "sonar-pro")
    • Can also be set with the PERPLEXITY_MODEL environment variable
  • --reasoning-model, -r: Specify the Perplexity model to use for reasoning (default: "sonar-reasoning-pro")
    • Can also be set with the PERPLEXITY_REASONING_MODEL environment variable

Example:

perplexity-mcp --model sonar-pro --reasoning-model sonar-reasoning-pro

Direct Execution

If you want to run the server directly (not recommended for most users):

  1. Set your Perplexity API key as an environment variable:

    export PERPLEXITY_API_KEY=your-api-key-here
    
  2. Run the server:

    perplexity-mcp
    

License

MIT

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Perplexity MCP

How do I install Perplexity MCP?

Run npx perplexity-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Perplexity MCP safe to use with an AI agent?

Its trust score is 59 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Perplexity MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.