-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathai.perplexity-mcp-npx.json
More file actions
73 lines (73 loc) · 2.04 KB
/
Copy pathai.perplexity-mcp-npx.json
File metadata and controls
73 lines (73 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "../schemas/server-definition.schema.json",
"id": "ai.perplexity-mcp-npx",
"name": "Perplexity (npx)",
"alias": "perplexity",
"description": "AI-powered search using Perplexity models. Provides web search, deep research, and reasoning capabilities with real-time web context.",
"logo": "https://avatars.githubusercontent.com/u/185426709?v=4",
"schema_version": "2.1",
"categories": [
"search",
"ai-ml"
],
"tags": [
"perplexity",
"search",
"web-search",
"research",
"ai",
"reasoning"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@perplexity-ai/mcp-server"
],
"env": {
"PERPLEXITY_API_KEY": "${input:PERPLEXITY_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "PERPLEXITY_API_KEY",
"label": "Perplexity API Key",
"description": "API key for the Perplexity API. Purchase credits at perplexity.ai/settings/api.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://www.perplexity.ai/settings/api",
"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",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Get a Perplexity API key at https://www.perplexity.ai/settings/api"
},
"contributor": {
"name": "Perplexity AI",
"github": "perplexityai",
"url": "https://www.perplexity.ai"
},
"links": {
"repository": "https://github.com/perplexityai/modelcontextprotocol",
"homepage": "https://www.perplexity.ai",
"documentation": "https://docs.perplexity.ai/guides/mcp-server"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
}
}