Tripgo MCP Server

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

Local serverstdioGo

What is the Tripgo MCP server?

Tripgo MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. The is a remote MCP server that wraps the TripGo API and provides the following tools:.

Setting it up

Installation goes through your MCP client rather than a global install: point it at npm on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Tripgo is connected, these are the calls the assistant has available:

  • 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

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the tripgo mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Tripgo's toolset — tripgo-locations, tripgo-departures, tripgo-routing and 1 more — is a fair guide to whether it matches your workflow. It is maintained by skedgo; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Tripgo's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
tripgo-locationsRetrieve transport-related locations
tripgo-departuresDepartures from a specific public transport stop
tripgo-routingMixed and multi-modal trip planning
tripgo-get-trip-urlGet the URL of a trip previously calculated using the tripgo-routing tool

How to install the Tripgo MCP server

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

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Tripgo to tripgo-locations.
  • Use Tripgo to tripgo-departures.
  • Use Tripgo to tripgo-routing.

Frequently asked questions

It connects Tripgo to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (tripgo-locations, tripgo-departures, tripgo-routing, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Tripgo directly.