{
  "info": {
    "name": "Odoo — mcp.ai",
    "description": "REST API for the Odoo 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/odoo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "odoo_call_odoo_jsonrpc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/call/odoo/jsonrpc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "call",
            "odoo",
            "jsonrpc"
          ]
        },
        "description": "JSON-RPC endpoint for Odoo external API calls. Provides the same functionality as XML-RPC but with JSON encoding. DEPRECATED in v19.0 and scheduled for removal in v20.0 (Fall 2026). Use JSON-2 API at ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"args\": \"\",\n  \"method\": \"\",\n  \"service\": \"\",\n  \"database\": \"\",\n  \"request_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Create a new contact (customer, supplier, or generic partner) in Odoo's res.partner model. Use this action when you need to add a new person or company to the Odoo database. Set customer_rank > 0 to m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tz\": \"\",\n  \"ref\": \"\",\n  \"vat\": \"\",\n  \"city\": \"\",\n  \"lang\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"title\": 0,\n  \"mobile\": \"\",\n  \"street\": \"\",\n  \"comment\": \"\",\n  \"street2\": \"\",\n  \"website\": \"\",\n  \"function\": \"\",\n  \"state_id\": 0,\n  \"zip_code\": \"\",\n  \"parent_id\": 0,\n  \"country_id\": 0,\n  \"is_company\": false,\n  \"company_type\": \"\",\n  \"customer_rank\": 0,\n  \"supplier_rank\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_get_applicant_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/applicant/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "applicant",
            "result"
          ]
        },
        "description": "Tool to retrieve parsing results for a previously submitted resume/applicant document. Use when you need to check the status and get extracted fields (name, email, phone, mobile) from a resume that wa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"account_token\": \"\",\n  \"document_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_get_bank_statement_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bank/statement/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bank",
            "statement",
            "result"
          ]
        },
        "description": "Tool to retrieve parsing results for a previously submitted bank statement. Returns extracted fields including balance_start, balance_end, date, and bank_statement_lines. Use when you need to check th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"account_token\": \"\",\n  \"document_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_get_expense_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/expense/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "expense",
            "result"
          ]
        },
        "description": "Retrieve parsing results for a previously submitted expense document. Returns extracted fields including description, country, date, total, and currency. Use this after submitting an expense document ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"account_token\": \"\",\n  \"document_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_get_invoice_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/invoice/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "invoice",
            "result"
          ]
        },
        "description": "Tool to retrieve parsing results for a previously submitted invoice from Odoo Extract API. Use when you need to check the status and get extracted data from an invoice. Poll this endpoint until the st",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"account_token\": \"\",\n  \"document_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_list_databases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/databases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "databases"
          ]
        },
        "description": "Tool to list all available Odoo databases on the server. Use when you need to see which databases are available on the Odoo instance.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_parse_applicant",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/applicant",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "applicant"
          ]
        },
        "description": "Tool to submit a resume/CV document for OCR parsing and data extraction via Odoo Extract API. Extracts name, email, phone, and mobile from applicant resumes. Returns a document_token to poll for resul",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"document\": \"\",\n  \"request_id\": \"\",\n  \"account_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_parse_bank_statement",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/bank/statement",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "bank",
            "statement"
          ]
        },
        "description": "Tool to submit a bank statement document for OCR parsing and data extraction via Odoo Extract API. Extracts balance_start, balance_end, date, and bank_statement_lines. Returns a document_token to poll",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"documents\": \"\",\n  \"request_id\": \"\",\n  \"account_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_parse_expense",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/expense",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "expense"
          ]
        },
        "description": "Tool to submit an expense document for OCR parsing and data extraction. Extracts description, country, date, total, and currency from expense receipts. Returns a document_token to poll for results. Us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"documents\": \"\",\n  \"account_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_parse_invoice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/invoice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "invoice"
          ]
        },
        "description": "Tool to submit an invoice document for OCR parsing and data extraction via Odoo Extract API. Uses AI-based algorithms to extract fields like total, due date, invoice lines, VAT numbers, IBAN, supplier",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dbuuid\": \"\",\n  \"version\": 0,\n  \"documents\": \"\",\n  \"request_id\": \"\",\n  \"user_infos\": {},\n  \"webhook_url\": \"\",\n  \"account_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "odoo_update_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "record"
          ]
        },
        "description": "Generic tool to update records across any Odoo model via the JSON-2 API write endpoint. Updates one or more records with the specified field values. Supports all Odoo field types including relational ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"values\": {},\n  \"record_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}