package.json•2.24 kB
{
"name": "@ahdev/dokploy-mcp",
"version": "1.3.2",
"description": "[DISCONTINUED] MCP Server for Dokploy API - Moved to https://github.com/Dokploy/mcp",
"deprecated": "This package has been discontinued. Use the official repository: https://github.com/Dokploy/mcp",
"main": "build/index.js",
"bin": {
"dokploy-mcp": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"postinstall": "echo '\n⚠️ WARNING: This package has been DISCONTINUED!\n📍 New official repository: https://github.com/Dokploy/mcp\n🔄 Please migrate to the official repository.\n'",
"build": "npm run clean && tsc && chmod 755 build/index.js",
"dev": "tsc --watch",
"start:stdio": "node build/index.js",
"start:http": "node build/index.js --http",
"start:sse": "node build/index.js --sse",
"dev:http": "npm run build && npm run start:http",
"dev:sse": "npm run build && npm run start:sse",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.{ts,js,json}",
"format:check": "prettier --check src/**/*.{ts,js,json}",
"type-check": "tsc --noEmit",
"clean": "rm -rf build",
"precommit": "npm run lint && npm run format:check && npm run type-check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andradehenrique/dokploy-mcp.git"
},
"keywords": [
"modelcontextprotocol",
"mcp",
"dokploy",
"discontinued"
],
"author": "Henrique Andrade <developer@henriqueandrade.dev>",
"bugs": {
"url": "https://github.com/Dokploy/mcp/issues"
},
"homepage": "https://github.com/Dokploy/mcp#readme",
"license": "MIT",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"axios": "^1.9.0",
"express": "^5.1.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.2",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
}
}