get_armor_mcp_version
Retrieve the current Armor Wallet version for blockchain operations, bridging, swapping, and AI agent trading strategies on the Armor Crypto MCP server.
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 registers it with the MCP server. Simply returns a dictionary with the package version from __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)The package version constant referenced and returned by the get_armor_mcp_version tool.__version__ = "0.2.1"
- armor_crypto_mcp/armor_mcp.py:83-86 (registration)The @mcp.tool() decorator registers this function as a tool named 'get_armor_mcp_version' with the FastMCP server.@mcp.tool() async def get_armor_mcp_version(): """Get the current Armor Wallet version""" return {'armor_version': __version__}