Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MCP server to integrate with Stability AI's image models #63

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/package-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -439,5 +439,14 @@
"homepage": "https://github.com/ChanMeng666/server-google-news",
"license": "MIT",
"runtime": "node"
},
{
"name": "mcp-server-stability-ai",
"description": "Integrates Stability AI's image generation and manipulation capabilities for editing, upscaling, and more via Stable Diffusion models.",
"vendor": "Tadas Antanavicius (https://github.com/tadasant)",
"sourceUrl": "https://github.com/tadasant/mcp-server-stability-ai",
"homepage": "https://www.pulsemcp.com/servers/tadasant-stability-ai",
"license": "MIT",
"runtime": "node"
}
]
12 changes: 12 additions & 0 deletions src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,5 +185,17 @@ export const packageHelpers: PackageHelpers = {
required: true
}
}
},
'mcp-server-stability-ai': {
requiredEnvVars: {
STABILITY_AI_API_KEY: {
description: 'API key for Stability AI; get it from https://platform.stability.ai/account/keys.',
required: true
},
IMAGE_STORAGE_DIRECTORY: {
description: 'Absolute path to a directory on filesystem to store output images.',
required: true
}
}
}
};