Stability AI MCP Server
MCP Server integrating MCP Clients with Stability AI-powered image manipulation functionalities: generate, edit, upscale, and more.
Overview
Stability AI MCP Server is an integration platform that connects MCP Clients with Stability AI's image manipulation functionalities, allowing users to generate, edit, upscale images, and more.
To use the server, sign up for an API key from Stability AI, set up the server with the required environment variables, and interact with it through an MCP client like Claude.
- Generate high-quality images based on prompts. - Edit images by removing backgrounds or replacing elements. - Upscale images to enhance resolution. - Chain multiple image manipulations in a single session.
- Creating unique digital art from text prompts.
- Preparing product images for e-commerce by removing backgrounds.
- Enhancing image quality for print-ready materials.
Add to your AI client
Use these steps to connect Stability AI MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-stability-ai-tadasant": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stability-ai-tadasant"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-stability-ai-tadasant": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stability-ai-tadasant"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-stability-ai-tadasant": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stability-ai-tadasant"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-stability-ai-tadasant": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stability-ai-tadasant"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-stability-ai-tadasant": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stability-ai-tadasant"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-stability-ai-tadasant": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stability-ai-tadasant"
]
}
}
}FAQ
Do I need a Stability AI API key to use the server?
Yes, you need to sign up for an API key from Stability AI to get started.
Is there a cost associated with using the Stability AI API?
Yes, after the initial free credits, it operates on a pay-as-you-go pricing model.
Can I use this server with any MCP client?
Yes, it is designed to work with various MCP clients, including Claude.