mcp-server-grok-image
mcp-server-grok-image
An MCP (Model Context Protocol) server for xAI's Grok image generation API. Built in Rust, exposes image generation and editing as MCP tools.
Communicates via stdio using JSON-RPC 2.0, like all MCP servers.
Tools
Tool | Description |
| Generate an image from a text prompt |
| Edit an existing image using natural language instructions |
| Corporate headshot from a source portrait (pad to 3:2 + fixed edit prompt) |
| List available image styles for use with |
generate_image
Generate an image from a text description.
Parameters:
Name | Type | Required | Description |
| string | yes | Text description of the desired image |
| string | no | Model to use (default: |
| integer | no | Number of images to generate (1-10, default 1) |
| string | no | Aspect ratio: |
| string | no | Output resolution: |
| string | no |
|
| string | no | Output format: |
| string | no | Style name to apply (use |
When a style is set, the prompt is wrapped in the style's template. For example, with style: "watercolor" and prompt: "a cat on a roof", the API receives "a cat on a roof, as a watercolor painting". Avoid including style language in the prompt itself when using this parameter.
The response includes the resolved prompt so you can see exactly what was sent to the API.
edit_image
Edit an existing image using natural language instructions.
Parameters:
Name | Type | Required | Description |
| string | no* | URL, base64 data URI, or local file path of the source image. Mutually exclusive with |
| string[] | no* | Up to 5 source images for multi-image editing. Reference them in the prompt as |
| string | yes | Natural language edit instructions |
| string | no | Model to use (default: |
| integer | no | Number of variations to generate (1-10, default 1) |
| string | no | Same set as |
| string | no | Output resolution: |
| string | no |
|
| string | no | Output format: |
* Provide either image_url or images.
Note: The style parameter is intentionally not available on edit_image -- edit prompts are instructions (e.g. "remove the background"), not descriptions, so wrapping them in style templates would produce nonsense.
headshot
Expand-only portrait fix (Gemini pipeline equivalent on Imagine). Does not reframe pose, cut out hair, or redesign the person.
Resize full source (default 550px wide) — never crop
Letterbox with white gutters to canvas width (default 780)
Call
grok-imagine-image-2.0at quality medium: complete cut-off shoulders if needed; clean solid white background; keep face/hair/pose/clothing/logos
No cutout / no rembg / no transparent alpha — same job as the original Gemini headshot skill.
Parameters:
Name | Type | Required | Description |
| string | yes | Local path, http(s) URL, or |
| string | no | For missing-shoulder fill only |
| string | no | Must-preserve details (glasses, exact logo text, …) |
| string | no |
|
| string | no | Letterbox gravity ( |
| integer | no | Resize width before pad (default |
| integer | no | Padded width (default |
| string | no |
|
| string | no | Optional final path (also under |
| integer | no | Variations (1–10, default 1) |
| string | no |
|
| string | no | Default |
Padded intermediate: save_dir/headshot-padded_*.jpg.
list_styles
Returns all available image styles with their name, description, and prompt template. No parameters.
Built-in Styles
Style | Description |
| Watercolor painting style |
| Oil painting with visible brushstrokes |
| Detailed pencil sketch |
| Retro pixel art |
| Anime style illustration |
| Bold pop art style |
| Art nouveau with flowing organic lines |
| Cinematic photography with dramatic lighting |
| Professional portrait photography |
| Extreme macro photography |
| Aerial drone photography |
| Studio photography on clean background |
| Dark film noir style |
| Faded vintage photograph |
Available Models
Model | Notes |
| Optional |
| 1.0. Still available; no |
| Retires 2026-11-02. After that the slug is served by |
Prerequisites
Rust (edition 2024)
An xAI API key from console.x.ai
Setup
Create the config file:
mkdir -p ~/.config/mcp-server-grok-imageCreate ~/.config/mcp-server-grok-image/config.toml:
api_key = "xai-..."Custom Styles
Add custom styles to your config file. Custom styles with the same name as a built-in will override it.
api_key = "xai-..."
[[styles]]
name = "my-style"
description = "My custom look"
template = "{prompt}, in my custom style"
[[styles]]
name = "watercolor"
description = "My watercolor variant"
template = "{prompt}, as a loose expressive watercolor with ink outlines"Templates must contain the {prompt} placeholder. Any custom style missing it will be skipped with a warning at startup.
Build
cargo build --releaseThis produces target/release/mcp-server-grok-image.
For development:
cargo build # debug build
cargo run # run in dev mode
RUST_LOG=debug cargo run # run with debug loggingMCP Configuration
Add to your Claude Desktop config (~/.config/Claude/claude_desktop_config.json):
{
"mcpServers": {
"grok-image": {
"command": "/path/to/mcp-server-grok-image"
}
}
}Project Structure
src/
main.rs process entry (stdio MCP)
config.rs TOML / env config
styles.rs built-in + custom styles
grok.rs xAI request/response types
params.rs MCP tool params + validation
image_io.rs data URIs, local files, mime, fetch
headshot.rs letterbox pad + expand prompt
server.rs MCP tools and Grok HTTPLicense
MIT