package.jsonโข2.89 kB
{
"name": "mcp-perplexity-pro",
"version": "1.1.0",
"description": "MCP server for Perplexity API with intelligent model selection",
"main": "dist/index.js",
"module": "./src/index.ts",
"type": "module",
"bin": {
"mcp-perplexity-pro": "./bin/mcp-perplexity-pro",
"mcp-perplexity-pro-stdio": "./bin/mcp-perplexity-pro-stdio"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfdude/mcp-perplexity-pro.git"
},
"keywords": [
"mcp",
"perplexity",
"ai",
"search",
"reasoning",
"model-context-protocol"
],
"author": "Rob Sherman",
"license": "MIT",
"bugs": {
"url": "https://github.com/cfdude/mcp-perplexity-pro/issues"
},
"homepage": "https://github.com/cfdude/mcp-perplexity-pro#readme",
"scripts": {
"build": "tsc && smithery build",
"dev": "smithery dev",
"start": "node dist/launcher.js",
"test": "vitest",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"type-check": "tsc --noEmit",
"type-check:tests": "tsc --noEmit --project tsconfig.test.json",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run lint && npm run test:run",
"postinstall": "node -e \"console.log('\\\\n๐ mcp-perplexity-pro installed successfully!\\\\n๐ Usage: npx mcp-perplexity-pro --help\\\\n')\"",
"docker:build": "docker build -t mcp-perplexity-pro .",
"docker:build:stdio": "docker build -f Dockerfile.stdio -t mcp-perplexity-pro:stdio .",
"docker:run": "docker-compose up",
"docker:run:stdio": "docker-compose --profile stdio up -d mcp-perplexity-pro-stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"@types/express": "^5.0.3",
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"proper-lockfile": "^4.1.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@smithery/cli": "latest",
"@types/cors": "^2.8.19",
"@types/node": "^20.14.0",
"@types/proper-lockfile": "^4.1.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.3.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
}
}