get_armor_mcp_version
Retrieve the current version of the Armor Wallet to verify compatibility and access the latest cryptocurrency management features.
Instructions
Get the current Armor Wallet version
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- armor_crypto_mcp/armor_mcp.py:83-86 (handler)The main handler function for the 'get_armor_mcp_version' tool. It is decorated with @mcp.tool(), which also serves as the registration. Simply returns the package __version__ as the Armor MCP version.@mcp.tool() async def get_armor_mcp_version(): """Get the current Armor Wallet version""" return {'armor_version': __version__}
- armor_crypto_mcp/__init__.py:9-9 (helper)Defines the __version__ constant imported and used by the get_armor_mcp_version tool.__version__ = "0.2.1"
- armor_crypto_mcp/armor_mcp.py:83-83 (registration)The @mcp.tool() decorator registers the get_armor_mcp_version function as an MCP tool.@mcp.tool()