Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-perplexity

Perplexity API的MCP服务端,提供带引用的聊天补全功能

article

README

🚀 困惑力 MCP 服务器

困惑力 MCP 服务器是对接困惑力 API 的服务器。它能借助困惑力 API 为用户提供带引用的回答,不过在使用时可能会受一些限制。

smithery 徽章

⚠️ 重要提示

  • 如果 Perplexity 处理时间过长,Claude Desktop 客户端可能会超时。
  • 如果 Claude Desktop 实现了对长时间运行操作和进度报告的支持,未来可能会解决此问题。
  • 如果功能更新可用,将进行相应的实现处理。

✨ 主要特性

工具

  • ask_perplexity:从 Perplexity 请求带引用的回答。

🚀 快速开始

📦 安装指南

Claude Desktop

  • macOS~/Library/Application\ 支持/Claude/claude_desktop_config.json
  • Windows%APPDATA%/Claude/claude_desktop_config.json
"mcpServers": {
  "Perplexity": {
    "command": "uvx",
    "args": [
      "mcp-server-perplexity"
    ],
    "env": {
      "PERPLEXITY_API_KEY": "你的困惑力 API 密钥"
    }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client