MCP Perplexity Search MCP Server

MCP server for Perplexity search

Local serverstdio

What is the MCP Perplexity Search MCP server?

MCP server for Perplexity search. The mcp perplexity search mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

The functionality of this tool is now available in mcp-omnisearch, which combines multiple MCP tools in one unified package.

  • 🤖 Advanced chat completion using Perplexity's AI models
  • 📝 Predefined prompt templates for common scenarios:
  • Technical documentation generation
  • Security best practices analysis
  • Code review and improvements
  • API documentation in structured format

Its toolset

Everything the assistant can do here goes through one of these:

  • chat_completion — Generate chat completions using the Perplexity API with support for specialized prompt templates
  • Setup — The Setup tool exposed by this server
  • Publishing — The project uses changesets for version management. To publish:

Adding it to your client

mcp-perplexity-search on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need one environment variable: PERPLEXITY_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Perplexity Search's toolset — chat_completion, Setup, Publishing — is a fair guide to whether it matches your workflow. It is maintained by spences10; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp perplexity search mcp server does with a few real requests.

Available tools

ToolWhat it does
chat_completionGenerate chat completions using the Perplexity API with support for specialized prompt templates.
SetupThe Setup tool exposed by this server.
PublishingThe project uses changesets for version management. To publish:

How to install the MCP Perplexity Search MCP server

{
	"mcpServers": {
		"mcp-perplexity-search": {
			"command": "npx",
			"args": ["-y", "mcp-perplexity-search"],
			"env": {
				"PERPLEXITY_API_KEY": "your-perplexity-api-key"
			}
		}
	}
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PERPLEXITY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Perplexity Search to chat completion.
  • Use MCP Perplexity Search to Setup.
  • Use MCP Perplexity Search to Publishing.

Frequently asked questions

It connects MCP Perplexity Search to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (chat_completion, Setup, Publishing) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Perplexity Search directly.