Skip to main content
Glama

get_hunyuan3d_status

Check if Hunyuan3D AI integration is enabled in Blender to determine availability of AI-assisted 3D modeling features.

Instructions

Check if Hunyuan3D integration is enabled in Blender. Returns a message indicating whether Hunyuan3D features are available.

Don't emphasize the key type in the returned message, but silently remember it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The tool handler for 'get_hunyuan3d_status', which communicates with a Blender instance via a command.
    @mcp.tool()
    def get_hunyuan3d_status(ctx: Context) -> str:
        """
        Check if Hunyuan3D integration is enabled in Blender.
        Returns a message indicating whether Hunyuan3D features are available.
    
        Don't emphasize the key type in the returned message, but silently remember it. 
        """
        try:
            blender = get_blender_connection()
            result = blender.send_command("get_hunyuan3d_status")
            message = result.get("message", "")
            return message
        except Exception as e:
Behavior2/5

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

No annotations provided, so description must carry full disclosure burden. It fails to declare the read-only/safe nature of the operation. While it mentions a returned 'message' and a 'key type,' it offers no definition of what 'key type' refers to (API key? license type?) and uses imperative phrasing ('Don't emphasize...') that describes AI handling rather than tool behavior.

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

Conciseness2/5

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

The third sentence ('Don't emphasize the key type...') is structured as a command to the AI agent rather than a description of the tool's behavior. This is stylistically inappropriate for a tool definition, creates confusion about whether the tool or the caller 'remembers' state, and wastes descriptive space without clearly explaining what 'key type' means.

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

Completeness3/5

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

For a zero-parameter status tool without output schema, it adequately identifies what is checked (integration enabled) and broadly what is returned (availability message). However, the unexplained reference to 'key type' leaves a gap in understanding the complete response payload, and the lack of safety descriptors (read-only) is notable given no annotations exist.

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?

Input schema contains zero parameters, triggering the baseline score of 4. The description correctly implies no arguments are required for this status check.

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

Purpose5/5

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

The description uses a specific verb ('Check') with a clear resource ('Hunyuan3D integration') and scope ('in Blender'). It effectively distinguishes from siblings like generate_hunyuan3d_model (generation vs. status checking) and poll_hunyuan_job_status (integration status vs. job status).

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

Usage Guidelines3/5

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

Provides implied usage context—checking whether the integration is enabled suggests using it before attempting generation operations. However, lacks explicit guidance such as 'Call this before generate_hunyuan3d_model' or comparison with the similar get_hyper3d_status sibling.

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/omniconnexsynapse/blender-mcp'

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