Endpoint
Connect
Start from the API Integration page in Hermès: it carries the endpoint and the per-assistant steps. One click, from the API Integration pageClaude
Opens Claude with the connector prefilled.
Cursor
Opens Cursor with the server prefilled.
ChatGPT
Settings, Connectors, add a custom connector.
Microsoft Copilot
Add the server in Copilot Studio.
Mistral
Add a custom connector.
Authentication
The server uses OAuth, not the API token used by the REST API. Your assistant opens an OVRSEA sign-in the first time it connects, and every later call carries that user’s own identity as a bearer token. Two consequences worth planning around:- A connection is personal. The assistant sees exactly what that user sees in Hermès, no more. Two colleagues connecting the same assistant get two different views if their Hermès access differs.
- There is no shared service credential. If you need unattended, machine-to-machine access, use the REST API with a token instead.
What your assistant can do
Once connected, the assistant discovers the available tools itself — ask it what it can do and it will tell you, which is always more current than a list written here. The tools divide into two groups: Reading — shipments and their tracking, cargo, pricing, documents and activity; quotations and their PDFs; invoices; saved addresses and contacts; notifications, tasks and pending actions; reporting data; negotiated rates on a lane. Writing — requesting a quote, accepting or declining one, opening a shipment, BL instructions, booking details, cargo-ready and target delivery dates, addresses and contacts, and cancelling a shipment. The complete list, with what each one does, is on Agent actions.Before you automate
Every tool carries MCP annotations describing its effect:readOnlyHint for reads,
destructiveHint for the ones that cannot be undone, idempotentHint for the ones that are safe to
repeat. Interactive assistants normally use these to decide when to ask the user first.
If you are driving the server from something unattended, that prompt does not exist. Read the
annotations yourself, but gate on the action rather than the flag alone. Several tools carry
destructiveHint — among them opening a shipment, sending a booking request, accepting a quote,
replacing or deleting BL instructions, and cancelling a shipment — while declining a quotation
does not, even though it is effectively irreversible: reopening brings the quotation back, not
the prices that were on it.