|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "ai.perplexity-mcp", |
| 4 | + "name": "Perplexity", |
| 5 | + "alias": "perplexity", |
| 6 | + "description": "AI-powered search using Perplexity models. Provides web search, deep research, and reasoning capabilities with real-time web context.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/185426709?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["search", "ai-ml"], |
| 10 | + "tags": ["perplexity", "search", "web-search", "research", "ai", "reasoning"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@perplexity-ai/mcp-server"], |
| 16 | + "env": { |
| 17 | + "PERPLEXITY_API_KEY": "${input:PERPLEXITY_API_KEY}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "PERPLEXITY_API_KEY", |
| 23 | + "label": "Perplexity API Key", |
| 24 | + "description": "API key for the Perplexity API. Purchase credits at perplexity.ai/settings/api.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://www.perplexity.ai/settings/api", |
| 31 | + "instructions": "1. Go to perplexity.ai/settings/api\n2. Add a payment method and purchase API credits\n3. Click '+ Generate' to create a new API key\n4. Copy the key", |
| 32 | + "button_label": "Get API Key" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Get a Perplexity API key at https://www.perplexity.ai/settings/api" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "Perplexity AI", |
| 46 | + "github": "perplexityai", |
| 47 | + "url": "https://www.perplexity.ai" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/perplexityai/modelcontextprotocol", |
| 52 | + "homepage": "https://www.perplexity.ai", |
| 53 | + "documentation": "https://docs.perplexity.ai/guides/mcp-server" |
| 54 | + }, |
| 55 | + |
| 56 | + "platforms": ["all"], |
| 57 | + |
| 58 | + "capabilities": { |
| 59 | + "tools": true, |
| 60 | + "resources": false, |
| 61 | + "prompts": false, |
| 62 | + "read_only_mode": true |
| 63 | + } |
| 64 | +} |
0 commit comments