@hellocoop/admin-mcp
Version:
Model Context Protocol (MCP) for Hellō Admin API.
72 lines (71 loc) • 2.45 kB
JSON
{
"name": "@hellocoop/admin-mcp",
"version": "1.5.6",
"description": "Model Context Protocol (MCP) for Hellō Admin API.",
"type": "module",
"main": "src/index.js",
"bin": {
"hello-mcp-http": "src/http.js",
"mcp": "src/stdio.js"
},
"scripts": {
"start": "node src/stdio.js",
"start:http": "node src/http.js",
"start:http:debug": "nodemon --inspect=0.0.0.0 src/http.js",
"test": "npm run test:tools && npm run test:integration:mocha:shell",
"test:legacy": "npm run test:tools && npm run test:integration:docker",
"test:tools": "node test/tools.test.js",
"test:integration": "node test/integration-full.test.js",
"test:integration:docker": "./scripts/integration-test.sh",
"test:integration:mocha": "mocha",
"test:integration:mocha:shell": "./scripts/test-integration-mocha.sh",
"test:oauth-interactive": "node test/oauth-interactive.test.js",
"test:version": "node test/version.test.js",
"test:cli": "node test/cli.test.js",
"mock-admin": "node test/mock-admin-server.js",
"get-token": "node scripts/get-access-token.js",
"docker:build-local": "scripts/docker-build-local.sh",
"docker:publish": "scripts/docker-publish.sh",
"publish": "scripts/publish.sh --all",
"publish:npm": "scripts/publish.sh --npm",
"publish:docker": "scripts/publish.sh --docker",
"publish:dry-run": "scripts/publish.sh --all --dry-run",
"publish:check-npm": "scripts/publish.sh --check-npm",
"version:patch": "scripts/version-bump.sh patch",
"version:minor": "scripts/version-bump.sh minor",
"version:major": "scripts/version-bump.sh major",
"release:patch": "scripts/version-bump.sh patch --publish",
"release:minor": "scripts/version-bump.sh minor --publish"
},
"keywords": [
"mcp",
"hello",
"cli",
"oauth",
"admin"
],
"author": "Hello Identity Co-op",
"license": "ISC",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@fastify/multipart": "^9.0.1",
"@hellocoop/helper-server": "^2.2.1",
"@hellocoop/identifier": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.15.1",
"fastify": "^5.2.1",
"form-data": "^4.0.1",
"get-port": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"open": "^10.1.2",
"pino-pretty": "^11.0.0"
},
"devDependencies": {
"chai": "^5.2.1",
"chai-http": "^5.1.2",
"mocha": "^11.7.1",
"nodemon": "^3.1.10",
"semver": "^7.7.2"
}
}