Skip to main content
Glama
runapi-ai

Ideogram V3 MCP Server

by runapi-ai

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-mcp

Use project scope when the server should be shared with a repository:

claude mcp add ideogram-v3 -s project -- npx -y @runapi.ai/ideogram-v3-mcp

Codex, 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

edit_image

Yes

Create an Ideogram V3 edit image task and optionally wait for a terminal status. Returns the task id, status, and output URLs.

reframe_image

Yes

Create an Ideogram V3 reframe image task and optionally wait for a terminal status. Returns the task id, status, and output URLs.

remix_image

Yes

Create an Ideogram V3 remix image task and optionally wait for a terminal status. Returns the task id, status, and output URLs.

text_to_image

Yes

Create an Ideogram V3 text to image task and optionally wait for a terminal status. Returns the task id, status, and output URLs.

get_task

Yes

Fetch the current status and latest payload for an existing task.

check_pricing

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

edit_image

ideogram-v3-character-edit, ideogram-v3-edit

reframe_image

ideogram-v3-reframe

remix_image

ideogram-v3-character-remix, ideogram-v3-remix

text_to_image

ideogram-v3-character, ideogram-v3-text-to-image

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:

  1. RUNAPI_API_KEY environment variable, useful for headless and CI hosts

  2. ~/.config/runapi/config.json, created by the MCP login tool or runapi login

  3. No 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.


Resource

URL

Ideogram V3 model page

https://runapi.ai/models/ideogram-v3

npm package

@runapi.ai/ideogram-v3-mcp

GitHub repository

runapi-ai/ideogram-v3-mcp

RunAPI MCP overview

runapi.ai/mcp

RunAPI docs

runapi.ai/docs


License

Licensed under the Apache License, Version 2.0.

Available Tools

7 tools
check_pricingB

Look up RunAPI pricing for the ideogram-v3 model line.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelNoModel slug. Defaults to the line's primary model.
actionNoEndpoint name. Defaults to the endpoint that offers the model.

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/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: '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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
waitNoPoll until the task reaches a terminal status.
modelNoRunAPI model slug for this model line.
styleNo
promptNo
mask_urlYes
timeout_msNo
callback_urlNo
output_countNo
rendering_speedNo
poll_interval_msNo
source_image_urlYes
reference_image_urlsNo
enable_prompt_expansionNo

TDQS

C2.4/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness1/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYesAsynchronous endpoint the task was created on.
task_idYesTask id returned when the task was created.

TDQS

B3.2/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 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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
forceNoRe-run browser login when the current credential comes from the local config file.

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
waitNoPoll until the task reaches a terminal status.
modelNoRunAPI model slug for this model line.
styleNo
timeout_msNo
aspect_ratioNo
callback_urlNo
output_countNo
rendering_speedNo
poll_interval_msNo
source_image_urlYes

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
waitNoPoll until the task reaches a terminal status.
modelNoRunAPI model slug for this model line.
styleNo
promptNo
strengthNo
timeout_msNo
aspect_ratioNo
callback_urlNo
output_countNo
negative_promptNo
rendering_speedNo
poll_interval_msNo
source_image_urlYes
reference_mask_urlsNo
reference_image_urlsNo
enable_prompt_expansionNo
style_reference_image_urlsNo

TDQS

C2.4/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness1/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
waitNoPoll until the task reaches a terminal status.
modelNoRunAPI model slug for this model line.
styleNo
promptNo
timeout_msNo
aspect_ratioNo
callback_urlNo
output_countNo
negative_promptNo
rendering_speedNo
poll_interval_msNo
reference_image_urlsNo
enable_prompt_expansionNo

TDQS

B3/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness1/5

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.

Parameters1/5

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.

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 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.

Usage Guidelines3/5

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.

  1. 6 tool updatesv0.1.7
    • Changededit_image9 fields changed
      • addedInput schema / properties / callback_url
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / enable_prompt_expansion
        Added value: +{
        +  "type": "boolean"
        +}
      • addedInput schema / properties / mask_url
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / prompt
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / reference_image_urls
        Added value: +{
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / seed
        Added value: +{
        +  "type": "number"
        +}
      • addedInput schema / properties / source_image_url / type
        Added value: +"string"
      • removedInput schema / properties / style / enum
        Removed value: -[
        -  "auto",
        -  "realistic",
        -  "fiction"
        -]
      • addedInput schema / required
        Added value: +[
        +  "source_image_url",
        +  "mask_url"
        +]
    • Changedget_task1 field changed
      • changedInput schema / properties / action / description
        Previous value: -"Endpoint the task was created on."New value: +"Asynchronous endpoint the task was created on."
    • Addedlogin
    • Changedreframe_image4 fields changed
      • addedInput schema / properties / callback_url
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / seed
        Added value: +{
        +  "type": "number"
        +}
      • addedInput schema / properties / source_image_url / type
        Added value: +"string"
      • addedInput schema / required
        Added value: +[
        +  "source_image_url"
        +]
    • Changedremix_image12 fields changed
      • addedInput schema / properties / callback_url
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / enable_prompt_expansion
        Added value: +{
        +  "type": "boolean"
        +}
      • addedInput schema / properties / negative_prompt
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / prompt
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / reference_image_urls
        Added value: +{
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / reference_mask_urls
        Added value: +{
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / seed
        Added value: +{
        +  "type": "number"
        +}
      • addedInput schema / properties / source_image_url / type
        Added value: +"string"
      • addedInput schema / properties / strength
        Added value: +{
        +  "type": "number"
        +}
      • addedInput schema / properties / style_reference_image_urls / items
        Added value: +{}
      • addedInput schema / properties / style_reference_image_urls / type
        Added value: +"array"
      • addedInput schema / required
        Added value: +[
        +  "source_image_url"
        +]
    • Changedtext_to_image6 fields changed
      • addedInput schema / properties / callback_url
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / enable_prompt_expansion
        Added value: +{
        +  "type": "boolean"
        +}
      • addedInput schema / properties / negative_prompt
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / prompt
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / reference_image_urls
        Added value: +{
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / seed
        Added value: +{
        +  "type": "number"
        +}
  2. 6 tool updatesv0.1.0
    • First observedcheck_pricing
    • First observededit_image
    • First observedget_task
    • First observedreframe_image
    • First observedremix_image
    • First observedtext_to_image

TDQS

B3.3/5.0
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness4/5

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

ActivitySlowing
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/runapi-ai/ideogram-v3-mcp'

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