Agnes Video MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGNES_API_KEY | Yes | Agnes AI API key | |
| AGNES_VIDEO_MODEL | No | Model name | agnes-video-v2.0 |
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
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| agnes_video_createA | Create a video generation task using Agnes Video v2.0. Video generation is ASYNCHRONOUS — submit a task, then use agnes_video_poll to check results. Supports text-to-video (prompt only) and image-to-video (with imageUrl). num_frames must follow 8n+1 pattern (e.g. 121, 241, 361, 441) |
| agnes_video_pollA | Poll a video generation task by task_id to check progress. Returns task status and video URL when completed. The task_id is returned by agnes_video_create. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools have completely distinct purposes: one creates a video generation task, the other polls for its result. There is no overlap or ambiguity.
Both tools follow a consistent 'agnesis_video_verb' pattern using snake_case. 'create' and 'poll' are clear and parallel verbs.
With only 2 tools, the server is minimal but sufficient for the core asynchronous workflow of creating and polling a video task. A slight expansion (e.g., cancel or list) could be beneficial but is not necessary.
The tool surface covers the essential create-and-poll lifecycle for video generation. However, there is no way to cancel a task or list all tasks, which are minor gaps.