package.json•1.98 kB
{
"name": "perplexity-agent-mcp",
"version": "1.3.0",
"description": "An opinionated, coding-specialized, Model Context Protocol server that integrates Perplexity AI's Sonar models into AI coding assistants like Claude Code or Codex CLI.",
"keywords": [
"ai",
"perplexity",
"mcp",
"modelcontextprotocol"
],
"license": "MIT",
"author": "Łukasz Jerciński",
"packageManager": "pnpm@10.20.0",
"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=dummy-api-key vitest run",
"typecheck": "tsc -b --noEmit",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"prettier": "3.6.2",
"semantic-release": "^25.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.3"
},
"engines": {
"node": ">=22.14.0"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Jercik/perplexity-agent-mcp"
},
"homepage": "https://github.com/Jercik/perplexity-agent-mcp#readme",
"bugs": {
"url": "https://github.com/Jercik/perplexity-agent-mcp/issues"
}
}