Lightweight ERP for e-commerce: products, orders, NF-e, stock control, and accounts payable. Built for small Brazilian sellers.
Tiny ERP gives your agent 21 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_products β List products in Tiny ERPget_product β Get product details by IDlist_orders β List sales orders in Tiny ERP// 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-tinyAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"tiny": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-tiny"
],
"env": {
"TINY_API_TOKEN": "<your_tiny_api_token>"
}
}
}
}After restart, your agent can call any of the 21 tools below β try list_products first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
TINY_API_TOKENAPI key for tiny
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_productsget_productlist_ordersget_orderlist_contactsget_contactcreate_invoiceget_invoiceMCP is a protocol β any framework that speaks it can mount this server.