Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
VISION_API_KEYYesYour model provider's API key
VISION_BASE_URLNoCustom API base URL
VISION_MODEL_IDNoThe vision model to useglm-4.6v-flash
VISION_MAX_TOKENSNoMax response tokens2048
VISION_TEMPERATURENoSampling temperature0.4
VISION_MODEL_PROVIDERNoProvider name (e.g., zhipu, openai, deepseek, moonshot, siliconflow, custom)zhipu

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
see_imageA

Look at an image and answer a question about it.

This is the core vision tool. Use it whenever you need to understand, describe, or reason about visual content that you cannot see.

Args: image: The image to analyze. Accepts: - A local file path (e.g. /home/user/photo.jpg) - An HTTP(S) URL (e.g. https://example.com/img.png) - A base64-encoded string (with or without data-URI prefix) question: What you want to know about the image. Default: "What is in this image?"

Returns: The vision model's answer as plain text.

Examples: >>> see_image("/tmp/screenshot.png", "What error is shown in this dialog?") >>> see_image("https://example.com/chart.png", "What's the trend?") >>> see_image("iVBORw0KGgo...", "Is this a cat or a dog?")

describe_imageA

Generate a text description of an image.

Useful when you need a caption, alt text, or a general summary of what an image contains without asking a specific question.

Args: image: The image to describe (file path, URL, or base64). detail_level: How detailed the description should be. Options: "brief", "detailed", "exhaustive". Default: "detailed".

Returns: A text description of the image.

Examples: >>> describe_image("/tmp/product.jpg") >>> describe_image("https://site.com/scene.png", "brief")

extract_textA

Extract (OCR) all visible text from an image.

Ideal for screenshots of documents, code, error messages, or any image where the text content matters more than the visual appearance.

Args: image: The image containing text (file path, URL, or base64). language_hint: Optional hint about the text language (e.g. "Chinese", "English", "mixed"). Helps the model focus on the right character set.

Returns: All text found in the image, preserving layout where possible.

Examples: >>> extract_text("/tmp/error_screenshot.png") >>> extract_text("/tmp/receipt.jpg", "Chinese")

analyze_chartA

Analyze a chart, graph, diagram, or UI screenshot.

Specialised for understanding data visualisations, technical diagrams, flowcharts, and UI screenshots where spatial layout and relationships matter.

Args: image: The chart/diagram image (file path, URL, or base64). question: Optional specific question about the chart. If empty, a general analysis is performed.

Returns: A text analysis of the chart or diagram.

Examples: >>> analyze_chart("/tmp/q1_revenue.png") >>> analyze_chart("/tmp/architecture.png", "What are the main components?")

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.5/5.0

Scored across 4 tools

Disambiguation4/5

Most tools have distinct purposes: see_image for Q&A, extract_text for OCR, analyze_chart for charts/diagrams, and describe_image for general descriptions. However, see_image and describe_image overlap somewhat, as see_image with a default question essentially generates a description. The descriptions help clarify intent, so the ambiguity is limited.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase with underscores: see_image, extract_text, analyze_chart, describe_image. This makes the API predictable and easy to navigate.

Tool Count5/5

With 4 tools, the server is well-scoped for a vision MCP. Each tool covers a distinct core capability (Q&A, OCR, chart analysis, description) without unnecessary bloat. The count is appropriate for the domain.

Completeness4/5

The tool surface covers the major vision use cases: answering questions, extracting text, analyzing charts, and generating descriptions. Minor gaps exist, such as no explicit image comparison or object detection, but these are not core for a generic vision server. Overall, the coverage is solid with no dead ends.

Maintenance

ActivitySlowing
ResponsivenessNo issues