Full ERP: sales orders, accounts payable/receivable, customers, products, and financial entries. Your agent manages the entire back-office.
Omie gives your agent 30 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_customers β List customers from Omie ERPcreate_customer β Create a customer in Omie ERPlist_products β List products from Omie 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_customers", { /* ... */ });$ npm install @codespar/mcp-omieAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"omie": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-omie"
],
"env": {
"OMIE_APP_SECRET": "<your_omie_app_secret>"
}
}
}
}After restart, your agent can call any of the 30 tools below β try list_customers first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
OMIE_APP_SECRETAPI key for omie
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_customerscreate_customerlist_productscreate_productcreate_orderlist_orderslist_invoicesget_financialMCP is a protocol β any framework that speaks it can mount this server.