-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathserver.json
More file actions
85 lines (85 loc) · 2.39 KB
/
server.json
File metadata and controls
85 lines (85 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.shinpr/mcp-image",
"description": "AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana",
"vendor": "Shinsuke Kagawa",
"license": "MIT",
"repository": {
"url": "https://github.com/shinpr/mcp-image",
"source": "github"
},
"version": "0.8.1",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "mcp-image",
"version": "0.8.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "GEMINI_API_KEY",
"description": "Google Gemini API key for image generation (get from https://aistudio.google.com/apikey)",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "IMAGE_OUTPUT_DIR",
"description": "Absolute path to directory where generated images will be saved (defaults to ./output)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "IMAGE_QUALITY",
"description": "Default quality preset: 'fast' (Nano Banana 2, default), 'balanced' (Nano Banana 2 + thinking), 'quality' (Nano Banana Pro)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "SKIP_PROMPT_ENHANCEMENT",
"description": "Set to 'true' to disable automatic prompt optimization and use direct prompts",
"isRequired": false,
"format": "boolean",
"isSecret": false
}
],
"features": {
"tools": {
"supported": true,
"list": [
"generate_image"
]
},
"prompts": {
"supported": false
},
"resources": {
"supported": true
}
}
}
],
"tags": [
"mcp",
"mcp-server",
"image-generation",
"generative-ai",
"image-editing",
"prompt-enhancement",
"gemini",
"nano-banana",
"nano-banana-2",
"nano-banana-pro",
"google-ai",
"ai-tools",
"agent-skills",
"skills"
],
"homepage": "https://github.com/shinpr/mcp-image",
"documentation": "https://github.com/shinpr/mcp-image#readme"
}