Mexican cloud ERP: inventory, purchasing, sales orders, and CFDI invoicing. Your agent runs the full operational cycle in MXN.
Bind ERP gives your agent 20 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_customers β List customerscreate_customer β Create a customerlist_products β List products// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("list_customers", { /* ... */ });$ npm install @codespar/mcp-bind-erpAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"bind-erp": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bind-erp"
],
"env": {
"BIND_API_KEY": "<your_bind_api_key>"
}
}
}
}After restart, your agent can call any of the 20 tools below β try list_customers first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
BIND_API_KEYAPI key for Bind ERP
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_customerscreate_customerlist_productscreate_productlist_invoicescreate_invoicelist_orderscreate_orderMCP is a protocol β any framework that speaks it can mount this server.