NS Travel MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NS Travel MCP ServerShow me live departures from Amsterdam Centraal."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
NS Travel MCP Server
This MCP server provides real-time Dutch Railways (NS) data for journey planning, live departures, disruptions, and station search.
Features
Journey Planning - Plan optimal routes between stations with real-time updates
Live Departures - Get real-time departure boards for any station
Disruption Alerts - Check service disruptions and maintenance work
Station Search - Find stations with auto-suggestions
Prerequisites
NS API Key: Get your free API key from NS API Portal
Sign up for an account
Subscribe to the "NS App" product (free)
Copy your subscription key
Cloudflare Account: Sign up at Cloudflare
Wrangler CLI: Install globally
npm install -g wrangler
Setup Instructions
1. Clone and Install Dependencies
# Create project directory
git clone git@github.com:lauragift21/ns-travel-mcp.git
cd ns-mcp-server
# Install dependencies
npm install2. Set Environment Variables
# Set your NS API key as a secret
npx wrangler secret put NS_API_KEY
# Paste your NS API subscription key when promptedLocal Development
Create a .dev.vars file in the project root with your NS API key:
NS_API_KEY=your_ns_api_key4. Deploy
# Deploy to Cloudflare Workers
npx wrangler deploy
# Your MCP server will be available at:
# https://ns-travel-mcp.your-subdomain.workers.devUsing with MCP Client (e.g Claude Desktop)
To use this MCP server with Claude Desktop, add it to your configuration: ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ns-mcp-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-deployment.workers.dev/sse"
],
"env": {
"NS_API_KEY": "<YOUR_API_KEY"
}
}
}
}Connect to Cloudflare AI Playground
You can connect your MCP server from the Cloudflare AI Playground, which is a remote MCP client:
Go to https://playground.ai.cloudflare.com/
Enter your deployed MCP server URL (remote-mcp-server-authless..workers.dev/sse)
You can now use your MCP tools directly from the playground!
Common Use Cases
Basic Journey Planning
Plan my journey from Amsterdam Centraal to Utrecht Centraal tomorrow at 8:00 AMWeekend Travel
Plan a trip from Amsterdam Centraal to Rotterdam Centraal this Saturday at 2:00 PM. I want to see both earlier and later options.Route Impact Assessment
Are there any disruptions that would affect travel between Amsterdam and Utrecht?Planned vs Unplanned Issues
Show me both planned maintenance and unexpected disruptions happening todayFind Stations
Find all train stations in AmsterdamAirport Connection
I'm flying into Schiphol at 3:00 PM. What's the best way to get to Amsterdam Centraal, and when should I expect to arrive?Event Planning
I have a meeting in Rotterdam at 10:00 AM. What time should I leave from Amsterdam Centraal to arrive on time?Emergency Alternatives
My usual train from Amsterdam to Utrecht is cancelled. What are my alternative options?Night Travel
What are the last trains from Amsterdam Centraal to Utrecht tonight?Troubleshooting
Common Issues
API Key Error: Ensure your NS API key is correctly set
wrangler secret put NS_API_KEYStation Not Found: Use exact station names or codes
✅ "Amsterdam Centraal" or "asd"
❌ "Amsterdam Central" or "amsterdam"
CORS Issues: The server includes CORS headers for browser requests
Rate Limiting: NS API has rate limits - implement caching if needed
Debug Mode
# Run locally for debugging
npx wrangler dev
# Check logs
npx wrangler tailResources
NS API Documentation: apiportal.ns.nl
Cloudflare Workers: developers.cloudflare.com
Model Context Protocol modelcontextprotocol.io/introduction
License
MIT License - Feel free to modify and extend for your needs!
Built with ❤️ by Gift Egwuenu | Powered by MCP & Cloudflare Workers
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lauragift21/ns-travel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server