Model Context Protocol · HTTP+SSE

supertours.ru tours for AI agents

Public MCP server that lets Claude, Cursor, ChatGPT, Cline, Continue and other agents search tours and excursions on supertours.ru — by destination, price, duration, time of day, kids-allowed, rating and more. Anonymous, read-only, no API key required.

GET (SSE) https://mcp.supertours.ru/sse

Install in one click

Pick your agent — links below pre-fill the MCP server URL for you.

Cursor

Auto-installs the MCP server into your Cursor settings.

Install in Cursor

VS Code (and Cline / Continue)

Same deeplink works in VS Code, Cline marketplace and Continue.

Install in VS Code

Claude Desktop

Claude Desktop talks to remote SSE servers through the mcp-remote proxy. Add to ~/.claude/claude_desktop_config.json (macOS / Linux) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "taktilidu-tours": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.supertours.ru/sse"]
    }
  }
}

ChatGPT (custom GPTs)

In the GPT builder → ConfigureAdd MCP server, paste:

https://mcp.supertours.ru/sse

What's exposed

Seven anonymous read-only tools. Full input schemas and call examples on the tools reference page.

Quick sanity check

The transport is legacy HTTP+SSE (MCP SDK 0.10.0 ships with Spring AI 1.0.0). Open the SSE endpoint and the very first frame announces the message-back URL:

curl -N https://mcp.supertours.ru/sse

# expected first event:
# event: endpoint
# data: https://mcp.supertours.ru/mcp/message?sessionId=...

# then post initialize / tools/list to https://mcp.supertours.ru/mcp/message?sessionId=<the id>

Notes

Prices and availability returned by the server are indicative — please confirm at supertours.ru before booking. Anonymous read-only surface; booking endpoints will be added behind OAuth 2.1 in a follow-up release. Rate limits apply at the proxy layer (60 search calls / minute per IP). Streamable HTTP (POST /mcp) will replace this when Spring AI 1.1.x lands with the newer MCP SDK.