getCountryDetails
Retrieve detailed data for a specific country by providing its unique countryId, enabling efficient analysis and integration with MCP server mcp-comexstat.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
countryId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"countryId": {
"type": "string"
}
},
"required": [
"countryId"
],
"type": "object"
}