@velaro/mcp-server 0.4.0 → 0.6.8
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/README.md +0 -5
- package/package.json +43 -32
- package/server.js +7739 -952
- package/server.json +37 -0
package/README.md
CHANGED
|
@@ -143,11 +143,6 @@ This works with any MCP client that supports HTTP/SSE transport — including Cl
|
|
|
143
143
|
|------|-------------|
|
|
144
144
|
| `kpi_snapshot` | Real-time ops dashboard — agents online/available/busy, open/queued conversations, bot-active count, resolved today, queue wait times, top agents, channel breakdown, per-team coverage status |
|
|
145
145
|
|
|
146
|
-
### CSAT
|
|
147
|
-
| Tool | What It Does |
|
|
148
|
-
|------|-------------|
|
|
149
|
-
| `csat_summary` | Customer satisfaction — avg rating, satisfaction rate, star breakdown, recent verbatim comments |
|
|
150
|
-
|
|
151
146
|
### Bot Diagnostics
|
|
152
147
|
| Tool | What It Does |
|
|
153
148
|
|------|-------------|
|
package/package.json
CHANGED
|
@@ -1,32 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@velaro/mcp-server",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Velaro MCP server — connect Claude and other AI agents directly to your Velaro account: KB, workflows, bots, conversations, contacts, routing, and more.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"velaro-mcp": "server.js"
|
|
8
|
-
},
|
|
9
|
-
"engines": {
|
|
10
|
-
"node": ">=18.0.0"
|
|
11
|
-
},
|
|
12
|
-
"dependencies": {
|
|
13
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
14
|
-
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"start": "node server.js"
|
|
17
|
-
},
|
|
18
|
-
"publishConfig": {
|
|
19
|
-
"access": "public",
|
|
20
|
-
"registry": "https://registry.npmjs.org/"
|
|
21
|
-
},
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "https://github.com/velaro/velaro-admin"
|
|
25
|
-
},
|
|
26
|
-
"keywords": [
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@velaro/mcp-server",
|
|
3
|
+
"version": "0.6.8",
|
|
4
|
+
"description": "Velaro MCP server — connect Claude and other AI agents directly to your Velaro account: KB, workflows, bots, conversations, contacts, routing, and more.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"velaro-mcp": "server.js"
|
|
8
|
+
},
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18.0.0"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@modelcontextprotocol/sdk": "^1.30.0"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"start": "node server.js"
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public",
|
|
20
|
+
"registry": "https://registry.npmjs.org/"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/velaro/velaro-admin"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"velaro",
|
|
28
|
+
"mcp",
|
|
29
|
+
"knowledge-base",
|
|
30
|
+
"claude",
|
|
31
|
+
"ai",
|
|
32
|
+
"model-context-protocol",
|
|
33
|
+
"customer-support",
|
|
34
|
+
"workflows",
|
|
35
|
+
"conversations"
|
|
36
|
+
],
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"files": [
|
|
39
|
+
"server.js",
|
|
40
|
+
"server.json",
|
|
41
|
+
"README.md"
|
|
42
|
+
]
|
|
43
|
+
}
|