RunPod Image MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RUNPOD_API_KEY | Yes | Your RunPod API key |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| generate_imageA | Generate images from text descriptions using Seedream V4 T2I. URL: ... Size: ... Seed: ... Job ID: ..." |
| edit_imageA | Edit or transform images using Nano Banana Pro Edit API. URL: ... Resolution: ... Cost: $... Job ID: ..." |
| check_job_statusA | Check the status of a previously submitted job. Use this tool to monitor long-running jobs or check on jobs that timed out. Works for both image generation (Seedream) and image editing (Nano Banana) jobs. Args: job_id: Job ID returned from generate_image or edit_image. Format: typically a UUID like "abc123-def456" endpoint_type: Which API the job was submitted to: - "seedream": For text-to-image generation jobs - "nano_banana": For image editing jobs Returns: Current job status with result URL if completed. Possible statuses: IN_QUEUE, IN_PROGRESS, COMPLETED, FAILED Examples: - Check a generation job: check_job_status("abc123-def456", "seedream") - Check an editing job: check_job_status("xyz789-ghi012", "nano_banana") |
| get_api_infoA | Get information about supported parameters and capabilities. This tool provides reference information about what each API supports, including valid parameter values, pricing, and best practices. Args: api: Which API to get information about: - "seedream": Seedream V4 T2I text-to-image generation - "nano_banana": Nano Banana Pro Edit image editing - "all": Information about both APIs (default) Returns: Formatted reference information including supported parameters, constraints, pricing, and usage recommendations. Examples: - Get all API info: get_api_info() - Get only Seedream info: get_api_info("seedream") - Get only Nano Banana info: get_api_info("nano_banana") |
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 4 tools
Each tool has a clearly distinct purpose: generating images, editing images, checking job status, and getting API info. No overlap or ambiguity.
All tool names follow a consistent verb_noun pattern with underscores (check_job_status, edit_image, generate_image, get_api_info), making them predictable and easy to understand.
With 4 tools, the server is well-scoped for its purpose—image generation and editing—without being too sparse or overwhelming.
The tool set covers the core workflows (generate, edit, check status, get info) but lacks features like job cancellation or listing, which are minor gaps.