Skip to main content
Glama
stvlynn

Volcengine Image Generation MCP Server

by stvlynn

Volcengine Image Generation MCP Server

A Model Context Protocol (MCP) server that provides tools for generating images using Volcengine's text-to-image API.

Features

  • Text-to-image generation using Volcengine's doubao-seedream-3-0-t2i-250415 model

  • Support for multiple image sizes and formats

  • Configurable parameters including seed, guidance scale, and watermark

  • Proper error handling and validation

  • TypeScript implementation with full type safety

Related MCP server: Doubao Image/Video Generation MCP Server

Installation

  1. Clone or download this repository

  2. Install dependencies:

npm install
  1. Build the project:

npm run build

Configuration

Set the required environment variable:

export VOLCENGINE_API_KEY="your_api_key_here"

Usage

Running the server

npm start

Development mode

npm run dev

Available Tools

generate_image

Generate images from text prompts using Volcengine's API.

Parameters:

  • prompt (required): Text description of the image to generate

  • model (optional): Model ID (default: doubao-seedream-3-0-t2i-250415)

  • size (optional): Image size (default: 1024x1024)

  • seed (optional): Random seed for reproducible results

  • guidance_scale (optional): How closely to follow the prompt (1-10)

  • watermark (optional): Whether to add watermark (default: true)

  • response_format (optional): Return format - 'url' or 'b64_json' (default: url)

Supported sizes:

  • 1024x1024 (1:1)

  • 864x1152 (3:4)

  • 1152x864 (4:3)

  • 1280x720 (16:9)

  • 720x1280 (9:16)

  • 832x1248 (2:3)

  • 1248x832 (3:2)

  • 1512x648 (21:9)

Example Usage

{
  "name": "generate_image",
  "arguments": {
    "prompt": "A beautiful sunset over mountains",
    "size": "1024x1024",
    "guidance_scale": 7.5
  }
}

MCP Client Configuration

Add this server to your MCP client configuration:

{
  "mcpServers": {
    "volcengine-image": {
      "command": "node",
      "args": ["path/to/build/index.js"],
      "env": {
        "VOLCENGINE_API_KEY": "your-api-key"
      }
    }
  }
}

Error Handling

The server provides comprehensive error handling for:

  • Invalid API keys

  • Rate limiting

  • Invalid parameters

  • Network errors

  • API response errors

License

MIT

Available Tools

1 tool
generate_imageB

Generate images using Volcengine's text-to-image API

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesText prompt for image generation (max 1000 characters)
modelNoModel to use for image generationdoubao-seedream-3-0-t2i-250415
sizeNoImage size dimensions1024x1024
seedNoRandom seed for reproducible results (-1 for random)
guidance_scaleNoHow closely to follow the prompt (1-10)
watermarkNoWhether to add watermark to generated images
response_formatNoFormat for returned image dataurl

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the API provider but doesn't describe rate limits, authentication requirements, error handling, what happens when generation fails, or the nature of the output (e.g., image format, quality constraints). This leaves significant gaps for a generative 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 a single, efficient sentence that directly states the tool's purpose without any unnecessary words. It's perfectly front-loaded and wastes no space.

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 generative image tool with 7 parameters and no output schema, the description is minimal. While concise, it doesn't compensate for the lack of annotations or output schema by explaining what kind of image data is returned, typical use cases, or limitations. The schema handles parameter documentation well, but overall context remains incomplete.

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?

The description adds no parameter-specific information beyond what's already in the schema, which has 100% coverage with detailed descriptions for all 7 parameters. This meets the baseline of 3 since the schema does the heavy lifting, but the description doesn't provide additional context like typical prompt structures or model selection guidance.

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 action ('Generate images') and specifies the resource ('using Volcengine's text-to-image API'), making the purpose immediately understandable. However, since there are no sibling tools mentioned, it doesn't need to distinguish from alternatives, so it can't achieve a perfect 5.

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, prerequisites, or typical use cases. It simply states what the tool does without any contextual usage information.

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

TDQS

B3.2/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap between tools. The single tool 'generate_image' has a clear and distinct purpose for generating images via a text-to-image API, leaving no ambiguity for an agent to misselect.

Naming Consistency5/5

The tool name 'generate_image' follows a consistent verb_noun pattern, and with only one tool, there is no inconsistency to evaluate. The naming is straightforward and predictable, adhering to common conventions without any deviations.

Tool Count2/5

A single tool is too few for a server focused on image generation, as it lacks essential operations like listing generated images, managing styles, or handling errors. This minimal scope limits functionality and feels incomplete for the domain, making it borderline inappropriate.

Completeness2/5

The tool set is severely incomplete for an image generation server. While 'generate_image' covers the core creation function, there are significant gaps such as retrieving, updating, or deleting images, managing parameters, or handling batch operations, which will likely cause agent failures in complex workflows.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/stvlynn/Volcengine-Image-MCP'

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