Skip to content

Commit f8d6ed8

Browse files
authored
Add Stability AI MCP server (#228)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 0763d46 commit f8d6ed8

1 file changed

Lines changed: 83 additions & 0 deletions

File tree

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "tadasant.stability-ai-mcp-npx",
4+
"name": "Stability AI (npx)",
5+
"alias": "stability-ai",
6+
"description": "Generate, edit, upscale, and manipulate images with Stability AI models (Stable Diffusion) directly from your AI client via npx.",
7+
"logo": "https://avatars.githubusercontent.com/u/3900899?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"ai-ml",
11+
"design"
12+
],
13+
"tags": [
14+
"stability-ai",
15+
"stable-diffusion",
16+
"image-generation",
17+
"image-editing",
18+
"ai-ml",
19+
"design"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"mcp-server-stability-ai"
27+
],
28+
"env": {
29+
"STABILITY_AI_API_KEY": "${input:STABILITY_AI_API_KEY}",
30+
"IMAGE_STORAGE_DIRECTORY": "${input:IMAGE_STORAGE_DIRECTORY}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "STABILITY_AI_API_KEY",
36+
"label": "Stability AI API Key",
37+
"description": "Your Stability AI API key, used to authenticate requests to the Stability AI platform.",
38+
"type": "text",
39+
"required": true,
40+
"secret": true,
41+
"placeholder": "sk-****************",
42+
"obtain": {
43+
"url": "https://platform.stability.ai/account/keys",
44+
"instructions": "1. Sign in to the Stability AI platform at https://platform.stability.ai\n2. Open Account > API Keys\n3. Create a new API key\n4. Copy the key and paste it here",
45+
"button_label": "Get API Key"
46+
}
47+
},
48+
{
49+
"id": "IMAGE_STORAGE_DIRECTORY",
50+
"label": "Image Storage Directory",
51+
"description": "Directory where generated and edited images will be saved. Optional - defaults to a platform-specific location (e.g. ~/Desktop) when left blank.",
52+
"type": "directory_path",
53+
"required": false,
54+
"secret": false
55+
}
56+
]
57+
}
58+
},
59+
"auth": {
60+
"type": "api_key",
61+
"instructions": "Create an API key from your Stability AI platform account at https://platform.stability.ai/account/keys"
62+
},
63+
"contributor": {
64+
"name": "tadasant",
65+
"github": "tadasant",
66+
"url": "https://github.com/tadasant/mcp-server-stability-ai"
67+
},
68+
"links": {
69+
"repository": "https://github.com/tadasant/mcp-server-stability-ai",
70+
"homepage": "https://platform.stability.ai",
71+
"documentation": "https://github.com/tadasant/mcp-server-stability-ai#readme"
72+
},
73+
"platforms": [
74+
"all"
75+
],
76+
"capabilities": {
77+
"tools": true,
78+
"resources": false,
79+
"prompts": false,
80+
"read_only_mode": false
81+
},
82+
"changelog_url": "https://github.com/tadasant/mcp-server-stability-ai/releases"
83+
}

0 commit comments

Comments
 (0)