Skip to content

Commit 4af9c55

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for PERPLEXITY_API_KEY)
1 parent 45df729 commit 4af9c55

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/ai.perplexity-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "AI-powered search using Perplexity models. Provides web search, deep research, and reasoning capabilities with real-time web context.",
77
"icon": "https://avatars.githubusercontent.com/u/185426709?v=4",
88
"schema_version": "2.1",
9-
"categories": ["search", "ai-ml"],
10-
"tags": ["perplexity", "search", "web-search", "research", "ai", "reasoning"],
11-
9+
"categories": [
10+
"search",
11+
"ai-ml"
12+
],
13+
"tags": [
14+
"perplexity",
15+
"search",
16+
"web-search",
17+
"research",
18+
"ai",
19+
"reasoning"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@perplexity-ai/mcp-server"],
24+
"args": [
25+
"-y",
26+
"@perplexity-ai/mcp-server"
27+
],
1628
"env": {
1729
"PERPLEXITY_API_KEY": "${input:PERPLEXITY_API_KEY}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "PERPLEXITY_API_KEY",
2335
"label": "Perplexity API Key",
2436
"description": "API key for the Perplexity API. Purchase credits at perplexity.ai/settings/api.",
25-
"type": "password",
37+
"type": "text",
2638
"required": true,
2739
"secret": true,
2840
"placeholder": "pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +47,23 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "api_key",
4152
"instructions": "Get a Perplexity API key at https://www.perplexity.ai/settings/api"
4253
},
43-
4454
"contributor": {
4555
"name": "Perplexity AI",
4656
"github": "perplexityai",
4757
"url": "https://www.perplexity.ai"
4858
},
49-
5059
"links": {
5160
"repository": "https://github.com/perplexityai/modelcontextprotocol",
5261
"homepage": "https://www.perplexity.ai",
5362
"documentation": "https://docs.perplexity.ai/guides/mcp-server"
5463
},
55-
56-
"platforms": ["all"],
57-
64+
"platforms": [
65+
"all"
66+
],
5867
"capabilities": {
5968
"tools": true,
6069
"resources": false,

0 commit comments

Comments
 (0)