Perplexity Web MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Perplexity Web MCPdeep research on agentic AI trends 2026"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Perplexity Web MCP & CLI
MCP server, CLI, and API-compatible interface for Perplexity AI's web interface.
Use your Perplexity Pro/Max subscription to access premium models (GPT-5.4, Claude 4.6 Opus, Claude 4.6 Sonnet, Gemini 3.1 Pro, Nemotron 3 Super) from the terminal, through MCP tools, or as an API endpoint.
Features
CLI: Query Perplexity models directly from the terminal (
pwm ask,pwm council,pwm research,pwm chat)MCP Server: 17 MCP tools for AI agents with citations, rate limit checking, and multi-turn context
API Server: Drop-in Anthropic Messages API and OpenAI Chat Completions API
6 Models: GPT-5.4, Claude 4.6 Opus, Claude 4.6 Sonnet, Gemini 3.1 Pro, Nemotron 3 Super, Sonar 2
Thinking Mode: Extended thinking support for all compatible models
Deep Research: Full support for Perplexity's Deep Research mode
Multi-Turn Conversations: State-preserved threaded conversations for both MCP and CLI REPL
Model Council: Query multiple models in parallel and get a synthesized consensus
Setup & Skill Management: Auto-configure MCP for Claude Code, Cursor, Windsurf, Gemini CLI, Codex, Cline, Antigravity; install Agent Skills across 9 platforms
Doctor: Diagnose installation, auth, config, rate limits, and skill status
Vibe Coding Alert
Full transparency: this project was built by a non-developer using AI coding assistants. If you're an experienced Python developer, you might look at this codebase and wince. That's okay.
The goal here was to learn — both about building CLI tools in Python and about how modern web applications work under the hood. The code works, but it's very much a learning project released solely for the purpose of research and education, not a polished product.
Unofficial & Unsupported — This project is not affiliated with, endorsed by, or supported by Perplexity AI. It interacts with Perplexity's web interface through unofficial, undocumented methods that may break at any time without notice if Perplexity changes their internal APIs or RPCs. Use at your own risk. The author(s) accept no responsibility for any consequences to your Perplexity account, including but not limited to rate limiting, suspension, or termination. This project is released strictly for educational and research purposes only.
If you know better, teach us. PRs, issues, and architectural advice are all welcome. This is open source specifically because human expertise is irreplaceable.
Installation
From PyPI (recommended)
Using uv:
uv tool install perplexity-web-mcp-cliUsing pipx:
pipx install perplexity-web-mcp-cliUsing pip:
pip install perplexity-web-mcp-cliNote: Requires Python 3.10-3.13.
From source (for development)
git clone https://github.com/jacob-bd/perplexity-web-mcp.git
cd perplexity-web-mcp
uv venv && source .venv/bin/activate
uv pip install -e .Upgrading
pip install --upgrade perplexity-web-mcp-cliAfter upgrading, restart your MCP client (Claude Code, Cursor, etc.) to reload the server.
Quick Start
# 1. Authenticate
pwm login
# 2. Ask a question
pwm ask "What is quantum computing?"
# 3. Deep research
pwm research "agentic AI trends 2026"
# 4. Check your remaining quotas
pwm usage
# 5. Set up MCP for your AI tools
pwm setup add all # Interactive setup for all detected tools
pwm setup add cursor # Or add individually
# 6. Install the Agent Skill
pwm skill install claude-code
# 7. Diagnose any issues
pwm doctorCLI Reference
Querying
Ask Perplexity a question. By default, Perplexity auto-selects the best model.
pwm ask "What is quantum computing?"Choose a specific model with -m (see Models for the full list):
pwm ask "Compare React and Vue" -m gpt54pwm ask "Explain the attention mechanism" -m claude_sonnetEnable extended thinking with -t for deeper reasoning (available on models with Toggle thinking):
pwm ask "Prove that the square root of 2 is irrational" -m claude_sonnet --thinkingFocus on specific sources with -s to control where Perplexity searches:
# Search only academic papers and scholarly articles
pwm ask "transformer architecture improvements 2025" -s academic
# Search only social media (Reddit, Twitter, etc.)
pwm ask "best mechanical keyboard 2026" -s social
# Search SEC EDGAR financial filings
pwm ask "Apple revenue Q4 2025" -s finance
# Search all source types at once
pwm ask "latest AI news" -s allOutput options:
# JSON output (for piping to other tools)
pwm ask "What is Rust?" --json
# Suppress citation URLs (answer text only)
pwm ask "What is Rust?" --no-citationsCombine flags for full control:
pwm ask "recent advances in protein folding" -m gemini_pro -s academic --jsonDeep Research
Run Perplexity's Deep Research mode for in-depth reports with extensive sources. Uses a separate monthly quota.
pwm research "agentic AI trends 2026"pwm research "climate policy impact on renewable energy" -s academicpwm research "NVIDIA competitive landscape" -s finance --jsonModel Council
Query multiple models in parallel and get a synthesized consensus. Each model costs 1 Pro Search. Default synthesis uses Sonar 2 (also 1 Pro Search).
# Default: GPT-5.4, Claude Sonnet, Gemini Pro + Sonar 2 synthesis (4 Pro Searches)
pwm council "What are best practices for microservices?"# Custom model selection
pwm council "Compare Rust and Go" -m gpt54,claude_sonnet# Enable extended thinking for all council models
pwm council "Prove the Pythagorean theorem" --thinking# Skip synthesis, output as JSON
pwm council "React vs Vue" --no-synthesis --jsonAuthentication
pwm login # Interactive login (email + OTP)
pwm login --check # Check if authenticated
pwm login --email user@example.com # Send verification code (non-interactive)
pwm login --email user@example.com --code 123456 # Complete auth with codeUsage & Limits
pwm usage # Check remaining rate limits
pwm usage --refresh # Force-refresh from Perplexity serversHack
Seamlessly launch external AI tools connected to the Perplexity API server. This automatically starts the local pwm api server in the background, sets the required environment variables, and launches the tool.
pwm hack claude # Launch Claude Code
pwm hack claude -m gpt54 # Launch Claude Code with a specific modelMCP Setup
pwm setup list # Show supported tools and MCP configuration status
pwm setup add all # Interactive: detect and configure all tools
pwm setup add claude-code # Add MCP server to Claude Code
pwm setup add cursor # Add MCP server to Cursor
pwm setup add codex # Add MCP server to Codex CLI
pwm setup add gemini # Add MCP server to Gemini CLI
pwm setup add windsurf # Add MCP server to Windsurf
pwm setup add cline # Add MCP server to Cline CLI
pwm setup add antigravity # Add MCP server to Antigravity
pwm setup remove all # Remove from all configured tools
pwm setup remove cursor # Remove MCP server from a toolSkill Management
pwm skill list # Show installation status per platform
pwm skill install claude-code # Install skill for Claude Code
pwm skill install cursor --level project # Install at project level
pwm skill uninstall gemini-cli # Remove skill
pwm skill update # Update all outdated skills
pwm skill show # Display skill contentDoctor
pwm doctor # Diagnose installation, auth, config, limits
pwm doctor -v # Verbose (includes security + per-platform skill status)AI Documentation
pwm --ai # Print comprehensive AI-optimized referenceModels
CLI Name | Provider | Thinking | Notes |
| Perplexity | No | Auto-selects best model |
| Perplexity | No | Sonar 2 (latest in-house; API id |
| Perplexity | No | Monthly quota, in-depth reports |
| OpenAI | Toggle | GPT-5.4 |
| Anthropic | Toggle | Claude 4.6 Sonnet |
| Anthropic | Toggle | Claude 4.6 Opus (Max tier required) |
| Always | Gemini 3.1 Pro | |
| NVIDIA | Always | Nemotron 3 Super 120B |
Source Focus
Control where Perplexity searches using -s (CLI) or source_focus (MCP):
Option | Description | Example Use Case |
| General web search (default) | News, general questions |
| Academic papers, journals | Research, citations, scientific topics |
| Reddit, Twitter, forums | Opinions, recommendations, community sentiment |
| SEC EDGAR filings | Company financials, regulatory filings |
| Web + Academic + Social combined | Broad coverage across all sources |
MCP Server
Setup
The easiest way to configure MCP:
pwm setup add claude-codeOr configure manually for any MCP client:
Claude Code CLI:
claude mcp add perplexity pwm-mcpClaude Desktop — Download the .mcpb extension from the latest release and open it with Claude Desktop. Or configure manually:
{
"mcpServers": {
"perplexity": {
"command": "pwm-mcp"
}
}
}Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"perplexity": {
"command": "pwm-mcp"
}
}
}Available MCP Tools
Query tools (12):
Tool | Description |
| Flexible: model selection + thinking toggle |
| Quick Q&A (auto-selects best model) |
| In-depth reports with sources |
| Perplexity Sonar 2 (1 Pro Search) |
| GPT-5.4 |
| Claude 4.6 Sonnet |
| Claude 4.6 Opus (Max tier) |
| Gemini 3.1 Pro (thinking always on) |
| Nemotron 3 Super (thinking always on) |
Smart routing (1):
Tool | Description |
| Quota-aware routing — auto-selects best model based on limits |
Council (1):
Tool | Description |
| Query multiple models in parallel with optional synthesis |
Usage & auth tools (4):
Tool | Description |
| Check remaining quotas |
| Check authentication status |
| Send verification code to email |
| Complete auth with 6-digit code |
All query tools support source_focus: none, web, academic, social, finance, all.
API Server
Use Perplexity models through Anthropic or OpenAI compatible API endpoints.
Start the server
pwm apiAnthropic API (Claude Code)
export ANTHROPIC_BASE_URL=http://localhost:8080
export ANTHROPIC_API_KEY=perplexity
claude --model gpt-5.4Alternatively, launch Claude Code seamlessly using the hack command, which automatically starts the API server and configures the environment for you:
pwm hack claudeOpenAI API
export OPENAI_BASE_URL=http://localhost:8080/v1
export OPENAI_API_KEY=anythingCodex CLI Integration
Codex CLI performs strict client-side model validation. By default, it will reject any model name that isn't a recognized OpenAI ChatGPT account model (e.g., rejecting sonar).
To bypass this client-side block and use arbitrary Perplexity models natively, start Codex with the --local-provider lmstudio flag (or --oss). This instructs Codex to treat the backend as a local proxy:
export OPENAI_API_BASE=http://localhost:8080/v1
export OPENAI_API_KEY=dummy
codex -m sonar --local-provider lmstudioOur server's MODEL_MAP will seamlessly intercept sonar (or any other mapped names like gemini-pro, nemotron, claude-sonnet-4-6) and correctly route it to Perplexity's API. You can also create an alias in your shell to make this easier: alias codex-pplx="codex --local-provider lmstudio".
API Model Names
API Name | Perplexity Model | Thinking |
| Best (auto-select) | No |
| GPT-5.4 | Toggle |
| Claude 4.6 Sonnet | Toggle |
| Claude 4.6 Opus | Toggle |
| Gemini 3.1 Pro | Always |
| Nemotron 3 Super | Always |
Legacy aliases (claude-3-5-sonnet, claude-3-opus) are supported for compatibility.
Python API
from perplexity_web_mcp import Perplexity, ConversationConfig, Models
client = Perplexity(session_token="your_token")
conversation = client.create_conversation(
ConversationConfig(model=Models.CLAUDE_45_SONNET)
)
conversation.ask("What is quantum computing?")
print(conversation.answer)
for result in conversation.search_results:
print(f"Source: {result.url}")
# Follow-up (context preserved)
conversation.ask("Explain it simpler")
print(conversation.answer)Subscription Tiers & Rate Limits
Tier | Cost | Pro Search | Deep Research | Labs |
Free | $0 | 3/day | 1/month | No |
Pro | $20/mo | Weekly pool | Monthly pool | Monthly pool |
Max | $200/mo | Weekly pool | Monthly pool | Monthly pool |
The MCP server checks quotas before each query. Use pwm usage or pplx_usage to check your limits.
Troubleshooting
Authentication Errors (403)
Session tokens last ~30 days. Re-authenticate when expired:
pwm loginNon-interactive (for AI agents):
pwm login --email your@email.compwm login --email your@email.com --code 123456Via MCP tools (for AI agents without shell):
Call
pplx_auth_request_code(email="your@email.com")Check email for 6-digit code
Call
pplx_auth_complete(email="your@email.com", code="123456")
Diagnose Issues
pwm doctorThis checks installation, authentication, rate limits, MCP configuration, and skill installation -- with fix suggestions for every issue found.
Rate Limiting
CLI/MCP: Auto-checks quotas before each query, blocks if exhausted
API server: Enforces 5-second minimum between requests
Agent Skill
This project includes a portable Agent Skill (SKILL.md) that teaches AI agents how to use the CLI and MCP tools. Install it for your platform:
pwm skill install all # Install for all detected tools
pwm skill install claude-code # Or install individually
pwm skill install cursor
pwm skill install codex
pwm skill install gemini-cli
pwm skill install antigravity
pwm skill install cline
pwm skill install opencode
pwm skill install openclaw
pwm skill install alef-agentThe skill follows Anthropic's Agent Skills open standard and works across any compliant AI platform.
Credits
Originally forked from perplexity-webui-scraper by henrique-coder.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jacob-bd/perplexity-web-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server