Settings

The agent runs on Claude. Your key is kept in this browser's local storage and is only forwarded to Anthropic when you ask a question — it is never stored on any server.

No key stored yet.

MCP connector — connect your own client

This app also publishes its ERP tools over the Model Context Protocol, so Claude, Cursor or any MCP-capable client can query the same data directly — no key from this page required.

Server URL
https://wizard-agent.stennir.com/mcp

Claude Desktop / Cursor

  1. Open the client's MCP settings (Claude Desktop: Settings → Developer → Edit Config).
  2. Add the block below to the config file and save.
  3. Restart the client — the Wizard ERP tools appear in the tool picker.
claude_desktop_config.json
{
  "mcpServers": {
    "wizard-erp": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://wizard-agent.stennir.com/mcp"]
    }
  }
}

Clients with native remote-MCP support (Claude web/team connectors, Cursor "Add MCP server" → URL) can skip the config and paste the server URL directly.

Tools exposed

  • list_datasetsSee every ERP dataset the agent can read.
  • describe_schemaFind the right dataset and exact column names for a topic.
  • search_entitiesLook up customers, suppliers, products or accounts by name.
  • query_datasetFilter, sort and page through rows of any dataset.
  • aggregateSum, count or average — grouped by customer, month, product…
  • compare_periodsPeriod-over-period deltas (this month vs last, YoY).
  • get_documentPull one invoice / order with all of its lines.
  • resolve_referenceTurn internal IDs into readable names.

The connector is public and unauthenticated — it serves only the Cedrus Trading SAL demo dataset. Add authentication before pointing it at a real ERP tenant.

Where the data comes from

The app queries a bundled mock of Cedrus Trading SAL — 20 months of coherent ERP history served as static JSON, matching the real ERP Wizard API contract (column names, operators, aux keys and all). No database and no live connection. When the production API is ready, only the data layer changes.