CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

GetExperience

skurakov/getexperience-mcp
authSSEregistry active
Summary

Connects Claude to GetExperience's travel marketplace covering 40+ countries. Exposes six tools: search experiences by location and filters, pull details and schedules with pricing, build a cart, and create orders. Works without an API key for browsing the catalog. B2B partners get instant booking confirmation with API key access, settling payments separately via invoice. Supports both markdown and JSON response formats, with structured data blocks embedded in markdown for programmatic parsing. Runs as a hosted remote server over streamable HTTP, so there's nothing to install. Useful if you're building travel booking into an AI assistant or automating tour search for concierge services.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

GetExperience MCP Server

MCP server for GetExperience.com — a marketplace of tours and unique travel experiences in 40+ countries.

Search, browse, and book real tours and activities directly from any AI assistant via the Model Context Protocol.

Who is this for

  • AI assistants and chatbots — add travel booking capabilities to your product
  • Travel agencies and concierge services — automate tour search and booking through AI
  • Developers building AI agents — plug in a ready-made travel API via MCP

Free access (no API key)

Browse the full catalog: search experiences, view details, check schedules and pricing. Works out of the box — just connect to the endpoint. Instant payment and booking for anyone through the chat — coming soon.

B2B partner integration

Book tours on behalf of your customers — instant confirmation, no guest payment required. Your company settles with GetExperience separately (invoice/balance).

To get started as a B2B partner, contact us at bookings@getexperience.com — we'll issue your API key the same day.

Server URL

https://getexperience.com/mcp

Transport: Streamable HTTP (since v0.7.0). No installation required — it's a hosted remote server.

Migrating from SSE? See CHANGELOG.md for the full before/after comparison.

Quick Start

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "getexperience": {
      "type": "streamablehttp",
      "url": "https://getexperience.com/mcp"
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "getexperience": {
      "type": "streamablehttp",
      "url": "https://getexperience.com/mcp"
    }
  }
}

Any MCP Client

Point your MCP client to:

https://getexperience.com/mcp

No API key required for browsing. For B2B booking, add X-Api-Key header:

{
  "mcpServers": {
    "getexperience": {
      "type": "streamablehttp",
      "url": "https://getexperience.com/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY"
      }
    }
  }
}

Tools

ToolDescription
search_experiencesSearch tours by location, category, date, price, guests, language
get_experience_detailsFull details: description, photos, pricing, duration, languages, rating
get_experience_scheduleAvailable time slots and pricing for a specific date
add_to_checkoutAdd an experience to the cart
get_checkoutView current cart contents
create_orderPlace the final booking (B2B instant or B2C via Stripe)

Full parameters, response schemas, and examples: TOOLS.md

Booking Flow

search_experiences → get_experience_schedule → add_to_checkout → create_order
  1. Search — find experiences by location, category, dates
  2. Schedule — pick a date, get available time slots with prices
  3. Add to cart — choose a slot, specify guests
  4. Order — place the booking (B2C via Stripe, or B2B with API key)

B2C (Guest pays by card)

Set paymentSystem: "stripe" in create_order. Returns a Stripe payment link — the guest completes payment there. (Coming soon)

B2B (Partner integration)

Set paymentSystem: "internal" and provide X-Api-Key header at connection time. Booking is confirmed instantly, host is notified by email.

Contact bookings@getexperience.com to get your API key.

Response Format

All tools support two response formats via the responseFormat parameter:

  • "markdown" (default) — Human-readable text + [GXP_STRUCTURED] JSON block for programmatic use
  • "json" — Pure JSON only

Structured Data

When using markdown format, every response includes a [GXP_STRUCTURED] block with typed JSON:

const match = text.match(/\[GXP_STRUCTURED\]([\s\S]*?)\[\/GXP_STRUCTURED\]/);
const data = match ? JSON.parse(match[1].trim()) : null;

Health Check

GET https://getexperience.com/mcp/health

Links

  • Website: getexperience.com
  • MCP Endpoint: https://getexperience.com/mcp
  • Contact: bookings@getexperience.com

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Search & Web Crawling
Registryactive
TransportSSE
AuthRequired
UpdatedMar 15, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3