@carbonvoice/cv-mcp-server 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap.js +0 -0
- package/dist/carbon-voice.js +0 -0
- package/dist/constants.js +0 -0
- package/dist/index-v1.js +0 -0
- package/dist/server-delete.js +0 -0
- package/dist/server-test.js +0 -0
- package/dist/server.js +0 -0
- package/dist/sse.js +0 -0
- package/dist/sse.v2.js +0 -0
- package/package.json +6 -4
package/dist/bootstrap.js
CHANGED
|
File without changes
|
package/dist/carbon-voice.js
CHANGED
|
File without changes
|
package/dist/constants.js
CHANGED
|
File without changes
|
package/dist/index-v1.js
CHANGED
|
File without changes
|
package/dist/server-delete.js
CHANGED
|
File without changes
|
package/dist/server-test.js
CHANGED
|
File without changes
|
package/dist/server.js
CHANGED
|
File without changes
|
package/dist/sse.js
CHANGED
|
File without changes
|
package/dist/sse.v2.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbonvoice/cv-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"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)",
|
|
5
5
|
"author": "Carbon Voice",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"private": false,
|
|
8
8
|
"homepage": "https://getcarbon.app",
|
|
9
9
|
"bugs": "https://github.com/PhononX/cv-mcp-server/issues",
|
|
10
|
-
"main": "dist/stdio.js",
|
|
10
|
+
"main": "./dist/stdio.js",
|
|
11
11
|
"bin": {
|
|
12
|
-
"
|
|
12
|
+
"server-carbonvoice": "dist/stdio.js"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "rm -rf dist && tsc && chmod
|
|
15
|
+
"build": "shx rm -rf dist && tsc && shx chmod +x dist/*.js",
|
|
16
|
+
"prepare": "npm run build",
|
|
16
17
|
"start": "node dist/index.js",
|
|
17
18
|
"pre": "npm run build",
|
|
18
19
|
"mcp:inspector": "npx --env-file=.env @modelcontextprotocol/inspector node dist/stdio.js",
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
"nodemon": "^3.1.10",
|
|
58
59
|
"orval": "^7.9.0",
|
|
59
60
|
"prettier": "^3.5.3",
|
|
61
|
+
"shx": "^0.4.0",
|
|
60
62
|
"ts-node": "^10.9.2",
|
|
61
63
|
"ts-node-dev": "^2.0.0",
|
|
62
64
|
"typescript": "^5.8.3",
|