by tadasant
Generate and edit images with Stability AI's powerful ai image generator using advanced Stable Diffusion models for stun
Connects to Stability AI's API to generate, edit, and upscale images using Stable Diffusion models. Requires a Stability AI API key to access their hosted image generation services.
Stability AI is a community-built MCP server published by tadasant that provides AI assistants with tools and capabilities via the Model Context Protocol. Generate and edit images with Stability AI's powerful ai image generator using advanced Stable Diffusion models for stun It is categorized under ai ml.
You can install Stability AI in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Stability AI is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Stability AI surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Stability AI for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Stability AI reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We wired Stability AI into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Stability AI has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Stability AI against two servers with overlapping tools; this profile had the clearer scope statement.
Stability AI has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Stability AI against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend Stability AI for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Stability AI surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 70
# Examples
## Generate an image
1. `Generate an image of a cat`
2. `Generate a photorealistic image of a cat in a cyberpunk city, neon lights reflecting off its fur, 16:9 aspect ratio`
3. `Generate a detailed digital art piece of a cat wearing a space suit floating through a colorful nebula, style preset: digital-art, aspect ratio: 21:9`
## Generate an image with SD3.5
1. `Generate an image of a woman with cybernetic wolf ears using the SD3.5 model, with the "neon-punk" style preset`
2. `Generate an image of a futuristic city using the SD3.5 Large Turbo model, with aspect ratio 16:9`
3. `Generate an image of an astronaut on mars using the SD3.5 Large model, with cfg scale 7.5, "analog-film" style preset, and seed 42`
## Remove background
1. `Remove the background from the image I just generated`
2. `Remove the background from product-photo.jpg to prepare it for my e-commerce site`
3. `Remove the background from group-photo.png so I can composite it with another image`
## Outpaint (Uncrop)
1. `Extend vacation-photo.jpg 500 pixels to the right to include more of the beach`
2. `Extend family-portrait.png 300 pixels up to show more of the mountains, and 200 pixels right to include more landscape`
3. `Extend artwork.png in all directions to create a wider fantasy forest scene that matches the original environment`
## Search and Replace
1. `In my last image, replace the red car with a blue car`
2. `In portrait.png, replace the plain background with a sunset over mountains`
3. `In landscape.jpg, replace the modern buildings with victorian-era architecture while maintaining the same atmosphere`
## Upscale
1. `Upscale profile-pic.jpg for better resolution`
2. `Upscale product-photo.png to make it print-ready`
And then, if the output still isn't good enough, you can upscale it again:
1. `Try again with better quality`
## Control Sketch
1. `Transform sketch.png into a colored illustration for a children's book`
2. `Convert wireframe.jpg into a detailed 3D render for a modern architectural visualization`
## Control Style
1. `Generate an image in the style of the reference image`
## Control Structure
1. `Generate an image while maintaining the structure of the reference image`
## Replace Background and Relight
1. `Replace the background of the image I just generated with a sunset over mountains`
## Search and Recolor
1. `In my last image, make the red car be blue instead`
# Setup
## Metadata Logging
The server can save metadata from image generation requests to help with tracking and troubleshooting.
| Environment Variable | Description | Required | Default Value |
| ------------------------ | --------------------------------------------------- | -------- | ------------- |
| `SAVE_METADATA` | Save metadata for successful image generations | N | `true` |
| `SAVE_METADATA_FAILED` | Save metadata for failed image generations | N | `false` |
When enabled, a `.txt` file with the same name as the generated image will be created in the same directory. This file contains:
- Timestamp of the request
- All request parameters (prompt, model, style preset, etc.)
- Response information (success status, generation time)
This file will also be created for failed requests if `SAVE_METADATA_FAILED` is enabled.
## Cheatsheet
| Environment Variable | Description
---Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.