mcp-perplexity-search
Version:
MCP server for Perplexity search
55 lines • 1.33 kB
JSON
{
"name": "mcp-perplexity-search",
"version": "0.0.5",
"description": "MCP server for Perplexity search",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-perplexity-search": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"perplexity",
"search",
"web-content",
"llm",
"ai",
"chat-completion",
"prompt-templates",
"json-output",
"markdown-output"
],
"author": "Scott Spence",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/spences10/mcp-perplexity-search.git"
},
"bugs": {
"url": "https://github.com/spences10/mcp-perplexity-search/issues"
},
"homepage": "https://github.com/spences10/mcp-perplexity-search#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "1.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "npx @modelcontextprotocol/inspector dist/index.js",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
}
}