MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

T
Ticketlens Experiences MCP

Hosted MCP and REST API for discovering tours, tickets, attractions, and activities with TicketLens.

Created 3/26/2026
Updated about 19 hours ago
Repository documentation and setup instructions

TicketLens Experiences MCP

Hosted MCP and REST API for discovering tours, tickets, attractions, and activities with TicketLens.

TicketLens provides a public MCP server at https://mcp.ticketlens.com/ and a versioned REST API at https://api.ticketlens.com/v1 for in-destination experiences, including guided tours, attraction tickets, hop-on hop-off buses, sports tickets, and other event tickets.

Main website: www.ticketlens.com/en

What TicketLens is

  • A developer-facing search surface for destination experiences.
  • Available as both MCP and REST on the same hosted inventory.
  • Designed for AI assistants, travel planning tools, destination discovery flows, and custom integrations.

What the current API/MCP returns

The public tour-named tools and endpoints return a broader destination-experiences catalog, not just guided tours.

search_tours and POST /v1/search/tours can return:

  • guided tours
  • attraction and museum tickets
  • hop-on hop-off bus products
  • sports tickets
  • event and admission products

Current public MCP tools:

  • search_tours
  • search_pois
  • get_tour
  • health_check

Current public REST endpoints:

  • POST /v1/search/tours
  • GET /v1/tours/{tour_id}
  • POST /v1/search/pois
  • GET /v1/pois/{poi_id}
  • GET /v1/livez
  • GET /v1/readyz
  • GET /v1/health
  • GET /v1/openapi.json
  • GET /v1/docs
  • GET /v1/redoc

Hosted MCP quickstart

Hosted MCP URLs:

  • Base URL: https://mcp.ticketlens.com/
  • Canonical server card: https://mcp.ticketlens.com/.well-known/mcp/server-card.json
  • Compatibility alias: https://mcp.ticketlens.com/.well-known/mcp.json

Codex

Add the hosted server from the CLI:

codex mcp add ticketlens-experiences --url https://mcp.ticketlens.com/

If you manage Codex MCP servers through config files, start from examples/mcp/codex-config.toml.

Cursor

Add the hosted MCP URL to your Cursor MCP config. A ready-to-copy example is in examples/mcp/cursor-mcp.json.

Claude

Claude remote MCP connectors are added from the UI, not through claude_desktop_config.json. Use the hosted URL https://mcp.ticketlens.com/ in Settings > Connectors, or follow the short guide in examples/mcp/claude-connector.md.

Hosted API quickstart

Hosted API URLs:

  • Base URL: https://api.ticketlens.com/v1
  • OpenAPI JSON: https://api.ticketlens.com/v1/openapi.json
  • Swagger UI: https://api.ticketlens.com/v1/docs
  • ReDoc: https://api.ticketlens.com/v1/redoc
  • Committed artifact: openapi/ticketlens-tour-search-api.v1.json

The hosted examples below use the public HTTPS endpoints directly and do not require extra headers in the current public setup.

Step 1: resolve the Eiffel Tower to a canonical TicketLens POI:

curl -sS https://api.ticketlens.com/v1/search/pois \
  -H 'content-type: application/json' \
  -d '{
    "query": "Eiffel Tower",
    "city": "Paris",
    "language": "en",
    "limit": 5
  }'

Step 2: search for Eiffel Tower tickets using the POI from step 1:

curl -sS https://api.ticketlens.com/v1/search/tours \
  -H 'content-type: application/json' \
  -d '{
    "query": "ticket",
    "poi": {
      "id": "660851",
      "match_mode": "exact"
    },
    "city": "Paris",
    "languages": ["en"],
    "per_page": 5
  }'

For destination-specific ticketing flows like the Eiffel Tower, this is useful for agents because TicketLens can surface inventory from the official Eiffel Tower site, including hard-to-find high-season availability when it exists, alongside second-market ticket options in the same search flow.

To filter for travel dates, add a dates object with ISO YYYY-MM-DD values:

curl -sS https://api.ticketlens.com/v1/search/tours \
  -H 'content-type: application/json' \
  -d '{
    "query": "ticket",
    "poi": {
      "id": "660851",
      "match_mode": "exact"
    },
    "city": "Paris",
    "dates": {
      "from_date": "2026-05-15",
      "to_date": "2026-05-17"
    },
    "languages": ["en"],
    "per_page": 5
  }'

Date filtering notes:

  • Use dates.from_date for a single-day search.
  • Use both dates.from_date and dates.to_date for a date range.
  • Dates must use ISO YYYY-MM-DD.
  • dates.flexible_days exists in the schema but is not implemented in the current public version.

MCP tool reference

| Tool | What it does | | --- | --- | | search_tours | Search destination experiences across tours, attraction tickets, hop-on hop-off buses, sports tickets, event tickets, and other activities. | | search_pois | Resolve POIs and aliases before calling search_tours. | | get_tour | Fetch detail for an experience returned by search_tours. | | health_check | Return dependency-aware service health. |

API endpoint reference

| Method | Path | Purpose | | --- | --- | --- | | POST | /v1/search/tours | Search destination experiences, including tours, attraction tickets, hop-on hop-off buses, sports tickets, event tickets, and other activities. | | GET | /v1/tours/{tour_id} | Fetch detail for an experience returned by /v1/search/tours. | | POST | /v1/search/pois | Resolve points of interest before filtering search. | | GET | /v1/pois/{poi_id} | Fetch a canonical POI record by ID. | | GET | /v1/livez | Process liveness check. | | GET | /v1/readyz | Readiness check for infra and search dependencies. | | GET | /v1/health | Richer human-facing diagnostic health. |

Examples by experience type

Ready-to-run curl examples:

General API client examples:

FAQ

Why is the endpoint called tours if it returns tickets too?

The public tour-named tools and endpoints cover destination experiences more broadly, so search_tours and POST /v1/search/tours can return guided tours, attraction tickets, hop-on hop-off buses, sports tickets, event tickets, and other bookable activities.

Access, limits, and support

  • The hosted MCP and API are public and intended for developer evaluation and integration.
  • Fair-use and abuse-protection limits may apply.
  • Open a GitHub issue for broken examples, stale docs, or integration gaps.

Maintenance

This repository is a curated public mirror of documentation, examples, and exported API artifacts. Runtime source remains internal and public-facing artifacts are refreshed from the private source of truth.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/ticketlens/ticketlens-experiences-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "ticketlens-ticketlens-experiences-mcp": { "command": "git", "args": [ "clone", "https://github.com/ticketlens/ticketlens-experiences-mcp" ] } } }