mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
- Implements MCP server with Perplexity API integration - Adds three tools: web_search, deep_research, and ask_followup - Includes comprehensive documentation and example configuration - Supports various search options including domain filtering and recency - Provides deep research capabilities with Pro models - Closes #6271
31 lines
708 B
JSON
31 lines
708 B
JSON
{
|
|
"name": "@roo-code/mcp-server-perplexity",
|
|
"version": "0.1.0",
|
|
"description": "MCP server for Perplexity API integration - enables web search and deep research capabilities",
|
|
"type": "module",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
|
|
"dev": "tsx src/index.ts",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"perplexity",
|
|
"search",
|
|
"research",
|
|
"ai"
|
|
],
|
|
"author": "Roo Code",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.9",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|