@coldbirds/mcp-server 1.0.3 → 1.0.5
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/mcp.fallback.json +78 -0
- package/package.json +6 -2
package/dist/mcp.fallback.json
CHANGED
|
@@ -24,6 +24,84 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"tools": [
|
|
27
|
+
{
|
|
28
|
+
"name": "get_dashboard",
|
|
29
|
+
"title": "Get Dashboard",
|
|
30
|
+
"description": "Returns the high-level account dashboard: active campaign count, sends today, 7-day open/reply/bounce rates, a 14-day daily-send series, and the top 5 campaigns by sent volume. Use this for 'how is my outreach doing?' style questions.",
|
|
31
|
+
"inputSchema": {
|
|
32
|
+
"type": "object",
|
|
33
|
+
"properties": {
|
|
34
|
+
"timezone": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"description": "IANA timezone (e.g. America/New_York) used to compute the 'sends today' boundary. Defaults to the account's preference, or UTC."
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"additionalProperties": false
|
|
40
|
+
},
|
|
41
|
+
"outputSchema": {
|
|
42
|
+
"type": "object",
|
|
43
|
+
"properties": {
|
|
44
|
+
"activeCampaigns": { "type": "integer", "description": "Campaigns currently in ACTIVE status." },
|
|
45
|
+
"sendsToday": { "type": "integer", "description": "Emails sent since local midnight." },
|
|
46
|
+
"sentLast7d": { "type": "integer" },
|
|
47
|
+
"repliedLast7d": { "type": "integer", "description": "Distinct send jobs with at least one reply (last 7d)." },
|
|
48
|
+
"openedLast7d": { "type": "integer", "description": "Distinct send jobs with at least one open (last 7d)." },
|
|
49
|
+
"bouncedLast7d": { "type": "integer" },
|
|
50
|
+
"replyRate": { "type": "number", "description": "repliedLast7d / sentLast7d (0..1)." },
|
|
51
|
+
"openRate": { "type": "number", "description": "openedLast7d / sentLast7d (0..1)." },
|
|
52
|
+
"dailySends": {
|
|
53
|
+
"type": "array",
|
|
54
|
+
"description": "14 daily buckets, oldest first.",
|
|
55
|
+
"items": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"properties": {
|
|
58
|
+
"date": { "type": "string", "description": "UTC YYYY-MM-DD." },
|
|
59
|
+
"sent": { "type": "integer" },
|
|
60
|
+
"replied": { "type": "integer" }
|
|
61
|
+
},
|
|
62
|
+
"required": ["date", "sent", "replied"]
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"topCampaigns": {
|
|
66
|
+
"type": "array",
|
|
67
|
+
"description": "Up to 5 campaigns ranked by sent volume in the last 7d.",
|
|
68
|
+
"items": {
|
|
69
|
+
"type": "object",
|
|
70
|
+
"properties": {
|
|
71
|
+
"id": { "type": "string" },
|
|
72
|
+
"name": { "type": "string" },
|
|
73
|
+
"sent": { "type": "integer" },
|
|
74
|
+
"opened": { "type": "integer" },
|
|
75
|
+
"replied": { "type": "integer" }
|
|
76
|
+
},
|
|
77
|
+
"required": ["id", "name", "sent", "opened", "replied"]
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"required": [
|
|
82
|
+
"activeCampaigns",
|
|
83
|
+
"sendsToday",
|
|
84
|
+
"sentLast7d",
|
|
85
|
+
"repliedLast7d",
|
|
86
|
+
"openedLast7d",
|
|
87
|
+
"bouncedLast7d",
|
|
88
|
+
"replyRate",
|
|
89
|
+
"openRate",
|
|
90
|
+
"dailySends",
|
|
91
|
+
"topCampaigns"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
"annotations": {
|
|
95
|
+
"readOnlyHint": true,
|
|
96
|
+
"destructiveHint": false,
|
|
97
|
+
"idempotentHint": true,
|
|
98
|
+
"openWorldHint": false
|
|
99
|
+
},
|
|
100
|
+
"_http": {
|
|
101
|
+
"method": "GET",
|
|
102
|
+
"path": "/api/v1/dashboard"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
27
105
|
{
|
|
28
106
|
"name": "get_account",
|
|
29
107
|
"title": "Get Account",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coldbirds/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "MCP server for ColdBirds Sequence — control campaigns, contacts, and mailboxes from AI assistants like Claude Desktop, Cursor, and Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"coldbirds",
|
|
@@ -37,7 +37,11 @@
|
|
|
37
37
|
"lint": "eslint src",
|
|
38
38
|
"test": "jest --config jest.config.cjs",
|
|
39
39
|
"test:coverage": "jest --config jest.config.cjs --coverage",
|
|
40
|
-
"prepublishOnly": "npm run build && npm run lint && npm test"
|
|
40
|
+
"prepublishOnly": "npm run build && npm run lint && npm test",
|
|
41
|
+
"release:patch": "npm version patch --no-git-tag-version && npm run release:tag",
|
|
42
|
+
"release:minor": "npm version minor --no-git-tag-version && npm run release:tag",
|
|
43
|
+
"release:major": "npm version major --no-git-tag-version && npm run release:tag",
|
|
44
|
+
"release:tag": "bash scripts/release-tag.sh"
|
|
41
45
|
},
|
|
42
46
|
"dependencies": {
|
|
43
47
|
"@modelcontextprotocol/sdk": "^1.12.1",
|