version
Retrieve the current version details of the Frappe MCP server to verify compatibility and check for available updates.
Instructions
Get version information for the Frappe MCP server.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/helpers.py:22-25 (handler)The core handler function for the 'version' tool, decorated with @mcp.tool() to register it. It returns a string with the server version.@mcp.tool() def version() -> str: """Get version information for the Frappe MCP server.""" return f"Frappe MCP Server version {__version__}"
- src/server.py:38-42 (registration)Top-level registration of all tool modules, including helpers.register_tools(mcp) which registers the 'version' tool.# Register all tool modules helpers.register_tools(mcp) documents.register_tools(mcp) schema.register_tools(mcp) reports.register_tools(mcp)