render-mcp

{ "name": "@niyogi/render-mcp", "version": "1.0.1", "description": "Render.com MCP server for AI assistants", "main": "dist/index.js", "type": "module", "bin": { "render-mcp": "./bin/render-mcp.js" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "ts-node src/index.ts", "test": "jest", "prepublishOnly": "npm run build" }, "keywords": [ "render", "mcp", "ai", "claude", "deployment" ], "author": "niyogi", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "axios": "^1.6.7", "commander": "^12.0.0", "dotenv": "^16.4.1", "inquirer": "^9.2.13" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.10", "jest": "^29.7.0", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": ["**/tests/**/*.test.ts"], "collectCoverageFrom": [ "src/**/*.ts", "!src/index.ts" ], "coverageDirectory": "coverage", "moduleNameMapper": { "^(\\.{1,2}/.*)\\.js$": "$1" } } }