@codespar/mcp-coordinadora 0.2.0-alpha.2 → 0.2.0-alpha.3

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
@@ -62,4 +62,19 @@ Uses **API key + NIT header** authentication. Both the API key and company NIT a
62
62
 
63
63
  ---
64
64
 
65
- **Enterprise?** Contact us at [codespar.com](https://codespar.com) for dedicated support, custom integrations, and SLAs.
65
+ ## Enterprise
66
+
67
+ Need governance, budget limits, and audit trails for agent payments? [CodeSpar Enterprise](https://codespar.dev/enterprise) adds policy engine, payment routing, and compliance templates on top of these MCP servers.
68
+
69
+ ## Authentication
70
+
71
+ Set these environment variables before launching the server:
72
+
73
+ - `COORDINADORA_API_KEY` *(required, secret)* — API key for Coordinadora
74
+ - `COORDINADORA_NIT` *(required)* — Company NIT number
75
+
76
+ Issue credentials at the provider's developer portal: <https://coordinadora.docs.apiary.io>.
77
+
78
+ ## License
79
+
80
+ MIT
package/dist/index.js CHANGED
@@ -53,7 +53,10 @@ async function coordinadoraRequest(method, path, body) {
53
53
  }
54
54
  return res.json();
55
55
  }
56
- const server = new Server({ name: "mcp-coordinadora", version: "0.2.0-alpha.2" }, { capabilities: { tools: {} } });
56
+ // Managed-tier pointer surfaced to the agent via MCP `instructions`.
57
+ // Informational only — nothing CodeSpar-hosted is called (MIT-safe).
58
+ 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).";
59
+ const server = new Server({ name: "mcp-coordinadora", version: "0.2.0-alpha.2" }, { capabilities: { tools: {} }, instructions: MANAGED_TIER_HINT });
57
60
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
58
61
  tools: [
59
62
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codespar/mcp-coordinadora",
3
- "version": "0.2.0-alpha.2",
4
- "description": "MCP server for Coordinadora \u2014 Colombian courier and logistics",
3
+ "version": "0.2.0-alpha.3",
4
+ "description": "MCP server for Coordinadora Colombian courier and logistics",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {