{
  "info": {
    "name": "Elorus — mcp.ai",
    "description": "REST API for the Elorus MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/elorus",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "elorus_create_invoice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/invoice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "invoice"
          ]
        },
        "description": "Creates a new invoice or receipt in Elorus. Invoices are automatically saved as drafts by default and use the 'initial' calculation mode (amounts specified before taxes). Required: issue_date, currenc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"kind\": \"\",\n  \"tags\": \"\",\n  \"items\": \"\",\n  \"notes\": \"\",\n  \"discount\": 0,\n  \"client_id\": \"\",\n  \"series_id\": \"\",\n  \"issue_date\": \"\",\n  \"currency_id\": \"\",\n  \"payable_date\": \"\",\n  \"document_number\": \"\",\n  \"contact_address_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_create_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "product"
          ]
        },
        "description": "Create a new product or service in Elorus. Use this to add items to your product catalog with pricing, tax settings, and inventory management options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"sales\": false,\n  \"stock\": \"\",\n  \"title\": \"\",\n  \"active\": false,\n  \"manage\": false,\n  \"custom_id\": \"\",\n  \"purchases\": false,\n  \"sale_taxes\": \"\",\n  \"sale_value\": \"\",\n  \"taric_code\": \"\",\n  \"description\": \"\",\n  \"unit_measure\": \"\",\n  \"purchase_taxes\": \"\",\n  \"purchase_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_email_invoice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/email/invoice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "email",
            "invoice"
          ]
        },
        "description": "Tool to email an existing invoice to specified contacts. Use after generating an invoice and obtaining contact IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cc\": \"\",\n  \"bcc\": \"\",\n  \"contacts\": \"\",\n  \"email_body\": \"\",\n  \"invoice_id\": 0,\n  \"email_subject\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_bills",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bills",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bills"
          ]
        },
        "description": "Retrieve a paginated list of bills (expenses/purchases) from Elorus. Supports filtering by supplier, date range, status, and text search. Use this to view and manage bills created in your organization",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"period\": \"\",\n  \"search\": \"\",\n  \"status\": \"\",\n  \"ordering\": \"\",\n  \"supplier\": \"\",\n  \"page_size\": 0,\n  \"period_to\": \"\",\n  \"period_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contacts"
          ]
        },
        "description": "Tool to retrieve a list of contacts. Use after authentication to fetch contacts in batches. Example: 'List page 2 of active company contacts sorted by name.'",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"search\": \"\",\n  \"order_by\": \"\",\n  \"statuses\": \"\",\n  \"is_company\": false,\n  \"sort_order\": \"\",\n  \"contact_ids\": \"\",\n  \"custom_fields\": {},\n  \"show_archived\": false,\n  \"items_per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_credit_notes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credit/notes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credit",
            "notes"
          ]
        },
        "description": "Tool to retrieve a list of credit notes. Use when you need to fetch credit notes filtered by page, contact, date range, or currency.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"contact\": 0,\n  \"currency\": \"\",\n  \"page_size\": 0,\n  \"issued_on__gte\": \"\",\n  \"issued_on__lte\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_email_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/email/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "email",
            "templates"
          ]
        },
        "description": "Tool to retrieve a list of email templates. Use when you need to fetch and page through existing templates in the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_estimates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/estimates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "estimates"
          ]
        },
        "description": "Tool to retrieve a list of estimates. Use when you need to list estimates with pagination after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_invoices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/invoices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "invoices"
          ]
        },
        "description": "Retrieves a paginated list of invoices from Elorus with flexible filtering options. Use this tool to: - List all invoices or filter by client, status, date ranges, currency, or tags - Paginate through",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"tags\": \"\",\n  \"number\": \"\",\n  \"status\": \"\",\n  \"contact\": \"\",\n  \"currency\": \"\",\n  \"ordering\": \"\",\n  \"page_size\": 0,\n  \"due_date__gte\": \"\",\n  \"due_date__lte\": \"\",\n  \"issue_date__gte\": \"\",\n  \"issue_date__lte\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "products"
          ]
        },
        "description": "Tool to retrieve a list of products/services with optional filtering, sorting, and pagination. Use when you need to fetch products for reports, UI lists, or inventory management.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"filter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_taxes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/taxes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "taxes"
          ]
        },
        "description": "Tool to retrieve a list of taxes. Use after authentication to list taxes with optional filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_get_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "templates"
          ]
        },
        "description": "Retrieves document templates used for formatting invoices, estimates, credit notes, and other business documents in Elorus. Templates define the visual layout, language, company branding, and default ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elorus_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact"
          ]
        },
        "description": "Update an existing contact in Elorus by ID. Allows modifying contact details such as name, company, addresses, and communication preferences. Use this tool when you need to: - Update contact informati",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"email\": \"\",\n  \"phones\": \"\",\n  \"company\": \"\",\n  \"addresses\": \"\",\n  \"custom_id\": \"\",\n  \"is_client\": false,\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"profession\": \"\",\n  \"vat_number\": \"\",\n  \"is_supplier\": false,\n  \"default_language\": \"\",\n  \"default_currency_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}