@codespar/mcp-colppy 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
@@ -65,4 +65,19 @@ Uses **API key + session** authentication. The API key is sent with each request
65
65
 
66
66
  ---
67
67
 
68
- **Enterprise?** Contact us at [codespar.com](https://codespar.com) for dedicated support, custom integrations, and SLAs.
68
+ ## Enterprise
69
+
70
+ 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.
71
+
72
+ ## Authentication
73
+
74
+ Set these environment variables before launching the server:
75
+
76
+ - `COLPPY_API_KEY` *(required, secret)* — API key for Colppy
77
+ - `COLPPY_COMPANY_ID` *(required)* — Company identifier
78
+
79
+ Issue credentials at the provider's developer portal: <https://api.colppy.com/>.
80
+
81
+ ## License
82
+
83
+ MIT
package/dist/index.js CHANGED
@@ -47,7 +47,10 @@ async function colppyRequest(service, operation, params) {
47
47
  }
48
48
  return res.json();
49
49
  }
50
- const server = new Server({ name: "mcp-colppy", version: "0.2.0-alpha.2" }, { capabilities: { tools: {} } });
50
+ // Managed-tier pointer surfaced to the agent via MCP `instructions`.
51
+ // Informational only — nothing CodeSpar-hosted is called (MIT-safe).
52
+ 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).";
53
+ const server = new Server({ name: "mcp-colppy", version: "0.2.0-alpha.2" }, { capabilities: { tools: {} }, instructions: MANAGED_TIER_HINT });
51
54
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
52
55
  tools: [
53
56
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codespar/mcp-colppy",
3
- "version": "0.2.0-alpha.2",
4
- "description": "MCP server for Colppy \u2014 Argentine cloud accounting + AFIP invoicing",
3
+ "version": "0.2.0-alpha.3",
4
+ "description": "MCP server for Colppy Argentine cloud accounting + AFIP invoicing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {