Model Context Protocol
Read the Executive Brief, work with your wealth, and follow your mandates — through the assistant you already use. The brief needs no account. Anything about you is secured by your own Antevo sign-in, read-only by default, with confirmation on every change.
How it works
Paste an Antevo address into your assistant's connector settings — or install the Claude plugin in one step.
The Executive Brief is open. For your own data, Antevo's consent screen issues a scoped token — never your credentials.
Ask in plain language. Your plan governs what is visible; nothing changes without your explicit confirmation.
Claude · Cursor · VS Code · Goose — and any client that speaks the Model Context Protocol, an open standard.
The connectors
Each Antevo product exposes its own connector, so your assistant sees only what that mandate covers.
Editorial market and world intelligence — today's read, the regime, the themes that matter, and a dated archive going back. Ask what's happening now, or how a story developed over months.
Add it — nothing to sign in to
https://api.antevo.ch/mcp/executive/mcp
Your portfolios, net worth and real assets — plus the analysis that sits on top: risk and stress, leverage and covenants, markets, equity and technical research, geopolitics, your watchlist, your goals and the daily brief.
One connection, one sign-in
https://api.antevo.ch/mcp/wealth/mcp
Per-domain endpoints
(/mcp/portfolio/core/mcp, /mcp/intelligence/geo/mcp, …)
remain available if you want a narrower tool set.
Screen a brand name across the registers, read who holds a mark and how they file, and check how long you have to oppose in any of twenty offices — including which of them run the window from registration rather than publication.
Add it — nothing to sign in to
https://trademark.antevo.ch/mcp
Your own conflicts, deadlines and watch list arrive next, behind an Antevo sign-in — read-only, and never your password. Everything here is read from public registers: intelligence, not legal advice, and your counsel confirms any date before you act on it.
For external asset managers — client dossiers, mandates, exposure and the advisory desk.
Available to firms on request — contact@antevo.ch.
Add it
The Model Context Protocol is an open standard, so these connectors work in any client that speaks it. Pick yours.
The only client where you get the skills as well as the tools — a portfolio review, a stress radar, a security read, a geopolitical read, the risk radar, the morning note. One install wires up both.
# add the marketplace, once /plugin marketplace add ANTEVO-CH/plugins # install what you need /plugin install antevo-executive@antevo # public — nothing to sign in to /plugin install antevo-trademark@antevo # screening public; watchlist needs a token /plugin install antevo-wealth@antevo # your account — OAuth on first use
Source: github.com/ANTEVO-CH/plugins
One click adds it to your
mcp.json — Cursor shows an approval dialog first.
Add Executive Brief Add Trademark Add Wealth
Or add it by hand in
~/.cursor/mcp.json:
{
"mcpServers": {
"antevo-executive": { "url": "https://api.antevo.ch/mcp/executive/mcp" }
}
}
Add Executive Brief Add Trademark Add Wealth
Or in .vscode/mcp.json:
{
"servers": {
"antevo-executive": { "type": "http", "url": "https://api.antevo.ch/mcp/executive/mcp" }
}
}
Any MCP client takes a remote server URL. Point it at the connector you want; the personal ones advertise OAuth and the client walks you through sign-in.
https://api.antevo.ch/mcp/executive/mcp # public brief, no account https://trademark.antevo.ch/mcp # screening public https://api.antevo.ch/mcp/wealth/mcp # your account, one sign-in
Registered in the official MCP Registry as
ch.antevo/executive and ch.antevo/wealth, so clients that
read the registry can find them by name.
Security & privacy
For developers
| What | Where |
|---|---|
| Server manifest | api.antevo.ch/.well-known/mcp |
| OAuth discovery | api.antevo.ch/.well-known/oauth-authorization-server |
| Protected resource | api.antevo.ch/.well-known/oauth-protected-resource |
| Executive — public | api.antevo.ch/mcp/executive/mcp |
| Wealth — all tools | api.antevo.ch/mcp/wealth/mcp |
| Wealth — by domain | /mcp/portfolio/core · /mcp/portfolio/risk · /mcp/portfolio/credit · /mcp/markets/equity · /mcp/markets/technical · /mcp/intelligence/geo · … each at /mcp |
| Trademark — public tools | trademark.antevo.ch/mcp |
| Trademark — personal tools | Same endpoint. Generate a token at antevo.ch/trademark → Settings → Connect your AI and send it as Authorization: Bearer …. |
| Legacy transport | Every api.antevo.ch endpoint also answers HTTP+SSE at /sse — deprecated in the MCP spec, kept for existing clients. Trademark is Streamable HTTP only. |
Transport is Streamable HTTP. Authorisation
follows the MCP spec: an unauthenticated request to a personal endpoint returns
401 with a WWW-Authenticate challenge pointing at the
protected-resource metadata, so compliant clients discover and complete sign-in on
their own. Dynamic client registration and the device flow are both supported. The
public Executive endpoint needs no token and is rate limited.