package.json•4.43 kB
{
"name": "@carbonvoice/cv-mcp-server",
"version": "2.7.0",
"description": "Server implementation for integrating with Carbon Voice's API, providing tools and endpoints for voice messaging, conversations, and workspace management through MCP (Model Context Protocol)",
"author": "Carbon Voice",
"license": "ISC",
"private": false,
"homepage": "https://getcarbon.app",
"bugs": "https://github.com/PhononX/cv-mcp-server/issues",
"main": "./dist/transports/stdio/stdio.js",
"bin": {
"cv-mcp-server": "./dist/transports/stdio/stdio.js"
},
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.build.json && shx chmod +x dist/transports/stdio/stdio.js",
"build:check": "tsc --noEmit",
"prepare": "npm run build",
"lint:fix": "eslint src --fix",
"mcp:inspector:stdio": "env-cmd npx @modelcontextprotocol/inspector node ./dist/transports/stdio/stdio.js",
"mcp:inspector:http": "env-cmd npx @modelcontextprotocol/inspector http://localhost:3005",
"dev:http": "env-cmd nodemon --inspect dist/transports/http/streamable.js",
"start:http": "node dist/transports/http/streamable.js",
"auto:build": "env-cmd nodemon --watch src --ext ts --exec npm run build",
"generate:api": "env-cmd orval --config orval.config.ts",
"test:oauth": "node test-oauth.js",
"test": "FORCE_COLOR=1 jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "jest --testPathPattern=e2e",
"version:check": "echo \"Current version: $(jq -r .version package.json)\"",
"version:patch": "npm version patch && git push origin develop",
"version:minor": "npm version minor && git push origin develop",
"version:major": "npm version major && git push origin develop",
"release:patch": "git checkout develop && git pull origin develop && npm run test && npm run build && npm version patch && git push origin develop && git checkout main && git merge develop && git push origin main && git checkout develop",
"release:minor": "git checkout develop && git pull origin develop && npm run test && npm run build && npm version minor && git push origin develop && git checkout main && git merge develop && git push origin main && git checkout develop",
"release:major": "git checkout develop && git pull origin develop && npm run test && npm run build && npm version major && git push origin develop && git checkout main && git merge develop && git push origin main && git checkout develop",
"deploy:release": "git checkout develop && git pull origin develop && npm run test && npm run build && git push origin develop && git checkout main && git merge develop && git push origin main && git checkout develop"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"mcp-server",
"mcp-server-carbonvoice",
"carbonvoice",
"carbonvoice-mcp-server",
"stdio",
"http",
"streamable"
],
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.844.0",
"@modelcontextprotocol/sdk": "^1.15.1",
"axios": "^1.9.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"openapi-zod-client": "^1.18.3",
"winston": "^3.17.0",
"winston-cloudwatch": "^6.3.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@orval/zod": "^7.9.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/handlebars": "^4.0.40",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.15.29",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"env-cmd": "^10.1.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.2.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"orval": "^7.9.0",
"prettier": "^3.5.3",
"shx": "^0.3.4",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"zod": "^3.25.58"
}
}