Skip to main content
Glama
MSWEIMZ
by MSWEIMZ

ο»Ώ

🎨 Agnes AI MCP Server

Free Text-to-Image & Text-to-Video generation via Agnes AI

PyPI version PyPI downloads CI License: MIT Python 3.10+ MCP Compatible

English | δΈ­ζ–‡


πŸš€ Quick Start

# 1. Install (one command)
pip install agnes-mcp

# 2. Get a free API key at https://agnes-ai.com

# 3. Add to your MCP client config:

Claude Desktop / Cursor / Windsurf (claude_desktop_config.json or equivalent):

{
  "mcpServers": {
    "agnes-mcp": {
      "command": "uvx",
      "args": ["agnes-mcp"],
      "env": {
        "AGNES_API_KEY": "your-api-key-here"
      }
    }
  }
}

Codex (config.toml):

[mcp_servers.agnes_mcp]
command = "uvx"
args = ["agnes-mcp"]

[mcp_servers.agnes_mcp.env]
AGNES_API_KEY = "your-api-key-here"

That's it! Now you can generate images and videos directly from your AI assistant.


Related MCP server: Agnes Video MCP Server

✨ Why Agnes MCP?

Feature

Agnes MCP

Other AI Image Services

Price

$0 / image, $0 / second

$0.02 - $0.08 / image

Text-to-Image

βœ… 2 models (2.0 & 2.1 Flash)

βœ… Usually 1 model

Image-to-Image

βœ… Reference image + prompt

❌ or limited

Batch Generation

βœ… 1-4 images at once

❌

Text-to-Video

βœ… Up to 18s, 1080p

❌ or paid only

Image-to-Video

βœ… Static image β†’ video

❌ or paid only

Multi-image Video

βœ… Keyframe animation

❌

Auto Download

βœ… Saves locally automatically

❌ Manual download

MCP Standard

βœ… Full compliance

Varies

Yes, it's completely free. Agnes AI currently offers all image and video generation at $0. Just register and get an API key.


πŸ–ΌοΈ Demo

Text-to-Image (agnes-image-2.1-flash)

"A majestic dragon flying over a Chinese mountain landscape at sunset, cinematic lighting, epic fantasy art"

Dragon over mountains

Text-to-Image (agnes-image-2.0-flash)

"A cozy Japanese ramen shop at night, warm lantern light, rain falling, anime style"

Ramen shop at night


πŸ“¦ Tools

Tool

Description

Example

text_to_image

Generate image(s) from text

prompt: "a cat" + optional n: 4, images: [ref_url]

image_to_image

Generate from reference image(s) + text

prompt: "make it cyberpunk" + images: [url]

text_to_video

Generate video from text/image(s)

prompt: "a cat dancing" + optional mode, num_inference_steps

image_to_video

Animate a static image into video

prompt: "zoom in slowly" + image: "url"

keyframe_animation

Smooth transition between keyframe images

prompt: "morph scene" + images: [url1, url2, ...]

check_video_status

Check async video task status

video_id: "xxx" or task_id: "xxx"


βš™οΈ Environment Variables

Variable

Required

Default

Description

AGNES_API_KEY

Yes

-

Your Agnes AI API key

AGNES_API_BASE

No

https://apihub.agnes-ai.com/v1

API base URL

AGNES_DEFAULT_MODEL

No

agnes-image-2.1-flash

Default image model

AGNES_DEFAULT_SIZE

No

1024x768

Default image size


πŸ”‘ Get a Free API Key

  1. Visit https://agnes-ai.com

  2. Create an account (free)

  3. Go to Console β†’ API Keys β†’ Create

  4. Copy the key and paste into your config


βœ… Supported Clients

  • Claude Desktop

  • Codex (OpenAI)

  • Cursor

  • Windsurf

  • Cherry Studio

  • Any MCP client with stdio transport


πŸ“‹ Changelog

v0.3.0 (2026-06-28)

  • ✨ New tool: image_to_video β€” animate a static image into video

  • ✨ New tool: keyframe_animation β€” smooth transitions between multiple keyframe images

  • ✨ text_to_video: added mode and num_inference_steps parameters

  • ✨ create_video_task / generate_video: support mode (e.g. ti2vid, keyframes) and num_inference_steps

  • βœ… 28 tests passing

v0.2.0 (2026-06-27)

  • ✨ New tool: image_to_image β€” generate from reference image(s) + prompt

  • ✨ text_to_image: batch generation (n: 1-4) and multi-image composition (images)

  • ✨ text_to_video: multi-image video / keyframe animation (images)

  • πŸ› Unified multi-image download logic

  • βœ… 19 tests passing

v0.1.1 (2026-06-26)

  • πŸš€ Initial public release

  • text_to_image, text_to_video, check_video_status

  • Async httpx with retry mechanism

  • Auto-download to local filesystem


🀝 Contributing

See CONTRIBUTING.md for guidelines.


πŸ“„ License

MIT

Available Tools

6 tools
check_video_statusA

Check the status of a video generation task.

Args: video_id: The video_id returned from text_to_video. task_id: The task_id returned from text_to_video (alternative).

Returns: dict with task_id, video_id, status, progress, video_url, seconds, size, error.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idNo
video_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior3/5

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

No annotations are provided, so the description must convey behavioral traits. It details the return dict (task_id, video_id, status, progress, video_url, seconds, size, error), which is transparent about output. However, it does not mention that this is a read-only operation, whether it can be called multiple times, or if there are side effects. The description covers the output but lacks operational context.

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 structured as a docstring with clear sections: purpose, args, and returns. It is concise with no unnecessary words, and the most important information (purpose and parameter origins) is front-loaded.

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

Completeness5/5

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

For a simple status-check tool with two parameters and an output schema (detailed in the description's returns section), the description is complete. It covers purpose, parameter sources, and return fields, providing sufficient information for an agent to invoke the tool correctly.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must add meaning. It explains that both video_id and task_id are returned from text_to_video, and are alternative identifiers. This adds critical context beyond the bare schema, enabling correct usage.

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 clearly states the tool's purpose: 'Check the status of a video generation task.' This is a specific verb-resource pair, and it distinguishes from sibling tools like text_to_video (which initiates generation) and text_to_image (different modality).

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

Usage Guidelines4/5

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

The description explicitly ties the parameters to the output of text_to_video, indicating the context of use: after initiating a video generation task. It also notes that the two parameters are alternatives. However, it does not explicitly state when not to use it or provide alternative tools for other scenarios.

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

image_to_imageA

Generate new image(s) based on reference image(s) and a text prompt.

This is image-to-image generation: provide one or more reference images (as URLs) along with a text prompt describing the desired output.

Args: prompt: Text description guiding the generation. images: List of reference image URLs (at least one required). model: Model name (agnes-image-2.0-flash or agnes-image-2.1-flash). size: Output size (e.g. 1024x768, 1024x1024, 768x1024). n: Number of images to generate (1-4). Default: 1. output_dir: Directory to save the downloaded image(s). Defaults to ~/agnes_output. return_mode: 'url' for image URL, 'b64' for base64 + local save.

Returns: dict with url, local_path, model, size, n, images.

ParametersJSON Schema
NameRequiredDescriptionDefault
nNo
sizeNo1024x768
modelNoagnes-image-2.1-flash
imagesYes
promptYes
output_dirNo
return_modeNourl

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description bears full responsibility. It discloses that the tool generates images, accepts image URLs, and returns a dict with url, local_path, etc. It mentions saving locally and return modes. It does not cover potential rate limits or file size constraints, but the core behavior is transparent.

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

Conciseness4/5

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

The description is well-structured with 'Args' and 'Returns' sections, making it easy to parse. It is concise, with only minor redundancy in the opening sentences. Every sentence provides value, though a slight trim could improve focus.

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 7 parameters (2 required) and an output schema, the description covers all inputs and outputs. It explains each parameter's role and the return format. No critical gaps are present, though it could mention that 'images' must be URLs. Overall, it is complete enough for an agent to use effectively.

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?

Schema description coverage is 0%, meaning no parameter descriptions in the schema. However, the tool description lists all 7 parameters with explanations, defaults, and allowed values (e.g., model names, size formats). This adds significant meaning beyond the bare schema, fulfilling the compensation requirement.

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 clearly states the tool's purpose: 'Generate new image(s) based on reference image(s) and a text prompt.' It uses specific verbs ('generate') and resources ('image(s)'), and distinguishes from sibling tools like text_to_image, which lacks reference images. The title is absent but the description compensates.

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

Usage Guidelines4/5

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

The description explains that reference images are required and a text prompt guides generation. It lists parameters and their defaults, providing context. However, it does not explicitly state when to use this tool over alternatives (e.g., text_to_image) or when not to use it. Still, the purpose is clear enough for an agent to infer appropriate usage.

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

image_to_videoA

Animate a static image into a video using Agnes AI.

Provide a single image URL (or Data URI base64) and a text prompt describing the desired motion/animation.

This is an async operation that polls until completion (may take several minutes).

Args: prompt: Text description of the desired motion/animation. image: Input image URL or Data URI base64 (required). model: Model name. Default: agnes-video-v2.0 width: Video width. Default: 1152 height: Video height. Default: 768 num_frames: Total frames (8n+1 rule, max 441). Common values: 81(~3s), 121(~5s), 241(~10s), 441(~18s) frame_rate: FPS, 1-60. Default: 24 negative_prompt: Optional negative prompt to exclude from generation. seed: Optional random seed (-1 for random). num_inference_steps: Number of inference steps. Optional. output_dir: Directory to save the downloaded video. Defaults to ~/agnes_output.

Returns: dict with video_id, status, video_url, local_path, seconds, size.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
imageYes
modelNoagnes-video-v2.0
widthNo
heightNo
promptYes
frame_rateNo
num_framesNo
output_dirNo
negative_promptNo
num_inference_stepsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

The description discloses the async nature (polls until completion, may take minutes) and return values (dict with video_id, etc.), which are beyond the schema. With no annotations, this is valuable context, though it lacks details on failure modes or quotas.

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 concise and well-structured: a one-sentence summary, one paragraph on async behavior, then a bulleted Args list. Every sentence adds value, and the most important information is front-loaded.

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

Completeness5/5

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

For a complex async tool with many parameters, the description covers input, process, and output comprehensibly. It explains the polling mechanism and return dict, making the tool's behavior fully understandable.

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

Parameters5/5

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

All 11 parameters are explained in the Args list, adding meaning beyond the bare-bones schema (0% coverage). For example, num_frames includes the '8n+1 rule' and common values with approximate durations, which is highly informative.

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 it animates a static image into a video, specifying input types (image URL/base64, text prompt). It is specific and distinct from siblings like text_to_video (no image input) or image_to_image (no video output), but does not explicitly differentiate usage cases.

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?

Usage is implied through required inputs (image and prompt), suggesting when the tool is appropriate. However, no explicit guidance on when to use alternatives or when not to use this tool is provided, leaving the agent to infer usage context.

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

keyframe_animationA

Generate a smooth video transitioning between multiple keyframe images.

Provide 2+ image URLs as keyframes. The model generates a video that smoothly transitions between them, guided by the text prompt.

This is an async operation that polls until completion (may take several minutes).

Args: prompt: Text description guiding the animation and transitions. images: List of keyframe image URLs (at least 2 recommended). model: Model name. Default: agnes-video-v2.0 width: Video width. Default: 1152 height: Video height. Default: 768 num_frames: Total frames (8n+1 rule, max 441). Common values: 81(~3s), 121(~5s), 241(~10s), 441(~18s) frame_rate: FPS, 1-60. Default: 24 negative_prompt: Optional negative prompt to exclude from generation. seed: Optional random seed (-1 for random). num_inference_steps: Number of inference steps. Optional. output_dir: Directory to save the downloaded video. Defaults to ~/agnes_output.

Returns: dict with video_id, status, video_url, local_path, seconds, size.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
modelNoagnes-video-v2.0
widthNo
heightNo
imagesYes
promptYes
frame_rateNo
num_framesNo
output_dirNo
negative_promptNo
num_inference_stepsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description fully covers behavioral traits: async operation with polling, potential multi-minute runtime, return dict with video_id/status/url/path/seconds/size. It also explains the 8n+1 frame count rule, which is critical for correct usage.

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 core action, followed by structured Args section using consistent formatting. Every sentence adds value without redundancy, given the complexity of the tool.

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

Completeness5/5

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

For an 11-parameter tool with 2 required, no enums, and existing output schema, the description comprehensively covers all aspects: input requirements, parameter defaults and ranges, async behavior, return structure, and output location. No gaps are evident.

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

Parameters5/5

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

Schema coverage is 0%, yet the description adds rich semantics for all 11 parameters: explains the 'images' list requirement, default model, common num_frames values with duration approximations, frame_rate range, optional negative_prompt/seed/steps, and output_dir default. This far exceeds minimal schema information.

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 clearly states it generates a smooth video transitioning between multiple keyframe images, with text prompt guidance. It uniquely distinguishes from sibling tools like image_to_video (single image) and text_to_video (no images) by requiring 2+ image URLs as keyframes.

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

Usage Guidelines4/5

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

The description specifies to provide 2+ image URLs and that it's an async operation polling for completion. It hints at when to use (multiple images) but does not explicitly forbid single-image use or mention alternatives like image_to_video for single-image input.

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

text_to_imageA

Generate images from text using Agnes AI.

Supports two models:

  • agnes-image-2.0-flash: Standard quality

  • agnes-image-2.1-flash: Enhanced quality (recommended)

Args: prompt: Text description of the image to generate. model: Model name (agnes-image-2.0-flash or agnes-image-2.1-flash). size: Output size (e.g. 1024x768, 1024x1024, 768x1024). n: Number of images to generate (1-4). Default: 1. images: Optional list of reference image URLs for multi-image composition. output_dir: Directory to save the downloaded image(s). Defaults to ~/agnes_output. return_mode: 'url' for image URL, 'b64' for base64 + local save.

Returns: dict with url, local_path, model, size, n, images.

ParametersJSON Schema
NameRequiredDescriptionDefault
nNo
sizeNo1024x768
modelNoagnes-image-2.1-flash
imagesNo
promptYes
output_dirNo
return_modeNourl

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses the tool's behavior: generating images, saving to disk, and returning a dict. However, it does not mention authentication requirements, rate limits, or potential side effects beyond file saving.

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 well-structured: a one-line purpose, bullet points for model options, an Args section with parameter details, and a Returns section. It is front-loaded with the core action and remains concise without unnecessary repetition.

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?

The description covers all parameters, model choices, and return format. It lacks error handling information and prerequisites (e.g., API key setup) but is otherwise sufficient for an agent to invoke the tool correctly. The presence of an output schema makes the return description less critical.

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

Parameters5/5

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

The input schema has 0% description coverage, so the description fully compensates. Each parameter (prompt, model, size, n, images, output_dir, return_mode) is clearly explained with constraints, defaults, and allowed values (e.g., n=1-4). This adds significant value beyond the raw schema.

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 clearly states the tool generates images from text using Agnes AI. The verb 'generate' and resource 'images from text' are specific. Sibling tools like image_to_image and text_to_video are differentiated by name and context, making the purpose unambiguous.

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

Usage Guidelines4/5

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

The description provides guidance on model selection, recommending agnes-image-2.1-flash for enhanced quality. However, it does not explicitly state when to use this tool over siblings like image_to_image or text_to_video, although the tool name suffices for basic differentiation.

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

text_to_videoA

Generate a video from text (and optional image(s)) using Agnes AI.

This is an async operation that polls until completion (may take several minutes).

Args: prompt: Text description of the video content. model: Model name. Default: agnes-video-v2.0 width: Video width. Default: 1152 height: Video height. Default: 768 num_frames: Total frames (8n+1 rule, max 441). Common values: 81(~3s), 121(~5s), 241(~10s), 441(~18s) frame_rate: FPS, 1-60. Default: 24 image: Optional single image URL for image-to-video. images: Optional list of image URLs for multi-image video / keyframe animation. When provided, 'image' is ignored. negative_prompt: Optional negative prompt to exclude from generation. seed: Optional random seed (-1 for random). mode: Generation mode (e.g. 'ti2vid', 'keyframes'). Optional. num_inference_steps: Number of inference steps. Optional. output_dir: Directory to save the downloaded video. Defaults to ~/agnes_output.

Returns: dict with video_id, status, video_url, local_path, seconds, size.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNo
seedNo
imageNo
modelNoagnes-video-v2.0
widthNo
heightNo
imagesNo
promptYes
frame_rateNo
num_framesNo
output_dirNo
negative_promptNo
num_inference_stepsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

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

In the absence of annotations, the description discloses the async polling behavior and the return format (dict with keys). It does not mention potential side effects, but writes are not expected. It could add more on error handling or timeouts.

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

Conciseness4/5

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

The description is well-structured with sections for Args and Returns, but it is somewhat lengthy. Every sentence adds value, though some parameter details could be tighter. Still, it is appropriately front-loaded.

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

Completeness5/5

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

Given the tool's complexity (13 parameters, async behavior, output schema), the description covers purpose, parameters, behavior, and return format adequately. It is complete enough for an agent to select and invoke the tool correctly.

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

Parameters5/5

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

Schema description coverage is 0%, so the description bears full responsibility. It explains all 13 parameters with defaults, constraints (e.g., num_frames formula), precedence (image vs images), and common values, adding substantial meaning beyond the schema.

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 clearly states 'Generate a video from text (and optional image(s))', which is a specific verb-resource pair. It also distinguishes from siblings like image_to_video and text_to_image by indicating the primary input modality.

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

Usage Guidelines4/5

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

It notes that the operation is async and polls until completion, giving temporal expectations. It does not explicitly state when not to use this tool or name alternatives, but the context of siblings and the parameter descriptions imply usage scenarios.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv0.3.1
    • Addedimage_to_video
    • Addedkeyframe_animation
    • Changedtext_to_video2 fields changed
      • addedInput schema / properties / mode
        Added value: +{
        +  "default": "",
        +  "title": "Mode",
        +  "type": "string"
        +}
      • addedInput schema / properties / num_inference_steps
        Added value: +{
        +  "default": -1,
        +  "title": "Num Inference Steps",
        +  "type": "integer"
        +}
  2. 3 tool updatesv0.2.0
    • Addedimage_to_image
    • Changedtext_to_image2 fields changed
      • addedInput schema / properties / images
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "title": "Images"
        +}
      • addedInput schema / properties / n
        Added value: +{
        +  "default": 1,
        +  "title": "N",
        +  "type": "integer"
        +}
    • Changedtext_to_video1 field changed
      • addedInput schema / properties / images
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "title": "Images"
        +}
  3. 3 tool updatesv0.1.0
    • First observedcheck_video_status
    • First observedtext_to_image
    • First observedtext_to_video

TDQS

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct operation: image generation, video generation, and status checking. There is no functional overlap.

Naming Consistency5/5

All tools use a consistent snake_case verb_noun pattern: text_to_image, text_to_video, check_video_status.

Tool Count5/5

Three tools is appropriate for a focused generative AI server covering image and video generation and async status checking.

Completeness4/5

The surface covers core generation and status checking. Missing listing or management of past generations, but not critical for the domain.

Maintenance

ActivityStale
ResponsivenessNo issues

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/MSWEIMZ/agnes-mcp'

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