UNPKG

groove-mcp

Version:

Model Context Protocol server for Groove HQ

57 lines 1.37 kB
{ "name": "groove-mcp", "version": "0.1.0", "description": "Model Context Protocol server for Groove HQ", "type": "module", "main": "dist/index.js", "bin": { "groove-mcp": "dist/index.js" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsc --watch", "test": "jest --passWithNoTests", "lint": "eslint src/**/*.ts", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build && npm test" }, "keywords": [ "mcp", "groove", "customer-support", "help-desk" ], "author": "Christian Genco <christian@gen.co>", "repository": { "type": "git", "url": "git+https://github.com/christiangenco/groove-mcp.git" }, "homepage": "https://github.com/christiangenco/groove-mcp#readme", "bugs": { "url": "https://github.com/christiangenco/groove-mcp/issues" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/", "README.md", "LICENSE" ], "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "graphql": "^16.8.1", "graphql-request": "^6.1.0" }, "devDependencies": { "@types/node": "^20.11.0", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0", "eslint": "^8.56.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.3.3" } }