Skip to main content
Glama
robertZaufall

MindManager MCP Server

get_versions

Retrieve version information for MindManager Automation MCP Server components to verify compatibility and track updates.

Instructions

Get the versions of the MindManager Automation MCP Server components.

Returns:
    Dict[str, str]: A dictionary containing the versions of the components.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The handler function for the 'get_versions' tool, decorated with @mcp.tool() which also serves as its registration in the FastMCP server. It returns a dictionary with versions of 'mindm-mcp' (__version__) and 'mindm' libraries.
    @mcp.tool()
    async def get_versions() -> Dict[str, str]:
        """
        Get the versions of the MindManager Automation MCP Server components.
    
        Returns:
            Dict[str, str]: A dictionary containing the versions of the components.
        """
        result = {}
        result["mindm-mcp"] = __version__
        result["mindm"] = mindm.__version__
        return result
  • The @mcp.tool() decorator registers the get_versions function with the FastMCP server instance 'mcp'.
    @mcp.tool()
  • Defines __version__ for the mindm_mcp package, used by get_versions tool.
    try:
        from importlib.metadata import version as _version
        __version__ = _version("mindm_mcp")
    except ImportError:
        __version__ = "unknown"
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses the return type ('Dict[str, str]') and that it fetches versions, implying a read-only operation, but lacks details on permissions, rate limits, or error handling. This is a minimal but adequate disclosure for a simple read tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the purpose in the first sentence and efficiently adds return details in the second. Every sentence earns its place, making it appropriately sized and structured without waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, output schema exists), the description is complete enough. It states the purpose and return type, and with an output schema, it needn't explain return values further. However, it could benefit from more context on usage versus siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters, and schema description coverage is 100%, so no parameter documentation is needed. The description doesn't add param info, but with no params, a baseline of 4 is appropriate as there's nothing to compensate for.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get the versions of the MindManager Automation MCP Server components.' It specifies the verb ('Get') and resource ('versions'), though it doesn't explicitly differentiate from sibling tools like 'get_mindmanager_version' or 'get_grounding_information', which may have overlapping or related purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_mindmanager_version' or explain the context for retrieving component versions versus other version-related or informational tools, leaving the agent without usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/robertZaufall/mindm-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server