MCP server exposing 3 tools for imf.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/imf/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
get_datasets — List all available IMF databases/datasets. Returns database IDs and names you can use with get_data and search_indicators. Example: call with no arguments to browse available datasets like IFS (International Financial Statistics), BOP (Balance of Payments), etc.get_data — Fetch IMF time-series data for an indicator and country. Uses SDMX CompactData format. Example: get_data({ database_id: "IFS", frequency: "A", indicator: "NGDP_XDC", country: "US", start: "2018", end: "2023" }) returns annual nominal GDP for the US.search_indicators — Search or list indicator codes available in an IMF database. Returns the code list (dimensions) for a dataset. Example: search_indicators({ database_id: "IFS", query: "GDP" }) finds GDP-related indicator codes.Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/imf/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io