AntevoAntevo

Model Context Protocol

Connect your AI to Antevo.

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.

Your assistant never sees your password. You authorise it once, and you can revoke it at any time.

How it works

Three steps, any assistant.

01  Add the connector

Paste an Antevo address into your assistant's connector settings — or install the Claude plugin in one step.

02  Sign in — if you need to

The Executive Brief is open. For your own data, Antevo's consent screen issues a scoped token — never your credentials.

03  Ask

Ask in plain language. Your plan governs what is visible; nothing changes without your explicit confirmation.

 Works with

Claude · Cursor · VS Code · Goose — and any client that speaks the Model Context Protocol, an open standard.


The connectors

One per product line.

Each Antevo product exposes its own connector, so your assistant sees only what that mandate covers.

Antevo Executive Brief

Live · no account

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

Antevo Wealth

Live

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.

Antevo Trademark

Live · no account

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.

Antevo Mandate

Early access

For external asset managers — client dossiers, mandates, exposure and the advisory desk.

Available to firms on request — contact@antevo.ch.


Add it

One click, or one line.

The Model Context Protocol is an open standard, so these connectors work in any client that speaks it. Pick yours.

Claude — Code, Desktop and claude.ai

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

Cursor

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" }
  }
}
VS Code — GitHub Copilot

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" }
  }
}
Windsurf, Zed, Goose — or anything else

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

Your account. Your permission. Your data.


For developers

Discovery & endpoints.

WhatWhere
Server manifestapi.antevo.ch/.well-known/mcp
OAuth discoveryapi.antevo.ch/.well-known/oauth-authorization-server
Protected resourceapi.antevo.ch/.well-known/oauth-protected-resource
Executive — publicapi.antevo.ch/mcp/executive/mcp
Wealth — all toolsapi.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 toolstrademark.antevo.ch/mcp
Trademark — personal toolsSame endpoint. Generate a token at antevo.ch/trademark → Settings → Connect your AI and send it as Authorization: Bearer ….
Legacy transportEvery 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.