@velaro/mcp-server 0.4.0 → 0.6.9

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.
Files changed (4) hide show
  1. package/README.md +0 -5
  2. package/package.json +43 -32
  3. package/server.js +7739 -952
  4. package/server.json +37 -0
package/server.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.velaro/mcp-server",
4
+ "description": "Velaro MCP server — connect Claude and other AI agents directly to your Velaro account: knowledge base, workflows, bots, conversations, contacts, routing, and 596 AI skills across 20+ commerce and CRM platforms.",
5
+ "title": "Velaro",
6
+ "websiteUrl": "https://velaro.com",
7
+ "repository": {
8
+ "url": "https://github.com/velaro/velaro-admin",
9
+ "source": "github"
10
+ },
11
+ "version": "0.6.0",
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "registryBaseUrl": "https://registry.npmjs.org",
16
+ "identifier": "@velaro/mcp-server",
17
+ "version": "0.6.0",
18
+ "transport": {
19
+ "type": "stdio"
20
+ },
21
+ "environmentVariables": [
22
+ {
23
+ "name": "VELARO_MCP_KEY",
24
+ "description": "Velaro API service key (starts with vel_live_) — generate one from Velaro Admin > Settings > API Keys, or via `velaro mcp-key install`.",
25
+ "isRequired": true,
26
+ "isSecret": true
27
+ }
28
+ ]
29
+ }
30
+ ],
31
+ "remotes": [
32
+ {
33
+ "type": "streamable-http",
34
+ "url": "https://api-admin-us-east.velaro.com/mcp"
35
+ }
36
+ ]
37
+ }