Skip to content

Commit 2e49e35

Browse files
author
Kesku
committed
add Claude Code plugin manifest and MCP config
1 parent 79ce21c commit 2e49e35

3 files changed

Lines changed: 36 additions & 1 deletion

File tree

.claude-plugin/plugin.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "perplexity",
3+
"description": "Official Perplexity AI plugin providing real-time web search, reasoning, and research capabilities",
4+
"version": "0.9.0",
5+
"author": {
6+
"name": "Perplexity AI",
7+
"email": "api@perplexity.ai"
8+
},
9+
"homepage": "https://docs.perplexity.ai/guides/mcp-server",
10+
"repository": "https://github.com/perplexityai/modelcontextprotocol",
11+
"license": "MIT",
12+
"keywords": [
13+
"mcp",
14+
"search",
15+
"web-search",
16+
"perplexity",
17+
"research",
18+
"reasoning",
19+
"ai"
20+
]
21+
}

.mcp.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"mcpServers": {
3+
"perplexity": {
4+
"type": "stdio",
5+
"command": "npx",
6+
"args": ["-y", "@perplexity-ai/mcp-server"],
7+
"env": {
8+
"PERPLEXITY_API_KEY": "${PERPLEXITY_API_KEY}",
9+
"PERPLEXITY_TIMEOUT_MS": "${PERPLEXITY_TIMEOUT_MS:-600000}"
10+
}
11+
}
12+
}
13+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"!dist/*.test.js",
3333
"!dist/vitest.config.js",
3434
"README.md",
35-
".claude-plugin"
35+
".claude-plugin",
36+
".mcp.json"
3637
],
3738
"scripts": {
3839
"build": "tsc && shx chmod +x dist/*.js",

0 commit comments

Comments
 (0)