get_bin_data_tool
Retrieve detailed Bank Identification Number (BIN) data for payment cards using the Pagos Data MCP Server. Input a BIN to receive formatted information, enhanced or basic, based on configuration settings.
Instructions
Get BIN data for a given BIN number.
Args: bin (str): The BIN number to get data for. Returns: str: A formatted string containing the BIN data (enhanced or basic based on ENHANCED_BIN_DATA config).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bin | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bin": {
"title": "Bin",
"type": "string"
}
},
"required": [
"bin"
],
"title": "get_bin_data_toolArguments",
"type": "object"
}