Preo · Model Context Protocol

Connect your AI assistant to Preo

This is the Preo MCP server. It lets an AI client — Claude, Cursor, or anything else that speaks the Model Context Protocol — read and act on your event data: editions, products, orders and more. You approve the connection once in Preo and choose exactly what it may do.

Server URL https://mcp.preo.cloud/mcp

That URL is the protocol endpoint, not a web page — paste it into your MCP client. Transport is streamable HTTP, and authorization is OAuth 2.1, so there is no API key to copy anywhere.

How to connect

Add it to your client as a remote MCP server (some clients call this an HTTP or streamable-HTTP server, or a custom connector) using the URL above. The first time the client connects, a browser window opens on Preo, you sign in, and you pick which permissions to hand over. From then on the client holds a token and connects on its own.

Claude Desktop and other clients with a connector UI

  1. Open the client's settings and look for Connectors, Integrations, or MCP servers.
  2. Add a custom / remote server and paste https://mcp.preo.cloud/mcp.
  3. Finish the sign-in and approval that opens in your browser.

Clients configured with a JSON file

Cursor (~/.cursor/mcp.json), Claude Code (.mcp.json) and others take the same shape:

{
  "mcpServers": {
    "preo": {
      "type": "http",
      "url": "https://mcp.preo.cloud/mcp"
    }
  }
}

Claude Code, from the terminal

claude mcp add --transport http preo https://mcp.preo.cloud/mcp

MCP clients differ in where they keep this configuration and what they call it. If the snippets above do not match your version, check your client's own documentation — all it needs from us is the server URL, and every other detail is the client's.