Ideogram V3 MCP Server
The Ideogram V3 MCP Server provides AI agents with direct access to Ideogram V3 image generation capabilities via RunAPI, enabling the following:
Generate images from text (
text_to_image): Create images from text prompts usingideogram-v3-text-to-imageorideogram-v3-charactermodels, with options for style, aspect ratio, output count, and rendering speed.Edit images (
edit_image): Modify existing images usingideogram-v3-editorideogram-v3-character-editmodels.Reframe images (
reframe_image): Resize or reframe existing images to different aspect ratios (1:1, 3:4, 9:16, 4:3, 16:9) usingideogram-v3-reframe.Remix images (
remix_image): Blend or remix source images (with optional style reference images) usingideogram-v3-remixorideogram-v3-character-remixmodels.Poll task status (
get_task): Fetch the current status and output URLs for any previously created task using its task ID.Check pricing (
check_pricing): Look up current costs for any Ideogram V3 model and endpoint — no API key required.Flexible task execution: All creation tools support a
waitflag to either poll synchronously until completion or return immediately with a task ID for async workflows.
The server exposes 7 model variants across 4 endpoints and is compatible with MCP hosts such as Claude Code, Cursor, Windsurf, VS Code, and others.
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., "@Ideogram V3 MCP ServerGenerate an image of a serene beach at sunset."
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.
Why This Package?
@runapi.ai/ideogram-v3-mcp is a focused Model Context Protocol server for the Ideogram V3 model line on RunAPI.
It gives MCP-compatible assistants direct access to 4 endpoints and 7 model variants without loading the full RunAPI catalog.
Use this per-model server when an agent should stay scoped to Ideogram V3. Use @runapi.ai/mcp when one assistant should discover every RunAPI model line.
Related MCP server: @runapi.ai/gpt-4o-image-mcp
Install
Add it to Claude Code:
claude mcp add ideogram-v3 -s user -- npx -y @runapi.ai/ideogram-v3-mcpUse project scope when the server should be shared with a repository:
claude mcp add ideogram-v3 -s project -- npx -y @runapi.ai/ideogram-v3-mcpCodex, Cursor, Windsurf, VS Code, Roo Code, and other MCP hosts can use the same stdio command:
{
"mcpServers": {
"ideogram-v3": {
"command": "npx",
"args": ["-y", "@runapi.ai/ideogram-v3-mcp"]
}
}
}check_pricing works before sign-in. For task creation and status polling, ask your assistant to call the login tool. It opens a browser login and saves credentials to ~/.config/runapi/config.json, the same file used by runapi login.
Headless and CI hosts can still set RUNAPI_API_KEY before starting the MCP host.
Ready-made examples are in examples/ for Claude, Cursor, Windsurf, VS Code, and Roo Code.
Tools
Tool | Auth | Purpose |
| Yes | Create an Ideogram V3 edit image task and optionally wait for a terminal status. Returns the task id, status, and output URLs. |
| Yes | Create an Ideogram V3 reframe image task and optionally wait for a terminal status. Returns the task id, status, and output URLs. |
| Yes | Create an Ideogram V3 remix image task and optionally wait for a terminal status. Returns the task id, status, and output URLs. |
| Yes | Create an Ideogram V3 text to image task and optionally wait for a terminal status. Returns the task id, status, and output URLs. |
| Yes | Fetch the current status and latest payload for an existing task. |
| No | Look up current pricing for a Ideogram V3 model and endpoint. |
Models
Ideogram V3 covers 7 model variants across 4 endpoints. Each tool accepts the models listed for it:
Tool | Models |
|
|
|
|
|
|
|
|
Model availability can change between releases. Use check_pricing or the Ideogram V3 model page for the current catalog view.
Agent Prompts
Ask your assistant in natural language; it can inspect pricing, create the task, and return the task id plus output URLs.
Create a task
Run an Ideogram V3 edit image task with RunAPI.The assistant can call check_pricing, then edit_image, and return the task id, status, and output URLs.
Submit without waiting
Create the task but don't wait for it to finish.The assistant calls the create tool with wait: false and returns the task id. Check on it later with get_task.
Check pricing before creating
Check current Ideogram V3 pricing, then create the task if it matches my request.The assistant calls check_pricing and can link to the Ideogram V3 model page for the canonical catalog entry.
Configuration
The server resolves auth in this order:
RUNAPI_API_KEYenvironment variable, useful for headless and CI hosts~/.config/runapi/config.json, created by the MCPlogintool orrunapi loginNo key, which still allows
check_pricing
The config file is normally managed by login. A pre-provisioned headless config can use:
{
"apiKey": "your_runapi_key"
}Do not commit real API keys.
Links
Resource | URL |
Ideogram V3 model page | |
npm package | |
GitHub repository | |
RunAPI MCP overview | |
RunAPI docs |
License
Licensed under the Apache License, Version 2.0.
Available Tools
7 toolscheck_pricingB
Look up RunAPI pricing for the ideogram-v3 model line.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model slug. Defaults to the line's primary model. | |
| action | No | Endpoint name. Defaults to the endpoint that offers the model. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosing behavioral traits. However, the description only states the basic function with no information about rate limits, authentication requirements, data freshness, or any side effects. For a read-only pricing lookup tool, this is minimal but acceptable, yet it fails to provide any added behavioral context beyond the trivial.
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 a single, concise sentence that clearly conveys the tool's purpose. There is no extraneous information, and it is well-structured for immediate understanding. Every word is necessary.
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 low complexity of the tool (two optional parameters, no nested objects, no output schema), the description is minimally adequate. However, it does not explain what the output looks like or any additional context (e.g., pricing format, units). For a simple lookup tool, this may be sufficient, but it is not fully complete.
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 already provides descriptions for both parameters (model and action), including enums and default behaviors. The description adds no additional meaning beyond what the schema offers. Since schema coverage is 100%, the baseline is 3, and the description does not elevate it.
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: 'Look up RunAPI pricing for the ideogram-v3 model line.' It specifies the verb (look up) and the resource (pricing for a specific model line). Although it does not explicitly distinguish itself from sibling tools, the siblings are action-oriented (edit_image, text_to_image, etc.), so the purpose is sufficiently clear.
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?
No guidance is provided on when to use this tool versus alternatives. The description only states what the tool does, with no mention of when it is appropriate or when to avoid it. Given the siblings are all action tools, the context implies usage for pricing queries, but explicit guidance is lacking.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_imageC
Create a Ideogram V3 task on RunAPI (edit image). Returns a task id, status, and output URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| wait | No | Poll until the task reaches a terminal status. | |
| model | No | RunAPI model slug for this model line. | |
| style | No | ||
| prompt | No | ||
| mask_url | Yes | ||
| timeout_ms | No | ||
| callback_url | No | ||
| output_count | No | ||
| rendering_speed | No | ||
| poll_interval_ms | No | ||
| source_image_url | Yes | ||
| reference_image_urls | No | ||
| enable_prompt_expansion | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions returning a task id, status, and output URLs, which implies an asynchronous task model, but it doesn't disclose that the tool can poll (via 'wait') or other behavioral aspects like error handling or side effects. This is only slightly more informative than typical bare descriptions.
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 appropriately concise and front-loaded: the first sentence identifies the core action and the second mentions return values. It avoids unnecessary words, though its brevity sacrifices detail that might be valuable.
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 tool has 14 parameters, no output schema, and no annotations, making it a complex tool. The description only covers the basic purpose and return values, leaving out critical information about parameter usage, defaults, polling behavior, and how to interpret the response. It is far from complete for an AI agent to invoke 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 only 14% across 14 parameters, and the description provides zero information about any parameters. With such low coverage, the description must compensate by explaining parameter roles or relationships, but it does nothing, leaving the agent to infer everything from parameter names and types.
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 creates an Ideogram V3 task for editing an image, providing a specific verb and resource. It mentions 'edit image' which distinguishes it somewhat from siblings like text_to_image, but it doesn't explicitly compare to reframe_image or remix_image.
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?
There is no guidance on when to use this tool versus alternatives. Sibling tools include reframe_image and remix_image, but the description offers no context for choosing one over the other, nor does it mention prerequisites or typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_taskB
Fetch the current status and latest result payload for a ideogram-v3 task.
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Asynchronous endpoint the task was created on. | |
| task_id | Yes | Task id returned when the task was created. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. The verb 'fetch' strongly implies a read-only, non-destructive operation, which provides some safety signal. However, it omits details about authentication requirements, error behavior on missing tasks, or whether the operation is idempotent, leaving gaps.
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 a single, front-loaded sentence that immediately states the action and key detail. There is no wasted wording, and it is appropriately short for a simple two-parameter get operation.
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?
There is no output schema, so the description should explain what the response contains, but it only says 'current status and latest result payload' without elaborating on the format or how statuses progress. It also fails to mention the asynchronous polling use case, making the description incomplete for an agent to fully understand the tool's role in a workflow.
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 100%, so the input schema already fully documents both 'task_id' and 'action'. The description adds no additional parameter semantics beyond stating the task type, which is not needed. The baseline of 3 is appropriate.
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 fetches the current status and latest result payload for an ideogram-v3 task, which is a specific verb+resource pairing. While it doesn't explicitly differentiate from sibling tools, the sibling names are all action-creation endpoints, so the purpose is 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 does not provide any guidance on when to use this tool versus alternatives. It doesn't mention that it should be used after creating a task or for polling, nor does it reference any sibling tools as the creation counterparts. Usage context is implied but not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
loginA
Authenticate RunAPI by opening a browser PKCE login flow and saving the API key to ~/.config/runapi/config.json.
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | Re-run browser login when the current credential comes from the local config file. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does well: it discloses that a browser is opened (user interaction), the PKCE flow is used, and an API key is written to a specific file. It does not mention edge cases like headless environments or overwriting behavior, but the core behavioral traits are clearly stated.
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 a single, well-structured sentence that front-loads the primary action ('Authenticate') and efficiently packs the mechanism and side effect without redundancy. Every word adds value.
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 login tool with one optional parameter and no output schema, the description covers the essential workflow and side effects. It does not explain return values, but that is a minor gap given the tool's primary purpose is to modify local configuration. The parameter behavior is fully specified in the schema.
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 100% since the only parameter 'force' has a full description in the schema. The tool description adds no additional parameter-level meaning beyond what the schema already provides, so the baseline of 3 is appropriate.
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 uses a specific verb ('Authenticate') with a clear resource ('RunAPI') and mechanism ('browser PKCE login flow'), distinctly separating it from sibling tools that handle image operations or pricing. It also specifies the side effect (saving API key to a config path), leaving no ambiguity about the tool's function.
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 implies clear usage: call when authentication is required, as it is the only auth tool among siblings. It does not explicitly state when not to use it or compare with alternatives, but the context makes the intended use obvious. The parameter 'force' in the schema adds usage nuance for re-authentication, though the description itself does not elaborate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reframe_imageC
Create a Ideogram V3 task on RunAPI (reframe image). Returns a task id, status, and output URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| wait | No | Poll until the task reaches a terminal status. | |
| model | No | RunAPI model slug for this model line. | |
| style | No | ||
| timeout_ms | No | ||
| aspect_ratio | No | ||
| callback_url | No | ||
| output_count | No | ||
| rendering_speed | No | ||
| poll_interval_ms | No | ||
| source_image_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description only states that it returns a task id, status, and output URLs, but does not disclose that this creates an asynchronous task that may require polling (despite the wait parameter) or that it may incur costs. With no annotations, the side effects are unclear.
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 a single sentence with no filler, making it concise. However, it is under-specified, and the minor grammar issue ('a Ideogram') slightly detracts from professionalism.
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?
With 11 parameters, no annotations, and no output schema, this description is too sparse. It does not explain the relationship to get_task for polling, the meaning of style/aspect_ratio/rendering_speed, or the expected response structure, making it insufficient for correct invocation.
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 only 18% parameter description coverage, and the description adds no parameter details. The required source_image_url is not described in either the schema or the description, leaving a critical parameter ambiguous.
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 uses the verb 'Create' with a specific resource ('Ideogram V3 task on RunAPI') and clarifies the operation with '(reframe image)'. This clearly distinguishes it from sibling tools like edit_image, remix_image, and text_to_image.
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?
No guidance is provided on when to use this tool versus alternatives such as remix_image or text_to_image. Prerequisites like authentication or the asynchronous task workflow are not mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remix_imageC
Create a Ideogram V3 task on RunAPI (remix image). Returns a task id, status, and output URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| wait | No | Poll until the task reaches a terminal status. | |
| model | No | RunAPI model slug for this model line. | |
| style | No | ||
| prompt | No | ||
| strength | No | ||
| timeout_ms | No | ||
| aspect_ratio | No | ||
| callback_url | No | ||
| output_count | No | ||
| negative_prompt | No | ||
| rendering_speed | No | ||
| poll_interval_ms | No | ||
| source_image_url | Yes | ||
| reference_mask_urls | No | ||
| reference_image_urls | No | ||
| enable_prompt_expansion | No | ||
| style_reference_image_urls | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for behavioral disclosure. It mentions returning a task id, status, and output URLs, which hints at asynchronous behavior, but it does not explain the async nature, potential side effects (e.g., credit usage), or whether the operation is destructive or requires authentication.
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 a single efficient sentence that packs in the action, resource, and return type. It is front-loaded with the key verb and object, and there is no redundancy or filler.
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 (18 parameters, no annotations, no output schema), the description is severely under-specified. It covers the basic purpose and return type but omits critical context such as asynchronous behavior, parameter semantics, and usage alternatives, making it far from complete.
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 only 11%, and the description adds no parameter explanations beyond the tool's basic purpose. The phrase 'remix image' hints at source_image_url, but none of the 18 parameters are clarified, leaving most of them undocumented.
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 a specific action ('Create a Ideogram V3 task') and names the resource ('RunAPI'), with the parenthetical '(remix image)' clarifying the operation type. However, it does not explicitly distinguish this tool from siblings like edit_image or reframe_image, which also involve image manipulation.
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?
No guidance is provided on when to use this tool versus alternatives. The description does not mention exclusions, prerequisites, or comparator to sibling tools like text_to_image or reframe_image, leaving the agent without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
text_to_imageB
Create a Ideogram V3 task on RunAPI (text to image). Returns a task id, status, and output URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| wait | No | Poll until the task reaches a terminal status. | |
| model | No | RunAPI model slug for this model line. | |
| style | No | ||
| prompt | No | ||
| timeout_ms | No | ||
| aspect_ratio | No | ||
| callback_url | No | ||
| output_count | No | ||
| negative_prompt | No | ||
| rendering_speed | No | ||
| poll_interval_ms | No | ||
| reference_image_urls | No | ||
| enable_prompt_expansion | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool returns a task id, status, and output URLs, but it omits behavioral details such as whether the task is asynchronous, whether the 'wait' parameter controls polling, authentication requirements, or potential side effects. This is minimal disclosure.
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 two sentences, front-loaded with the core action, and contains no redundant information. Every word adds value.
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?
With 14 parameters, no output schema, and no annotations, the description provides only a basic purpose. It does not explain how to construct a valid request, what the response includes beyond IDs and URLs, or the effects of optional parameters. This is critically incomplete for a tool with this complexity.
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 only 14% (2 of 14 parameters have descriptions). The description adds no parameter-level guidance, failing to explain the meaning or importance of parameters like prompt, aspect_ratio, or style. It does not compensate for the low schema coverage.
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 function: 'Create a Ideogram V3 task on RunAPI (text to image)' and immediately notes the return value: 'Returns a task id, status, and output URLs.' This distinguishes it from sibling tools like edit_image or remix_image, which imply different operations.
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 implies usage for text-to-image generation (as opposed to editing/reframing), but it does not explicitly state when to use this tool versus alternatives, nor does it list any exclusions or prerequisites. No guidance is given about scenarios where another sibling would be more appropriate.
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.
6 tool updates
v0.1.7- Changed
edit_image9 fields changed- added
Input schema / properties / callback_urlAdded value: +{ + "type": "string" +} - added
Input schema / properties / enable_prompt_expansionAdded value: +{ + "type": "boolean" +} - added
Input schema / properties / mask_urlAdded value: +{ + "type": "string" +} - added
Input schema / properties / promptAdded value: +{ + "type": "string" +} - added
Input schema / properties / reference_image_urlsAdded value: +{ + "items": {}, + "type": "array" +} - added
Input schema / properties / seedAdded value: +{ + "type": "number" +} - added
Input schema / properties / source_image_url / typeAdded value: +"string" - removed
Input schema / properties / style / enumRemoved value: -[ - "auto", - "realistic", - "fiction" -] - added
Input schema / requiredAdded value: +[ + "source_image_url", + "mask_url" +]
- Changed
get_task1 field changed- changed
Input schema / properties / action / descriptionPrevious value: -"Endpoint the task was created on."New value: +"Asynchronous endpoint the task was created on."
- Added
login - Changed
reframe_image4 fields changed- added
Input schema / properties / callback_urlAdded value: +{ + "type": "string" +} - added
Input schema / properties / seedAdded value: +{ + "type": "number" +} - added
Input schema / properties / source_image_url / typeAdded value: +"string" - added
Input schema / requiredAdded value: +[ + "source_image_url" +]
- Changed
remix_image12 fields changed- added
Input schema / properties / callback_urlAdded value: +{ + "type": "string" +} - added
Input schema / properties / enable_prompt_expansionAdded value: +{ + "type": "boolean" +} - added
Input schema / properties / negative_promptAdded value: +{ + "type": "string" +} - added
Input schema / properties / promptAdded value: +{ + "type": "string" +} - added
Input schema / properties / reference_image_urlsAdded value: +{ + "items": {}, + "type": "array" +} - added
Input schema / properties / reference_mask_urlsAdded value: +{ + "items": {}, + "type": "array" +} - added
Input schema / properties / seedAdded value: +{ + "type": "number" +} - added
Input schema / properties / source_image_url / typeAdded value: +"string" - added
Input schema / properties / strengthAdded value: +{ + "type": "number" +} - added
Input schema / properties / style_reference_image_urls / itemsAdded value: +{} - added
Input schema / properties / style_reference_image_urls / typeAdded value: +"array" - added
Input schema / requiredAdded value: +[ + "source_image_url" +]
- Changed
text_to_image6 fields changed- added
Input schema / properties / callback_urlAdded value: +{ + "type": "string" +} - added
Input schema / properties / enable_prompt_expansionAdded value: +{ + "type": "boolean" +} - added
Input schema / properties / negative_promptAdded value: +{ + "type": "string" +} - added
Input schema / properties / promptAdded value: +{ + "type": "string" +} - added
Input schema / properties / reference_image_urlsAdded value: +{ + "items": {}, + "type": "array" +} - added
Input schema / properties / seedAdded value: +{ + "type": "number" +}
6 tool updates
v0.1.0- First observed
check_pricing - First observed
edit_image - First observed
get_task - First observed
reframe_image - First observed
remix_image - First observed
text_to_image
TDQS
Each tool serves a clearly distinct purpose: authentication, pricing lookup, task status retrieval, and four different image generation modes (text-to-image, edit, reframe, remix). There is no functional overlap, so an agent can easily select the correct tool.
Most tool names follow a consistent verb_noun pattern (e.g., get_task, edit_image, check_pricing), but 'login' is a bare verb and 'text_to_image' is a compound descriptor rather than a verb+object structure. These minor deviations are still readable and predictable.
Seven tools is well within the ideal range for a domain-specific server, covering authentication, pricing, all major generation modes, and task status checking without unnecessary redundancy or bloat.
The core image generation workflows are well represented, including text-to-image, editing, reframing, and remixing, plus status retrieval. Minor gaps exist, such as no task cancellation or listing, but these are not critical for the primary use case.
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
MCP server for Qwen Image 3 AI image generation
MCP server for Google Veo AI video generation
MCP server for Midjourney AI image generation and editing
MCP server for Wan AI video generation
Related MCP Servers
- AlicenseAqualityBmaintenanceOne MCP server for music, image, video, and audio generation across Suno, Grok Imagine, Seedance, Kling, Hailuo, Wan, VEO, Ideogram, and GPT Image 2. Generate, edit, upscale, reframe, and master through one API key and one credit pool.161206MIT
- AlicenseAqualityAmaintenanceMCP server for GPT-4o Image model line, enabling text-to-image task creation, status polling, and pricing checks via RunAPI.4110Apache 2.0
- AlicenseAqualityAmaintenanceRunAPI MCP server for the Imagen 4 model line. Create tasks, poll their status, and check pricing through a single RunAPI API key.565Apache 2.0
- AlicenseBqualityAmaintenanceMCP server for Veo 3.1 video generation models, enabling task creation (extend, text-to-video, upscale), status polling, and pricing checks via RunAPI.6711Apache 2.0
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/runapi-ai/ideogram-v3-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server