home / mcp / famxplor family travel mcp server

Famxplor Family Travel MCP Server

The first MCP server dedicated to families who travel with their kids. Find activities tested by families worldwide

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "alt250-famxplor-family-travel-mcp-server": {
      "url": "https://mcp.famxplor.com/mcp/",
      "headers": {
        "FAMXPLOR_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Famxplor MCP Server provides a remote endpoint for accessing family travel activities and an optional local server for development. It enables MCP clients to connect to Famxplor activity data and run tests in your environment.

How to use

You connect to the remote MCP endpoint from your MCP client by pointing it at the public URL https://mcp.famxplor.com/mcp/. Use this for quick access without installing anything locally. For development and testing on your machine, start a local MCP server using your API key in the environment and the uv runtime.

How to install

Prerequisites: ensure you have Python installed on your machine and the uv runtime available in your environment. You may also use the remote MCP server without any local setup.

# Development workflow: start a local MCP server

FAMXPLOR_API_KEY="<your Famxplor API key>" uv run server.py

Additional sections

Configuration for clients and development notes are shown below. The remote endpoint is available at the following URL. Local development requires an API key. If you are configuring a client to connect remotely, use the http MCP connection. When running locally, provide your API key as shown above.

{
  "mcpServers": {
    "famxplor": {
      "type": "http",
      "name": "famxplor",
      "url": "https://mcp.famxplor.com/mcp/",
      "args": []
    }
  }
}
{
  "mcpServers": {
    "famxplor_local": {
      "type": "stdio",
      "name": "famxplor_local",
      "command": "uv",
      "args": ["run", "server.py"],
      "env": [
        {"name": "FAMXPLOR_API_KEY", "value": "<YOUR_API_KEY>"}
      ]
    }
  }
}