ERP with inventory, orders, NF-e emission, and marketplace integrations. Connects to Mercado Livre, Shopee, and Amazon.
Bling gives your agent 28 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_products β List products in Blingcreate_product β Create a product in Blinglist_categories β List product categories in Bling// 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_products", { /* ... */ });$ npm install @codespar/mcp-blingAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"bling": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bling"
],
"env": {
"BLING_ACCESS_TOKEN": "<your_bling_access_token>"
}
}
}
}After restart, your agent can call any of the 28 tools below β try list_products first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
BLING_ACCESS_TOKENAPI key for bling
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_productscreate_productlist_categoriescreate_categorylist_orderscreate_orderlist_purchase_orderscreate_purchase_orderMCP is a protocol β any framework that speaks it can mount this server.