@runapi.ai/flux-kontext-mcp
This MCP server provides focused access to RunAPI's Flux Kontext image generation API, enabling AI agents to create images, monitor tasks, and check pricing.
Generate images from text (
text_to_image): Submit a prompt to create an image usingflux-kontext-maxorflux-kontext-pro, with options for:Aspect ratio (
21:9,16:9,4:3,1:1,3:4,9:16) and output format (jpegorpng)Source image URL for image-to-image generation
Wait for completion or return immediately with a task ID
Additional options: watermark, safety tolerance, prompt expansion, translation, callback URL, and polling interval
Check task status (
get_task): Retrieve the current status and result payload (including output URLs) for a previously submitted task using its task ID.Look up pricing (
check_pricing): Query current pricing for Flux Kontext models and endpoints — no API key required, useful for cost checks before submitting a task.
Click on "Deploy 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., "@@runapi.ai/flux-kontext-mcpgenerate an image of a cat in space using flux-kontext-max"
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/flux-kontext-mcp is a focused Model Context Protocol server for the Flux Kontext model line on RunAPI.
It gives MCP-compatible assistants direct access to 1 endpoint and 2 model variants without loading the full RunAPI catalog.
Use this per-model server when an agent should stay scoped to Flux Kontext. Use @runapi.ai/mcp when one assistant should discover every RunAPI model line.
Related MCP server: Image Generation MCP Server
Install
Add it to Claude Code:
claude mcp add flux-kontext -s user -- npx -y @runapi.ai/flux-kontext-mcpUse project scope when the server should be shared with a repository:
claude mcp add flux-kontext -s project -- npx -y @runapi.ai/flux-kontext-mcpCodex, Cursor, Windsurf, VS Code, Roo Code, and other MCP hosts can use the same stdio command:
{
"mcpServers": {
"flux-kontext": {
"command": "npx",
"args": ["-y", "@runapi.ai/flux-kontext-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 a Flux Kontext 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 Flux Kontext model and endpoint. |
Models
Flux Kontext covers 2 model variants across 1 endpoint. Each tool accepts the models listed for it:
Tool | Models |
|
|
Model availability can change between releases. Use check_pricing or the Flux Kontext 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 a Flux Kontext text to image task with RunAPI.The assistant can call check_pricing, then text_to_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 Flux Kontext pricing, then create the task if it matches my request.The assistant calls check_pricing and can link to the Flux Kontext 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 |
Flux Kontext model page | |
npm package | |
GitHub repository | |
RunAPI MCP overview | |
RunAPI docs |
License
Licensed under the Apache License, Version 2.0.
Available Tools
4 toolscheck_pricingB
Look up RunAPI pricing for the flux-kontext 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?
With no annotations, the description carries the full burden. It only says 'look up' implying a read operation, but no details on permissions, side effects, or return behavior are given. The minimal description does not disclose behavioral traits beyond the name.
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 with no extraneous information. Every word contributes to the purpose.
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 is minimal and does not explain default parameter behavior or output format. While the schema covers parameters, the tool description lacks completeness for a simple lookup without annotations or output 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% with parameter descriptions already present. The tool description does not add any information about parameters beyond the schema, so a 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's purpose: 'Look up RunAPI pricing for the flux-kontext model line.' It specifies the action (look up) and resource (pricing) and distinguishes from siblings like get_task 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?
The description provides no guidance on when to use this tool vs alternatives, nor does it mention prerequisites or context. It merely states what it does, leaving the agent without context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_taskA
Fetch the current status and latest result payload for a flux-kontext task.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Asynchronous endpoint the task was created on. Defaults to the line's only asynchronous endpoint. | |
| 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?
No annotations provided; description does not state it is a read-only operation or any constraints. 'Fetch' implies non-destructive behavior, but explicit mention would raise confidence.
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?
Single, well-formed sentence with no redundant words. Front-loaded with key action and resource.
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 simple params and no output schema, the description provides essential info (status + payload) but could specify the response structure or default behavior of the 'action' param.
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% with descriptions for both parameters. The description does not add additional meaning beyond the schema, so baseline score applies.
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 ('Fetch') and resource ('task'), clearly indicating it retrieves status and result. It distinguishes from sibling tools like text_to_image (creation) and login/check_pricing.
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 explicit when-to-use or when-not-to-use guidance is given, but it's implied via context from sibling tool names. Could be improved by noting it should be called after creating a task via text_to_image.
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 behavioral burden. It discloses the interactive browser flow and the file write side effect (config.json). However, it does not mention that it may overwrite existing credentials or that it could block waiting for user input, though these are implied.
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 action ('Authenticate RunAPI') and provides necessary details without extraneous information.
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 login tool with one optional parameter and no output schema, the description covers the core purpose and side effect. It lacks an explicit statement that this is a prerequisite for other tools, but that is implied.
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% (the only parameter 'force' has a description). The tool description adds no additional meaning about parameters beyond the schema, so the baseline of 3 applies.
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 with a specific verb ('Authenticate'), target resource ('RunAPI'), method ('browser PKCE login flow'), and side effect (saving to config.json). It is distinct from sibling tools, none of which relate to authentication.
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 (to authenticate RunAPI) but does not explicitly say when to run it (e.g., before other RunAPI tools) or when to use the 'force' parameter. Since there are no alternative auth tools among siblings, 'vs alternatives' is not applicable.
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 Flux Kontext task on RunAPI (text to image). Returns a task id, status, and output URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| wait | No | Poll until the task reaches a terminal status. | |
| model | No | RunAPI model slug for this model line. | |
| prompt | Yes | Image description (English only). | |
| watermark | No | Watermark identifier. | |
| timeout_ms | No | ||
| aspect_ratio | No | Output aspect ratio. Default: 16:9. | |
| callback_url | No | Webhook URL for async notifications. | |
| output_format | No | Output format. Default: jpeg. | |
| poll_interval_ms | No | ||
| safety_tolerance | No | Content safety threshold. 0-6 for generation, 0-2 for editing. Default: 2. | |
| source_image_url | No | Source image URL for editing mode. | |
| enable_translation | No | Auto-translate non-English prompts. Default: true. | |
| enable_prompt_expansion | No | Expand the prompt with more detail. Default: false. |
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 creates a task and returns outputs, but does not mention destructive potential, authentication needs, rate limits, or scheduling behavior. The description lacks critical behavioral context beyond the basic action.
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, concise and front-loaded with the main purpose. No wasted words, but could be more structured given the tool's complexity (13 parameters).
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 13 parameters and no output schema. The description does not explain editing mode (source_image_url), safety_tolerance, translation, expansion, or how to use polling parameters. It fails to provide sufficient context for correct usage, especially given the 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 85%, and the schema already documents each parameter. The description adds only 'English only' for prompt and a mention of return fields, but does not provide additional meaning beyond what the schema offers. 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 it creates a Flux Kontext text-to-image task and returns task id, status, and output URLs. This verb+resource combination distinguishes it from sibling tools like login, get_task, and check_pricing.
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 explicit guidance on when to use this tool vs alternatives. The sibling tools are very different, so context is clear, but the description does not provide any usage scenarios or exclusions.
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.
2 tool updates
v0.1.11- Changed
get_task1 field changed- changed
Input schema / properties / action / descriptionPrevious value: -"Endpoint the task was created on. Defaults to the line's only endpoint."New value: +"Asynchronous endpoint the task was created on. Defaults to the line's only asynchronous endpoint."
- Changed
text_to_image9 fields changed- added
Input schema / properties / aspect_ratio / descriptionAdded value: +"Output aspect ratio. Default: 16:9." - added
Input schema / properties / callback_url / descriptionAdded value: +"Webhook URL for async notifications." - added
Input schema / properties / enable_prompt_expansion / descriptionAdded value: +"Expand the prompt with more detail. Default: false." - added
Input schema / properties / enable_translation / descriptionAdded value: +"Auto-translate non-English prompts. Default: true." - added
Input schema / properties / output_format / descriptionAdded value: +"Output format. Default: jpeg." - added
Input schema / properties / prompt / descriptionAdded value: +"Image description (English only)." - added
Input schema / properties / safety_tolerance / descriptionAdded value: +"Content safety threshold. 0-6 for generation, 0-2 for editing. Default: 2." - added
Input schema / properties / source_image_url / descriptionAdded value: +"Source image URL for editing mode." - added
Input schema / properties / watermark / descriptionAdded value: +"Watermark identifier."
1 tool update
v0.1.9- Added
login
2 tool updates
v0.1.2- Changed
check_pricing1 field changed- changed
Input schema / properties / action / descriptionPrevious value: -"Endpoint name. Defaults to the line's primary endpoint."New value: +"Endpoint name. Defaults to the endpoint that offers the model."
- Changed
text_to_image5 fields changed- added
Input schema / properties / callback_url / typeAdded value: +"string" - added
Input schema / properties / prompt / typeAdded value: +"string" - added
Input schema / properties / source_image_url / typeAdded value: +"string" - added
Input schema / properties / watermark / typeAdded value: +"string" - added
Input schema / requiredAdded value: +[ + "prompt" +]
3 tool updates
v0.1.0- First observed
check_pricing - First observed
get_task - First observed
text_to_image
TDQS
Scored across 4 tools
Each tool has a clear, unique purpose: login handles authentication, text_to_image creates tasks, get_task retrieves task status, and check_pricing provides pricing info. There is no overlap or ambiguity between them.
All tool names use consistent snake_case and follow clear verb-based patterns (e.g., text_to_image, get_task, check_pricing). The naming is predictable and easy to understand.
With 4 tools, the server is well-scoped for its purpose: authentication, image generation, task polling, and pricing lookup. This is a focused and efficient set without unnecessary extras.
The tools cover the essential lifecycle: authenticate, create a task, check status, and get pricing. A minor gap is the lack of a list all tasks tool, which may require users to remember task IDs, but core workflows are supported.
Maintenance
Related MCP Connectors
MCP server for Flux AI image generation
Official FLUX MCP server. Generate, edit, vary, and browse images from Black Forest Labs.
MCP server for Qwen Image 3 AI image generation
MCP server for Pixapi: check live credit pricing and balance, then generate images and video.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceImplements a Model Context Protocol (MCP) server powered by Flux API from Cephalon Cloud, enabling users to utilize advanced AI capabilities through standardized communication.31MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables high-quality image generation using the Flux.1 Schnell model via Together AI with customizable parameters.138 npm10MIT
- AlicenseNot gradedqualityDmaintenanceA server that enables generating images through the Replicate API by calling the Flux Schnell model via the Model Context Protocol (MCP).3MIT
- FlicenseBqualityDmaintenanceAn MCP image generation server based on the Flux Schnell model that provides API access for generating images from text prompts with customizable dimensions and seeds.11-