Perplexity集成
STDIO用于集成Perplexity AI的MCP服务器
用于集成Perplexity AI的MCP服务器
This project provides MCP (Machine Control Protocol) servers for integrating with Perplexity AI. There are two server configurations available:
This is the local development server configuration:
{ "mcpServers": { "perplexity": { "command": "node", "args": ["path/to/build/index.js"], "env": { "PERPLEXITY_API_KEY": "your-api-key" }, "disabled": false, "alwaysAllow": [] } } }
your-api-key
with your actual Perplexity API keyargs
to point to your built index.js file⚠️ Never commit your API keys to version control. Instead:
.env
files to your .gitignore