Perplexity MCP Go MCP Server

A Go implementation of a Perplexity Search MCP server that allows large language models (LLMs) to access the Perplexity search API through the [Model

Local serverstdioGo

What is the Perplexity MCP Go MCP server?

Connect Perplexity MCP Go to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A Go implementation of a Perplexity Search MCP server that allows large language models (LLMs) to access the Perplexity search API through the Model Context Protocol (MCP). The perplexity mcp go mcp server is what makes that connection.

What the server does

  • perplexity_search — Perform web searches and return results, including citations
  • query (string, required): The search query
  • search_recency_filter (string, optional): Filter results by time (month, week, day, hour)
  • max_tokens (integer, optional): Maximum number of tokens to return
  • temperature (number, optional, default: 0.2): Controls randomness in response
  • top_p (number, optional, default: 0.9): Nucleus sampling threshold

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — The Installation tool exposed by this server

Installation

Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Credentials and setup notes

Configuration is passed through the environment: PERPLEXITY_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Go 1.23 or higher - Perplexity API key

Where it fits

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

This entry was verified against Perplexity MCP Go's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • 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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationThe Installation tool exposed by this server.

How to install the Perplexity MCP Go MCP server

{
  "mcpServers": {
    "perplexity-search": {
      "command": "/path/to/perplexity-search-mcp",
      "env": {
        "PERPLEXITY_API_KEY": "your-api-key-here"
      }
    }
  }
}

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

Configuration

  • Go 1.23 or higher - Perplexity API key
VariableDescriptionRequired
PERPLEXITY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Perplexity MCP Go to Prerequisites.
  • Use Perplexity MCP Go to Installation.

Frequently asked questions

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