Skip to main content
Glama

bittensor_multimodal

Analyze images with text prompts using Bittensor's multimodal AI to extract insights and answer questions about visual content.

Instructions

Image + text reasoning via Bittensor subnet 24 (Omega Multimodal). Cost: $0.02 per call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
promptYesText prompt or question about the image
image_urlNoURL of the image to analyse

Implementation Reference

  • Handler implementation for the "bittensor_multimodal" tool, which sends a request to the gateway with a prompt and an optional image_url.
    case "bittensor_multimodal":
      result = await callGateway({
        route: "bittensor-multimodal",
        prompt: a.prompt,
        ...(a.image_url ? { image_url: a.image_url } : {}),
      });
      break;
  • Tool registration schema for "bittensor_multimodal".
      name: "bittensor_multimodal",
      description:
        "Image + text reasoning via Bittensor subnet 24 (Omega Multimodal). Cost: $0.02 per call.",
      inputSchema: {
        type: "object",
        properties: {
          prompt: { type: "string", description: "Text prompt or question about the image" },
          image_url: { type: "string", description: "URL of the image to analyse" },
        },
        required: ["prompt"],
      },
    },
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 adds valuable financial context with the cost disclosure, but lacks other critical behavioral details such as output format (string? JSON?), rate limits, or whether the operation is idempotent/read-only.

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 consists of two efficient sentences with zero waste. The first sentence front-loads the core capability (multimodal reasoning), and the second provides cost information. Every sentence earns its place.

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?

While the cost and function are clear, there is no output schema provided, and the description fails to indicate what the tool returns (e.g., a text analysis, structured data, or confidence scores). For a 2-parameter AI reasoning tool with no annotations, this gap in return value documentation is notable.

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

Parameters3/5

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

Schema description coverage is 100%, documenting both 'prompt' and 'image_url' parameters fully. The description does not add parameter-specific semantics beyond what the schema provides, meeting the baseline expectation for high-coverage schemas.

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 explicitly states 'Image + text reasoning' (specific verb + resource combination) and identifies the specific backend 'Bittensor subnet 24 (Omega Multimodal)'. This clearly distinguishes it from siblings like bittensor_image (likely unimodal) and bittensor_text by emphasizing the multimodal capability.

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 mentions cost ('$0.02 per call') but provides no guidance on when to use this tool versus siblings like bittensor_image or bittensor_llm. There is no mention of prerequisites, required formats, or decision criteria for selecting this over alternatives.

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/wizerai1111/swarmrails-mcp'

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