trackmcp
Back to directory
skedgo

tripgo-mcp-server

View on GitHub

MCP server for TripGo's multi-modal routing

5 stars TypeScriptOthers Updated Jul 5, 2026
mcpmcp-serverroutingtrip-planningtripgo-api

Documentation

TripGo MCP Server

Trust Score

The is a remote MCP server that wraps the TripGo API and provides the following tools:

  • `tripgo-locations`: Retrieve transport-related locations
  • `tripgo-departures`: Departures from a specific public transport stop
  • `tripgo-routing`: Mixed and multi-modal trip planning
  • `tripgo-get-trip-url`: Get the URL of a trip previously calculated using the `tripgo-routing` tool

The MCP server is deployed on Cloudflare Workers.

Connect directly to remote MCP

The MCP server is deployed on Cloudflare Workers. You can connect to it directly using the URL `https://tripgo-mcp-server.skedgo-account.workers.dev/mcp`.

Connect Claude Desktop to public MCP server

You can also connect to your remote MCP server from *local* MCP clients, by using the mcp-remote proxy.

To connect to your MCP server from Claude Desktop, follow Anthropic's Quickstart and within Claude Desktop go to Settings > Developer > Edit Config.

Use with this configuration:

json
{
  "mcpServers": {
    "TripGo": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://tripgo-mcp-server.skedgo-account.workers.dev/mcp"
      ]
    }
  }
}

Restart Claude and you should see the tools become available.

Development

  • Create a copy of `.env.example` and rename it to `.env` and set an API key
  • Install dependencies with `npm install`
  • Start the server with `npm run dev:local`

The configure Claude:

json
{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/mcp"
      ]
    }
  }
}

Restart Claude and you should see the tools become available.

Deployment

This is deployed using GHA. To deploy locally, run:

bash
npm install
npm run deploy

Frequently asked questions

What is tripgo-mcp-server?

tripgo-mcp-server is MCP server for TripGo's multi-modal routing

How do I install tripgo-mcp-server?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is tripgo-mcp-server open source?

Yes — it is hosted on GitHub at https://github.com/skedgo/tripgo-mcp-server and has 5 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP