decodo-back-office-mcp
Version:
Model Context Protocol (MCP) server for Decodo proxy management API integration. Provides 14 tools for managing sub-users, proxy endpoints, IP whitelists, and traffic analytics.
85 lines (84 loc) • 2.13 kB
JSON
{
"name": "decodo-back-office-mcp",
"version": "1.0.1",
"description": "Model Context Protocol (MCP) server for Decodo proxy management API integration. Provides 14 tools for managing sub-users, proxy endpoints, IP whitelists, and traffic analytics.",
"main": "dist/index.js",
"bin": {
"decodo-mcp": "dist/index.js"
},
"type": "module",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build && npm run typecheck",
"prepack": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"decodo",
"proxy",
"proxy-management",
"api",
"ai-tools",
"claude",
"continue",
"cline",
"agent-tools",
"typescript",
"nodejs"
],
"author": {
"name": "Andrew Lawn",
"url": "https://github.com/andrewlwn77"
},
"license": "MIT",
"homepage": "https://github.com/andrewlwn77/decodo-back-office-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andrewlwn77/decodo-back-office-mcp.git"
},
"bugs": {
"url": "https://github.com/andrewlwn77/decodo-back-office-mcp/issues"
},
"dependencies": {
"@decodo/sdk": "^1.0.3",
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
}
}