Recraft MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RUNAPI_API_KEY | No | Your RunAPI API key. Alternatively, set it in ~/.config/runapi/config.json. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| loginA | Authenticate RunAPI by opening a browser PKCE login flow and saving the API key to ~/.config/runapi/config.json. |
| remove_backgroundC | Create a Recraft task on RunAPI (remove background). Returns a task id, status, and output URLs. |
| upscale_imageC | Create a Recraft task on RunAPI (upscale image). Returns a task id, status, and output URLs. |
| get_taskB | Fetch the current status and latest result payload for a recraft task. |
| check_pricingB | Look up RunAPI pricing for the recraft model line. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: pricing lookup, task status, authentication, background removal, and upscaling. No overlap.
All tool names follow a verb_noun pattern in snake_case (e.g., check_pricing, remove_background). Even 'login' is a single verb but consistent with the verb-first style.
With 5 tools covering authentication, pricing, status checking, and two core image operations, the count feels well-scoped for a focused API wrapper.
The surface covers the key actions (login, pricing, task creation for two operations, and status polling). Missing cancel or list tasks, but the main workflows are supported.