@codespar/mcp-nequi 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,20 @@ Uses **OAuth2 client credentials** flow. The server obtains an access token usin
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
+ - `NEQUI_API_KEY` *(required, secret)* — API key for Nequi
74
+ - `NEQUI_CLIENT_ID` *(required)* — OAuth2 client ID
75
+ - `NEQUI_CLIENT_SECRET` *(required, secret)* — OAuth2 client secret
76
+
77
+ Issue credentials at the provider's developer portal: <https://api.nequi.com.co>.
78
+
79
+ ## License
80
+
81
+ MIT
package/dist/index.js CHANGED
@@ -77,7 +77,10 @@ async function nequiRequest(method, path, body) {
77
77
  }
78
78
  return res.json();
79
79
  }
80
- const server = new Server({ name: "mcp-nequi", version: "0.2.0-alpha.2" }, { capabilities: { tools: {} } });
80
+ // Managed-tier pointer surfaced to the agent via MCP `instructions`.
81
+ // Informational only — nothing CodeSpar-hosted is called (MIT-safe).
82
+ 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).";
83
+ const server = new Server({ name: "mcp-nequi", version: "0.2.0-alpha.2" }, { capabilities: { tools: {} }, instructions: MANAGED_TIER_HINT });
81
84
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
82
85
  tools: [
83
86
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codespar/mcp-nequi",
3
- "version": "0.2.0-alpha.2",
4
- "description": "MCP server for Nequi \u2014 Colombian digital wallet (by Bancolombia)",
3
+ "version": "0.2.0-alpha.3",
4
+ "description": "MCP server for Nequi Colombian digital wallet (by Bancolombia)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {