get_available_tools
Retrieve a list of available tools and their capabilities within Tatum MCP Server, optionally filtered by category, to streamline integration with blockchain APIs and related features.
Instructions
[gateway] Get a list of all available tools and their capabilities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Optional filter by feature category (e.g., blockchain_data, notifications, gateway) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional filter by feature category (e.g., blockchain_data, notifications, gateway)",
"enum": [
"blockchain_data",
"notifications",
"gateway",
"fee_estimation",
"security",
"smart_contracts",
"storage",
"virtual_accounts"
],
"type": "string"
}
},
"required": [],
"type": "object"
}