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.
Pick your agent — links below pre-fill the MCP server URL for you.
Same deeplink works in VS Code, Cline marketplace and Continue.
Install in VS CodeClaude 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"]
}
}
}
In the GPT builder → Configure → Add MCP server, paste:
https://mcp.supertours.ru/sse
Seven anonymous read-only tools. Full input schemas and call examples on the tools reference page.
search_tours — filter by destination, category, price, duration, time of day, activity level, kids-allowedget_tour — full description, schedule, photos, tariffs by slug or UUIDget_trending_tours — most-viewed tours (default rotation)get_tour_reviews — user reviews, rating and trip dateslist_tour_categories — resolve user phrases like "wine tasting" to category IDslist_regions — Russian regions with timezone (use to scope a search to a federal subject)list_settlements — autocomplete cities/towns to settlement IDs (Russian and international)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>
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.