https://github.com/tanigami/mcp-server-perplexity
https://github.com/tanigami/mcp-server-perplexity
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tanigami/mcp-server-perplexity
- Owner: tanigami
- License: mit
- Created: 2024-12-05T08:00:14.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-25T07:06:10.000Z (4 months ago)
- Last Synced: 2025-03-31T12:03:27.959Z (16 days ago)
- Language: Python
- Size: 21.5 KB
- Stars: 56
- Watchers: 2
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - Perplexity
- awesome-mcp-servers - tanigami/mcp-server-perplexity - Interacting with Perplexity API. (Legend / 🛠️ <a name="other-tools-and-integrations"></a>Other Tools and Integrations)
- awesome-mcp-servers - tanigami/mcp-server-perplexity - Interacting with Perplexity API. (Legend / 🛠️ <a name="other-tools-and-integrations"></a>Other Tools and Integrations)
- awesome-mcp-servers - Perplexity - Interacting with Perplexity (Community Servers)
- awesome-mcp-servers - Perplexity - Interacting with Perplexity (Community Servers)
- Awesome-MCP-Servers-directory - Perplexity - Interacting with Perplexity (Other Tools and Integrations)
- awesome-mcp-servers - tanigami/mcp-server-perplexity - Perplexity APIとの対話。 (サーバー実装 / 🛠️ <a name="other-tools-and-integrations"></a>その他のツールと統合)
- awesome-mcp-servers - Perplexity MCP Server - Provides a server for interacting with the Perplexity API via Claude Desktop (Table of Contents / AI Services)
- awesome-mcp-servers - Perplexity MCP Server - Provides a server for interacting with the Perplexity API via Claude Desktop (Table of Contents / AI Services)
README
# Perplexity MCP Server
[](https://smithery.ai/server/mcp-server-perplexity)
MCP Server for the Perplexity API.
> :warning: **Limitations:**
> - The Claude Desktop client may timeout if Perplexity processing takes too long
> - This issue might be resolved if Claude Desktop implements support for long running operations and progress reporting in the future
> - Implementation updates to handle these features will be made if they become available## Components
### Tools
- **ask_perplexity**: Request chat completion with citations from Perplexity
## Quickstart
### Install
#### Claude Desktop
- On macOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`
- On Windows: `%APPDATA%/Claude/claude_desktop_config.json````
"mcpServers": {
"Perplexity": {
"command": "uvx",
"args": [
"mcp-server-perplexity"
],
"env": {
"PERPLEXITY_API_KEY": "your-perplexity-api-key"
}
}
}
```