package.json•2.47 kB
{
"name": "@grec0/mcp-planka",
"version": "0.0.8",
"description": "MCP server for Planka board",
"license": "MIT",
"author": "@grec0",
"homepage": "https://github.com/grec0/mcp-planka",
"bugs": "https://github.com/grec0/mcp-planka/issues",
"type": "module",
"bin": {
"mcp-server-planka": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"inspector": "npx -y @modelcontextprotocol/inspector node dist/index.js",
"inspector:demo": "SERVER_PORT=3008 CLIENT_PORT=5174 npx -y @modelcontextprotocol/inspector -e PLANKA_BASE_URL=http://localhost:3000 -e PLANKA_ADMIN_ID=1460688047300412417 -e PLANKA_AGENT_EMAIL=claude-sic-score-front-end@cursor.com -e PLANKA_AGENT_PASSWORD=supersupersecre1 node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testMatch='**/tests/**/*.test.ts'",
"up": "docker compose --env-file .env up -d",
"down": "docker compose down",
"restart": "docker compose --env-file .env restart",
"build-docker": "npm run build && docker build -t mcp-planka:latest .",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"prerelease": "npm run build && npm test",
"release:patch": "npm run version:patch && npm run prerelease && npm publish",
"release:minor": "npm run version:minor && npm run prerelease && npm publish",
"release:major": "npm run version:major && npm run prerelease && npm publish",
"postpublish": "git add package.json && git commit -m \"chore: bump version to v$(node -p \"require('./package.json').version\")\" && git push"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"@types/express": "^5.0.2",
"@types/node": "^22",
"@types/node-fetch": "^2.6.12",
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"universal-user-agent": "^7.0.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.6",
"typescript": "^5.6.2"
}
}