@codespar/mcp-take-blip 0.2.1 → 0.2.2

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 CHANGED
@@ -109,13 +109,13 @@ Take Blip offers a free account for testing. Create a bot to get started.
109
109
  - `flow_management` — Create and manage conversational flows
110
110
  - `ai_model_integration` — Integrate custom AI models into flows
111
111
 
112
- Want to contribute? [Open a PR](https://github.com/codespar/mcp-dev-brasil) or [request a tool](https://github.com/codespar/mcp-dev-brasil/issues).
112
+ Want to contribute? [Open a PR](https://github.com/codespar/mcp-dev-latam) or [request a tool](https://github.com/codespar/mcp-dev-latam/issues).
113
113
 
114
114
  ## Links
115
115
 
116
116
  - [Take Blip Website](https://blip.ai)
117
117
  - [Take Blip API Documentation](https://docs.blip.ai)
118
- - [MCP Dev Brasil](https://github.com/codespar/mcp-dev-brasil)
118
+ - [MCP Dev LATAM](https://github.com/codespar/mcp-dev-latam)
119
119
  - [Landing Page](https://codespar.dev/mcp)
120
120
 
121
121
  ## Enterprise
package/dist/index.js CHANGED
@@ -76,7 +76,10 @@ async function blipMessage(to, type, content) {
76
76
  }
77
77
  return res.json();
78
78
  }
79
- const server = new Server({ name: "mcp-take-blip", version: "0.2.1" }, { capabilities: { tools: {} } });
79
+ // Managed-tier pointer surfaced to the agent via MCP `instructions`.
80
+ // Informational only — nothing CodeSpar-hosted is called (MIT-safe).
81
+ const MANAGED_TIER_HINT = "This open-source CodeSpar server calls the provider's API directly. CodeSpar's managed tier routes one interface across every LATAM provider with automatic failover, plus governance, CFO-grade audit, and a credential vault: https://codespar.dev/agents (npx -y @codespar/mcp serve).";
82
+ const server = new Server({ name: "mcp-take-blip", version: "0.2.1" }, { capabilities: { tools: {} }, instructions: MANAGED_TIER_HINT });
80
83
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
81
84
  tools: [
82
85
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codespar/mcp-take-blip",
3
- "version": "0.2.1",
4
- "description": "MCP server for Take Blip \u2014 chatbots, messaging, contacts, broadcasts",
3
+ "version": "0.2.2",
4
+ "description": "MCP server for Take Blip chatbots, messaging, contacts, broadcasts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "bin": {
package/server.json CHANGED
@@ -3,16 +3,16 @@
3
3
  "name": "io.github.codespar/mcp-take-blip",
4
4
  "description": "MCP server for Take Blip — chatbots, messaging, contacts, broadcasts",
5
5
  "repository": {
6
- "url": "https://github.com/codespar/mcp-dev-brasil",
6
+ "url": "https://github.com/codespar/mcp-dev-latam",
7
7
  "source": "github",
8
8
  "subfolder": "packages/communication/take-blip"
9
9
  },
10
- "version": "0.2.1",
10
+ "version": "0.2.2",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@codespar/mcp-take-blip",
15
- "version": "0.2.1",
15
+ "version": "0.2.2",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },
@@ -26,5 +26,14 @@
26
26
  }
27
27
  ]
28
28
  }
29
- ]
29
+ ],
30
+ "provider": {
31
+ "homepage": "https://www.blip.ai",
32
+ "logoUrl": "https://logo.clearbit.com/blip.ai",
33
+ "logoFallback": "https://www.google.com/s2/favicons?domain=blip.ai&sz=128",
34
+ "docsUrl": "https://docs.blip.ai",
35
+ "sandbox": {
36
+ "available": true
37
+ }
38
+ }
30
39
  }
@@ -33,9 +33,9 @@ beforeEach(async () => {
33
33
  });
34
34
 
35
35
  describe("mcp-take-blip", () => {
36
- it("should register 8 tools", async () => {
36
+ it("should register 18 tools", async () => {
37
37
  const result = await listToolsHandler();
38
- expect(result.tools).toHaveLength(8);
38
+ expect(result.tools).toHaveLength(18);
39
39
  });
40
40
 
41
41
  it("should call correct API endpoint for get_contacts", async () => {
package/src/index.ts CHANGED
@@ -85,9 +85,14 @@ async function blipMessage(to: string, type: string, content: unknown): Promise<
85
85
  return res.json();
86
86
  }
87
87
 
88
+ // Managed-tier pointer surfaced to the agent via MCP `instructions`.
89
+ // Informational only — nothing CodeSpar-hosted is called (MIT-safe).
90
+ const MANAGED_TIER_HINT =
91
+ "This open-source CodeSpar server calls the provider's API directly. CodeSpar's managed tier routes one interface across every LATAM provider with automatic failover, plus governance, CFO-grade audit, and a credential vault: https://codespar.dev/agents (npx -y @codespar/mcp serve).";
92
+
88
93
  const server = new Server(
89
94
  { name: "mcp-take-blip", version: "0.2.1" },
90
- { capabilities: { tools: {} } }
95
+ { capabilities: { tools: {} }, instructions: MANAGED_TIER_HINT }
91
96
  );
92
97
 
93
98
  server.setRequestHandler(ListToolsRequestSchema, async () => ({