Skip to main content
Glama

train_alerts

Get real-time alerts for Singapore train service disruptions and shuttle services. Receive updates when changes occur to help plan your commute.

Instructions

Get real-time train service alerts including service disruptions and shuttle services. Updates when there are changes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler for the 'train_alerts' tool. Fetches real-time train service alerts from the LTA DataMall API using axios and returns the JSON response or an error message.
    case "train_alerts": {
      try {
        const response = await axios.get('https://datamall2.mytransport.sg/ltaodataservice/TrainServiceAlerts', {
          headers: {
            'AccountKey': process.env.LTA_API_KEY!,
            'accept': 'application/json'
          }
        });
        
        return {
          content: [{
            type: "text",
            text: JSON.stringify(response.data, null, 2)
          }]
        };
      } catch (error) {
        if (axios.isAxiosError(error)) {
          return {
            content: [{
              type: "text",
              text: `LTA API error: ${error.response?.data?.Message ?? error.message}`
            }],
            isError: true
          };
        }
        throw error;
      }
    }
  • The input schema and description for the 'train_alerts' tool, registered in the ListTools response. No input parameters are required.
    {
      name: "train_alerts",
      description: "Get real-time train service alerts including service disruptions and shuttle services. Updates when there are changes.",
      inputSchema: {
        type: "object",
        properties: {} // No parameters needed
      }
    },

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/arjunkmrm/mcp-sg-lta'

If you have feedback or need assistance with the MCP directory API, please join our Discord server