Perplexity Search MCP Server

Perplexity Search MCP Server

Enables real-time web search with source citations by leveraging Perplexity AI's Sonar models through SAP AI Core. It integrates with Claude Code to provide deep analysis, reasoning, and up-to-date information from the web.

Category
Visit Server

README

Perplexity Search MCP Skill

A Claude Code skill that enables web search using Perplexity AI through SAP AI Core.

Overview

This skill provides real-time web search capabilities with source citations by leveraging Perplexity's Sonar models deployed on SAP AI Core. It works as an MCP (Model Context Protocol) server that integrates seamlessly with Claude Code.

Prerequisites

  • Node.js >= 18.0.0
  • sap-ai-proxy running locally (default: http://127.0.0.1:3030)
  • Perplexity model deployed in SAP AI Core (e.g., sonar-pro)

Installation

1. Clone and Build

git clone <repo-url> perplexity-skill
cd perplexity-skill
npm install
npm run build

2. Install the Skill

npm run install-skill

This will:

  • Add the MCP server to ~/.claude/mcp.json
  • Install the skill definition to ~/.claude/skills/perplexity/

3. Restart Claude Code

Restart Claude Code to load the new MCP server.

Configuration

Environment Variables

Variable Default Description
SAP_AI_PROXY_URL http://127.0.0.1:3030 URL of the sap-ai-proxy server
PERPLEXITY_DEFAULT_MODEL sonar-pro Default Perplexity model to use

To customize, edit the env section in ~/.claude/mcp.json:

{
  "mcpServers": {
    "perplexity-search": {
      "command": "node",
      "args": ["/path/to/perplexity-skill/dist/index.js"],
      "env": {
        "SAP_AI_PROXY_URL": "http://127.0.0.1:3030",
        "PERPLEXITY_DEFAULT_MODEL": "sonar-pro"
      }
    }
  }
}

Usage

Explicit Invocation

/perplexity What are the latest developments in AI?

Natural Language

The skill automatically triggers for web search queries:

What happened in tech news today?
What's the current price of Bitcoin?

Available Tools

perplexity_web_search

Full-featured web search with all configuration options.

Parameters:

  • query (required): The search query
  • model (optional): sonar | sonar-pro | sonar-reasoning
  • search_recency_filter (optional): day | week | month | year
  • return_citations (optional): boolean (default: true)

perplexity_quick_search

Simplified search for quick queries.

Parameters:

  • query (required): The search query

Supported Models

Model Description
sonar Fast real-time web search
sonar-pro Enhanced reasoning with citations
sonar-reasoning Deep analysis and reasoning

Response Format

Responses include:

  1. Main answer content
  2. Source citations (numbered URLs)
  3. Search results with titles and snippets

Example output:

**The capital of France is Paris.**

Paris has served as the capital since 1944...

---
**Sources:**
1. https://en.wikipedia.org/wiki/Paris
2. https://www.britannica.com/place/Paris

**Search Results:**
1. [Paris - Wikipedia](https://en.wikipedia.org/wiki/Paris)
   Paris is the capital and largest city of France...

Uninstallation

npm run uninstall-skill

Then restart Claude Code.

Architecture

Claude Code → MCP Server (stdio) → sap-ai-proxy:3030 → SAP AI Core (Perplexity)

Troubleshooting

"Model sonar-pro is not available"

  1. Ensure the Perplexity model is deployed in SAP AI Core
  2. Restart sap-ai-proxy to refresh the deployment cache
  3. Verify with: curl http://127.0.0.1:3030/v1/models

MCP Server Not Loading

  1. Check ~/.claude/mcp.json configuration
  2. Ensure dist/index.js exists (run npm run build)
  3. Restart Claude Code

Connection Refused

Ensure sap-ai-proxy is running:

cd /path/to/sap-ai-proxy
npm start

Development

# Watch mode for development
npm run dev

# Test the MCP server
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node dist/index.js

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured