package.json•1.21 kB
{
"name": "perplexity-agent-mcp",
"version": "1.3.0",
"description": "Opinionated Model Context Protocol server that seamlessly integrates Perplexity AI's Sonar models into AI coding assistants like Claude Code with two specialized, purpose-built tools",
"keywords": [
"ai",
"perplexity",
"mcp",
"modelcontextprotocol"
],
"license": "MIT",
"author": "Łukasz Jerciński",
"type": "module",
"main": "dist/index.js",
"bin": {
"perplexity-agent-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc --build tsconfig.app.json --force",
"start": "node dist/index.js",
"test": "PERPLEXITY_API_KEY=test vitest run",
"typecheck": "tsc -b --noEmit",
"typecheck:app": "tsc --noEmit -p tsconfig.app.json",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"format": "prettier --write ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24",
"prettier": "3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
]
}