package.json•2.19 kB
{
"name": "@pulumi/mcp-server",
"version": "0.1.10",
"description": "A server implementing the Model Context Protocol for Pulumi.",
"author": "Pulumi Corporation",
"license": "Apache-2.0",
"homepage": "https://github.com/pulumi/mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pulumi/mcp-server.git"
},
"bugs": {
"url": "https://github.com/pulumi/mcp-server/issues"
},
"type": "module",
"bin": {
"pulumi-mcp-server": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint src/**/*.ts --no-warn-ignored",
"lint:fix": "eslint src/**/*.ts --fix",
"dev": "tsx watch src/index.ts stdio",
"build": "tsup",
"build:watch": "tsup --watch",
"test": "NODE_OPTIONS='--loader ts-node/esm' mocha --timeout 30000 'test/**/*.test.ts'",
"test:watch": "NODE_OPTIONS='--loader ts-node/esm' mocha --watch --watch-files test 'test/**/*.test.ts'",
"test:unit": "NODE_OPTIONS='--loader ts-node/esm' mocha --timeout 30000 --grep '^(?!.*Claude Code SDK)' 'test/**/*.test.ts'",
"test:claude-code": "NODE_OPTIONS='--loader ts-node/esm' mocha --timeout 60000 --grep 'Claude Code SDK' 'test/**/*.test.ts'",
"inspector": "./node_modules/.bin/mcp-inspector-cli --cli node dist/index.js stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"@pulumi/pulumi": "^3.169.0",
"express": "^5.1.0",
"pino": "^9.6.0",
"yargs": "^17.7.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@anthropic-ai/claude-code": "^1.0.33",
"@modelcontextprotocol/inspector": "^0.15.0",
"@eslint/js": "^9.26.0",
"@types/chai": "^4.3.11",
"@types/express": "^5.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "^22.14.1",
"@types/yargs": "^17.0.33",
"chai": "^5.1.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"mocha": "^10.3.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.32.0"
}
}