Back to Catalog

tripgo-mcp-server

skedgo/tripgo-mcp-server
🔗 Latest commit:06ebc52
🕒 Updated:Sep 9, 2025, 01:06 PM
TypeScript
Travel

MCP server for TripGo's multi-modal routing

MCP Trust Score
Based on our comprehensive evaluation criteria
🤖 Evaluated by gemini-2.5-flashFix
Trust Score36/100
GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:1
👥 Contributors:2
📋 Total Issues:0
📦 Has Releases:No
🔧 Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
🤖 Evaluated by gemini-2.5-flashFix
{
  "mcp-remote": {
    "command": "npx",
    "args": [
      "mcp-remote",
      "https://tripgo-mcp-server.skedgo-account.workers.dev/sse"
    ],
    "env": {}
  },
  "mcp-remote-local-target": {
    "command": "npx",
    "args": [
      "mcp-remote",
      "http://localhost:8787/sse"
    ],
    "env": {}
  },
  "tripgo-mcp-server-dev": {
    "command": "npm",
    "args": [
      "run",
      "dev:local"
    ],
    "env": {}
  },
  "tripgo-mcp-server-deploy": {
    "command": "npm",
    "args": [
      "run",
      "deploy"
    ],
    "env": {}
  }
}
MCP Protocol Support
Implemented MCP protocol features
🤖 Evaluated by gemini-2.5-flashFix
Tools:
Prompts:
Resources:
Sampling:
Roots:
Logging:
STDIO Transport:
HTTP Transport:
OAuth2 Auth:
Dependencies
6 dependencies
Libraries and frameworks used by this MCP server
🤖 Evaluated by gemini-2.5-flashFix
Add Quality Badge
Show your MCP trust score in your README
Trust Score Badge
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/skedgo/tripgo-mcp-server)](https://archestra.ai/mcp-catalog/skedgo__tripgo-mcp-server)
README.md

TripGo MCP Server

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 remove 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/sse.

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:

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

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:

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

Restart Claude and you should see the tools become available.

Deployment

This is deployed locally currently, run:

npm install
npm run deploy
tripgo-mcp-server MCP Server | Documentation & Integration | Archestra