get_version
Retrieve the current version details of the Simple MCP Server to verify compatibility and track updates.
Instructions
Get server version information.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- run_server.py:77-81 (handler)The handler function for the 'get_version' tool. It logs when called and returns a dictionary with version information for the server and FastMCP.@mcp.tool() def get_version() -> dict: """Get server version information.""" logger.info("get_version called") return {"version": "0.1.0", "name": "Simple MCP Server", "api_version": "FastMCP 2.5.1"}