version
Access version information for Qiniu MCP Server to ensure compatibility and manage integration with Qiniu Cloud services, storage, and intelligent multimedia features.
Instructions
qiniu mcp server version info.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The handler function for the 'version' tool that returns a TextContent with the server version.def version(self, **kwargs) -> list[types.TextContent]: return [types.TextContent(type="text", text=version.VERSION)]
- Input schema definition for the 'version' tool, which requires no parameters (empty object).inputSchema={ "type": "object", "required": [], }
- src/mcp_server/core/version/tools.py:27-30 (registration)Registers the 'version' tool handler using auto_register_tools.tools.auto_register_tools( [ tool_impl.version, ]
- Helper constant providing the version string used by the tool handler.VERSION = '1.4.1'
- src/mcp_server/core/version/__init__.py:5-6 (registration)Top-level registration call via load function invoked from core/__init__.py.def load(cfg: config.Config): register_tools()