@carbonvoice/cv-mcp-server 2.3.0 → 2.4.0
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/package.json +2 -1
- package/readme.md +27 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbonvoice/cv-mcp-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
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",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"axios": "^1.9.0",
|
|
52
52
|
"cors": "^2.8.5",
|
|
53
53
|
"express": "^5.1.0",
|
|
54
|
+
"express-rate-limit": "^7.5.0",
|
|
54
55
|
"helmet": "^8.1.0",
|
|
55
56
|
"http-errors": "^2.0.0",
|
|
56
57
|
"jsonwebtoken": "^9.0.2",
|
package/readme.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Carbon Voice MCP Server
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://modelcontextprotocol.io) [](https://www.npmjs.com/package/@carbonvoice/cv-mcp-server)
|
|
4
|
+
|
|
5
|
+
A Model Context Protocol (MCP) server implementation for integrating with [Carbon Voice's API](https://api.carbonvoice.app/docs), providing AI assistants with comprehensive tools for voice messaging, conversations, and workspace management.
|
|
6
|
+
|
|
7
|
+
**<img src="https://carbonvoice.app/favicon.ico" alt="Carbon Voice Logo" width="32" height="32" align="center" style="margin-right: 10px;">Carbon Voice**: [https://getcarbon.app](https://getcarbon.app)
|
|
8
|
+
|
|
9
|
+
**<img src="https://pxassets.s3.us-east-2.amazonaws.com/images/swagger-logo.png" alt="Carbon Voice API Logo" width="32" height="32" align="center" style="margin-right: 10px;">API**: [https://api.carbonvoice.app/docs](https://api.carbonvoice.app/docs)
|
|
4
10
|
|
|
5
11
|
## Features
|
|
6
12
|
|
|
@@ -12,6 +18,18 @@ A Model Context Protocol (MCP) server implementation for integrating with Carbon
|
|
|
12
18
|
- **AI Actions**: Run AI prompts and retrieve AI-generated responses
|
|
13
19
|
- **Attachment Support**: Add link attachments to messages
|
|
14
20
|
|
|
21
|
+
## Security & Compliance
|
|
22
|
+
|
|
23
|
+
This server fully complies with [MCP Security Best Practices](https://modelcontextprotocol.io/specification/draft/basic/security_best_practices):
|
|
24
|
+
|
|
25
|
+
- **OAuth 2.1 Authentication**: Secure authorization flow with proper token handling
|
|
26
|
+
- **HTTPS Enforcement**: All remote endpoints served over HTTPS
|
|
27
|
+
- **Session Security**: Cryptographically secure session management
|
|
28
|
+
- **Input Validation**: Comprehensive validation of all user inputs
|
|
29
|
+
- **Rate Limiting**: Built-in protection against abuse
|
|
30
|
+
|
|
31
|
+
For security concerns, please contact: devsupport@phononx.com
|
|
32
|
+
|
|
15
33
|
## Prerequisites
|
|
16
34
|
|
|
17
35
|
### For Stdio Transport (Local Installation)
|
|
@@ -425,16 +443,21 @@ npm run release:minor
|
|
|
425
443
|
- **Use semantic versioning**: patch for fixes, minor for features, major for breaking changes
|
|
426
444
|
- **Always test** with both stdio and HTTP transports before releasing
|
|
427
445
|
|
|
446
|
+
## MCP Compliance
|
|
447
|
+
|
|
448
|
+
This server is fully compliant with the [Model Context Protocol specification](https://modelcontextprotocol.io) and follows all security best practices outlined in the official documentation. The implementation supports both stdio and HTTP transports as defined in the MCP specification.
|
|
449
|
+
|
|
428
450
|
## Support
|
|
429
451
|
|
|
430
452
|
- **Issues**: [GitHub Issues](https://github.com/PhononX/cv-mcp-server/issues)
|
|
431
453
|
- **API Key Requests**: devsupport@phononx.com
|
|
432
|
-
- **
|
|
454
|
+
- **Carbon Voice Platform**: [https://getcarbon.app](https://getcarbon.app)
|
|
455
|
+
- **API Documentation**: [https://api.carbonvoice.app/docs](https://api.carbonvoice.app/docs)
|
|
433
456
|
|
|
434
457
|
## License
|
|
435
458
|
|
|
436
|
-
ISC License - See LICENSE file for details.
|
|
459
|
+
ISC License - See [LICENSE](LICENSE) file for details.
|
|
437
460
|
|
|
438
461
|
---
|
|
439
462
|
|
|
440
|
-
**Note**: This MCP server requires a valid Carbon Voice API key to function.
|
|
463
|
+
**Note**: This MCP server requires a valid Carbon Voice API key to function with stdio transport. For HTTP transport, OAuth2 authentication is handled automatically through the web interface. Please ensure you have the appropriate credentials before attempting to use the server.
|