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 Cloud
Add this skill
npx mdskills install skedgo/tripgo-mcp-serverWell-documented MCP server for multi-modal trip planning with clear setup and deployment instructions
1# TripGo MCP Server2[](https://archestra.ai/mcp-catalog/skedgo__tripgo-mcp-server)34The is a remote MCP server that wraps the TripGo API and provides the following tools:56- `tripgo-locations`: Retrieve transport-related locations7- `tripgo-departures`: Departures from a specific public transport stop8- `tripgo-routing`: Mixed and multi-modal trip planning9- `tripgo-get-trip-url`: Get the URL of a trip previously calculated using the `tripgo-routing` tool1011The MCP server is deployed on Cloudflare Workers.1213## Connect directly to remove MCP1415The 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`.1617## Connect Claude Desktop to public MCP server1819You can also connect to your remote MCP server from *local* MCP clients, by using the [mcp-remote proxy](https://www.npmjs.com/package/mcp-remote).2021To connect to your MCP server from Claude Desktop, follow [Anthropic's Quickstart](https://modelcontextprotocol.io/quickstart/user) and within Claude Desktop go to Settings > Developer > Edit Config.2223Use with this configuration:2425```json26{27 "mcpServers": {28 "TripGo": {29 "command": "npx",30 "args": [31 "mcp-remote",32 "https://tripgo-mcp-server.skedgo-account.workers.dev/sse"33 ]34 }35 }36}37```3839Restart Claude and you should see the tools become available.4041## Development4243- Create a copy of `.env.example` and rename it to `.env` and set an API key44- Install dependencies with `npm install`45- Start the server with `npm run dev:local`4647The configure Claude:4849```json50{51 "mcpServers": {52 "calculator": {53 "command": "npx",54 "args": [55 "mcp-remote",56 "http://localhost:8787/sse"57 ]58 }59 }60}61```6263Restart Claude and you should see the tools become available.6465## Deployment6667This is deployed locally currently, run:6869```bash70npm install71npm run deploy72```73
Full transparency — inspect the skill content before installing.