Skip to content

Connect your assistant

The Altoviz MCP server is hosted at https://mcp.altoviz.com. There is nothing to install — you add it as a remote connector in your AI client and authorize it once.

You need:

  • An Altoviz account with an API key. Create one from the Altoviz web app (see the API authentication guide).
  • An AI client that supports remote MCP servers (ChatGPT, Claude, VS Code, Cursor, …).

The server is protected by OAuth 2.0. The first time a client connects, you are sent to the Altoviz login page where you paste your API key. The client then receives a token it uses for every request — you don’t paste the key into the client itself, and you don’t have to re-authorize on every restart (tokens are refreshed automatically).

Each connection acts on the Altoviz account that the API key belongs to.


These two clients have dedicated, step-by-step guides:

Add the server to your MCP configuration (.vscode/mcp.json in a workspace, or your user settings):

{
"servers": {
"altoviz": {
"type": "http",
"url": "https://mcp.altoviz.com"
}
}
}

Start the server from the MCP view; VS Code opens a browser window for the Altoviz login page where you paste your API key.

Add the server to ~/.cursor/mcp.json (or the project’s .cursor/mcp.json):

{
"mcpServers": {
"altoviz": {
"url": "https://mcp.altoviz.com"
}
}
}

Reopen Cursor’s MCP settings and complete the OAuth sign-in when prompted.

Any client that supports remote MCP servers over Streamable HTTP (or SSE) with OAuth can connect:

Setting Value
Server URL https://mcp.altoviz.com
Transport Streamable HTTP (SSE also supported)
Authentication OAuth 2.0 (Dynamic Client Registration supported)

The client discovers everything it needs from the server’s /.well-known/oauth-protected-resource endpoint.

Once connected, ask your assistant:

“Test my Altoviz connection.”

This runs the TestApiKey tool and returns a greeting if your key is valid. If it fails, see the FAQ & troubleshooting.