railway-trains-india
3.5
The Railway Trains - India MCP Server is designed to help users search for Indian Railway trains using either a train number or the train's name.
The Railway Trains - India server is a powerful tool for accessing detailed information about Indian Railway trains. Whether you're planning a journey or simply curious about train schedules, this server offers a reliable solution for retrieving train data efficiently.
Features
- {'name': 'Popularity', 'description': 'With a popularity score of 9.4, this server is a trusted and widely used resource.'}
- {'name': 'Service Level', 'description': 'The server boasts a 100% service level, ensuring that it is consistently available for use.'}
- {'name': 'Latency', 'description': 'The server responds quickly, with an average latency of 149ms, providing timely information retrieval.'}
MCP Tools
- Find by Train Name or Number: This tool allows users to search for trains using either the train's name or its number, making it easy to find the specific train details you need.
Usage with Different Platforms
python
python
import requests
response = requests.get('https://railway-trains-india-mcp-server/api/train', params={'train_name_or_number': '12345'})
train_info = response.json()
print(train_info)
javascript
javascript
fetch('https://railway-trains-india-mcp-server/api/train?train_name_or_number=12345')
.then(response => response.json())
.then(data => console.log(data));