Agnes AI MCP Server
The Agnes AI MCP Server provides free text-to-image and text-to-video generation via the Agnes AI API, with automatic local downloads to ~/agnes_output.
text_to_image: Generate 1β4 images from a text prompt using
agnes-image-2.0-flashoragnes-image-2.1-flashmodels, with optional reference images for composition and configurable output size.image_to_image: Transform existing images by providing one or more reference image URLs combined with a text prompt (batch up to 4 images).
text_to_video: Generate videos from a text prompt (and optionally images), with control over resolution (up to 1080p), frame count (up to ~18s), frame rate, inference steps, and seed.
image_to_video: Animate a static image into a video by providing an image URL or base64 Data URI and a prompt describing the desired motion.
keyframe_animation: Create a smooth video transition between 2 or more keyframe images, guided by a text prompt.
check_video_status: Poll the status of an asynchronous video generation task using a
video_idortask_id, retrieving progress, URL, and metadata.
All features are completely free ($0 per image, $0 per second of video) and compatible with Claude Desktop, Cursor, Windsurf, and any MCP stdio client.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Agnes AI MCP Servergenerate an image of a futuristic cityscape at night"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ο»Ώ
π¨ Agnes AI MCP Server
Free Text-to-Image & Text-to-Video generation via Agnes AI
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"

Text-to-Image (agnes-image-2.0-flash)
"A cozy Japanese ramen shop at night, warm lantern light, rain falling, anime style"

π¦ Tools
Tool | Description | Example |
| Generate image(s) from text |
|
| Generate from reference image(s) + text |
|
| Generate video from text/image(s) |
|
| Animate a static image into video |
|
| Smooth transition between keyframe images |
|
| Check async video task status |
|
βοΈ Environment Variables
Variable | Required | Default | Description |
| Yes | - | Your Agnes AI API key |
| No |
| API base URL |
| No |
| Default image model |
| No |
| Default image size |
π Get a Free API Key
Visit https://agnes-ai.com
Create an account (free)
Go to Console β API Keys β Create
Copy the key and paste into your config
β Supported Clients
Claude Desktop
Codex (OpenAI)
Cursor
Windsurf
Cherry Studio
Any MCP client with
stdiotransport
π 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: addedmodeandnum_inference_stepsparametersβ¨
create_video_task/generate_video: supportmode(e.g.ti2vid,keyframes) andnum_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 toolscheck_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.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | No | ||
| video_id | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | ||
| size | No | 1024x768 | |
| model | No | agnes-image-2.1-flash | |
| images | Yes | ||
| prompt | Yes | ||
| output_dir | No | ||
| return_mode | No | url |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| image | Yes | ||
| model | No | agnes-video-v2.0 | |
| width | No | ||
| height | No | ||
| prompt | Yes | ||
| frame_rate | No | ||
| num_frames | No | ||
| output_dir | No | ||
| negative_prompt | No | ||
| num_inference_steps | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| model | No | agnes-video-v2.0 | |
| width | No | ||
| height | No | ||
| images | Yes | ||
| prompt | Yes | ||
| frame_rate | No | ||
| num_frames | No | ||
| output_dir | No | ||
| negative_prompt | No | ||
| num_inference_steps | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | ||
| size | No | 1024x768 | |
| model | No | agnes-image-2.1-flash | |
| images | No | ||
| prompt | Yes | ||
| output_dir | No | ||
| return_mode | No | url |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | ||
| seed | No | ||
| image | No | ||
| model | No | agnes-video-v2.0 | |
| width | No | ||
| height | No | ||
| images | No | ||
| prompt | Yes | ||
| frame_rate | No | ||
| num_frames | No | ||
| output_dir | No | ||
| negative_prompt | No | ||
| num_inference_steps | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
3 tool updates
v0.3.1- Added
image_to_video - Added
keyframe_animation - Changed
text_to_video2 fields changed- added
Input schema / properties / modeAdded value: +{ + "default": "", + "title": "Mode", + "type": "string" +} - added
Input schema / properties / num_inference_stepsAdded value: +{ + "default": -1, + "title": "Num Inference Steps", + "type": "integer" +}
3 tool updates
v0.2.0- Added
image_to_image - Changed
text_to_image2 fields changed- added
Input schema / properties / imagesAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Images" +} - added
Input schema / properties / nAdded value: +{ + "default": 1, + "title": "N", + "type": "integer" +}
- Changed
text_to_video1 field changed- added
Input schema / properties / imagesAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Images" +}
3 tool updates
v0.1.0- First observed
check_video_status - First observed
text_to_image - First observed
text_to_video
TDQS
Each tool targets a distinct operation: image generation, video generation, and status checking. There is no functional overlap.
All tools use a consistent snake_case verb_noun pattern: text_to_image, text_to_video, check_video_status.
Three tools is appropriate for a focused generative AI server covering image and video generation and async status checking.
The surface covers core generation and status checking. Missing listing or management of past generations, but not critical for the domain.
Maintenance
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
Generate AI images, videos, music, SFX & speech in any AI assistant. Results appear inline in chat.
Generate AI images and videos from any compatible MCP client.
Generate AI images, video, music, and sound effects, and upscale them, from any MCP client.
Generate images, videos, voiceovers, and captions from a chat prompt.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables text-to-image generation using Agnes Image 2.1 Flash via OpenAI-compatible API, supporting aspect ratios, custom resolution, and multi-image generation.1331MIT
- AlicenseAqualityCmaintenanceEnables video generation from text prompts or images using Agnes AI's video models, with async task submission and status polling.227MIT
- FlicenseAqualityAmaintenanceEnables AI assistants to generate images and videos via the Agnes AI API, supporting text-to-image, image-to-image, and video generation.31-
- AlicenseNot gradedqualityDmaintenanceEnables image and video generation from text, image editing, and text-to-video workflows using AI models via OpenRouter and fal.ai.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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