for agents & developers

Malaysian ground-truth, for machines

Greater Malaysia is the trusted, source-cited data layer for AI agents that need current facts about Malaysia. A free REST API and an MCP server. Every value links to its official primary source, so an agent can cite it, not guess it.

The scattered truth of Malaysian public data (fuel prices, the ringgit, prayer times, holidays, weather) in one clean, current, machine-readable place. No API key. No signup. CORS-open. Signal over noise, always sourced.

REST API

Base: https://greatermalaysia.com/api โ€” returns JSON with a source block on every response.

GET /api/fuel
This week's RON95, RON97 and diesel prices (RM/litre). Source: data.gov.my (KPDN).
GET /api/fx?base=USD&symbols=MYR
Ringgit and other exchange rates. Source: European Central Bank via Frankfurter.
GET /api/prayer?city=kuala-lumpur
Today's prayer times (waktu solat) by city or JAKIM zone. Source: JAKIM e-Solat.
GET /api/holidays?year=2026
National public holidays plus the next upcoming one. Source: official gazette.
GET /api/weather?city=kuala-lumpur
Current weather and US air-quality index. Source: Open-Meteo.
# try it
curl https://greatermalaysia.com/api/fuel

# catalog of every endpoint
curl https://greatermalaysia.com/api

MCP server

Plug Greater Malaysia straight into any AI agent that speaks the Model Context Protocol. One endpoint, five tools: get_fuel_prices, get_exchange_rate, get_prayer_times, get_public_holidays, get_weather.

Endpoint: https://greatermalaysia.com/api/mcp (Streamable HTTP)

Clients that support remote MCP over HTTP:

{
  "mcpServers": {
    "greater-malaysia": { "url": "https://greatermalaysia.com/api/mcp" }
  }
}

Stdio-only clients (e.g. some desktop apps) can bridge with mcp-remote:

{
  "mcpServers": {
    "greater-malaysia": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://greatermalaysia.com/api/mcp"]
    }
  }
}

Terms

Free to use. Figures derive from official Malaysian open data; please cite the source listed in each response. Independent and non-partisan. Rate-limited fairly; be kind. Questions: hello@greatermalaysia.com.

Related