list_countries
Retrieve a list of available countries for a specific dataset from the IMF Data MCP Server. Input a dataset ID to access the corresponding country list stored in local JSON files.
Instructions
Returns a list of available countries for the specified dataset, read from the corresponding .json file in the local areas directory.
Args:
dataset_id (str): Dataset ID, such as "IFS", "DOT", "BOP", etc.
Returns:
list: List of countries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dataset_id": {
"title": "Dataset Id",
"type": "string"
}
},
"required": [
"dataset_id"
],
"title": "list_countriesArguments",
"type": "object"
}