1. Conduid
  2. Blockchain
  3. Perplexity Agent
MCP server · Blockchain

Perplexity Agent

Multi-step web research with citations via Perplexity's Agent API. Standard library only.

Unclaimed search
37Low

Scored 19 days ago · breakdown

About Perplexity Agent

Perplexity Agent is an MCP server in the Blockchain category: multi-step web research with citations via Perplexity's Agent API. Standard library only. It has been installed 0 times through Conduid.

Install

Claude Code
claude mcp add perplexity-agent -- npx -y perplexity-agent-mcp
npx
npx -y perplexity-agent-mcp
uvx
uvx perplexity-agent-mcp
pip
pip install perplexity-agent-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 Agent

Powered by Claude · Grounded in docs

I know everything about Perplexity Agent. 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 permissionsNot checked yet.

README

Perplexity Agent MCP

An opinionated, coding-specialized, Model Context Protocol server that integrates Perplexity AI's Sonar models into AI coding assistants like Claude Code or Codex CLI. It's deliberately lean and adds very few tokens to your context. It provides two specialized tools—lookup for instant fact-checking of API syntax and documentation details, and answer for comprehensive research with actionable recommendations.

Setup

Install the published package globally:

npm install -g perplexity-agent-mcp

Then add it to your Claude config file (~/.claude.json or ~/.config/claude/config.json):

"mcpServers": {
  "perplexity": {
    "command": "perplexity-agent-mcp",
    "env": {
      "PERPLEXITY_API_KEY": "your-api-key-here"
    }
  }
}

Restart Claude Code after saving, and you're ready to go.

How it works

The server exposes only two tools with concise descriptions (~1.3K tokens), keeping your context window lean and efficient:

  • lookup: Gets quick facts from documentation (like API syntax or config keys)
  • answer: Does deeper research to compare options and make recommendations

Under the hood, both tools are opinionated wrappers that call Perplexity API with coding-specialized system prompts. The lookup tool uses a compact fact‑extraction prompt focused on code/docs facts (see LOOKUP_SYSTEM_PROMPT in src/index.ts). The answer tool uses a technical decision/analysis prompt tailored for migrations and architecture choices (see ANSWER_SYSTEM_PROMPT in src/index.ts). The server also selects task‑appropriate Perplexity models—sonar-pro for lookups (see getLookupModel() in src/index.ts) and sonar-reasoning-pro for deeper research (see getAnswerModel() in src/index.ts).

Example AI agent prompt that will trigger AI agent to use this MCP and give you good results:

Please update the "foo" dependency to the latest version. Use Perplexity for the migration guide.

Requirements

  • Node.js v22.19.0 or newer
  • A Perplexity API key

Testing hooks

README mirrored from the source repository 19 days ago. The original is authoritative.

Questions

About Perplexity Agent

How do I install Perplexity Agent?

Run claude mcp add perplexity-agent -- npx -y perplexity-agent-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 Agent safe to use with an AI agent?

Its trust score is 37 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Perplexity Agent still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.