@flownex-ai/mcp-gpt-image-2 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +15 -7
- package/.claude-plugin/plugin.json +13 -3
- package/README.md +10 -8
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-gpt-image-2-plugins",
|
|
3
3
|
"description": "FlowNex AI plugins for Claude Code and Claude Cowork — image generation, presentation imagery, and more.",
|
|
4
|
-
"owner": {
|
|
5
|
-
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "FlowNex AI",
|
|
6
|
+
"url": "https://flownexai.com"
|
|
7
|
+
},
|
|
8
|
+
"plugins": [
|
|
9
|
+
{
|
|
10
|
+
"name": "gpt-image-2",
|
|
11
|
+
"source": {
|
|
12
|
+
"source": "npm",
|
|
13
|
+
"package": "@flownex-ai/mcp-gpt-image-2"
|
|
14
|
+
},
|
|
15
|
+
"description": "Image generation with OpenAI gpt-image-2 via MCP",
|
|
16
|
+
"version": "0.1.2"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
11
19
|
}
|
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
|
|
3
3
|
"name": "gpt-image-2",
|
|
4
4
|
"description": "Image generation with OpenAI gpt-image-2 — works in Claude Code and Claude Cowork",
|
|
5
|
-
"version": "0.1.
|
|
6
|
-
"author": {
|
|
5
|
+
"version": "0.1.2",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "FlowNex AI",
|
|
8
|
+
"url": "https://flownexai.com"
|
|
9
|
+
},
|
|
7
10
|
"homepage": "https://github.com/FlowNex-AI/gpt-image-2-mcp",
|
|
8
11
|
"repository": "https://github.com/FlowNex-AI/gpt-image-2-mcp",
|
|
9
12
|
"license": "MIT",
|
|
10
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"openai",
|
|
15
|
+
"gpt-image-2",
|
|
16
|
+
"image-generation",
|
|
17
|
+
"mcp",
|
|
18
|
+
"cowork",
|
|
19
|
+
"claude-code"
|
|
20
|
+
],
|
|
11
21
|
"userConfig": {
|
|
12
22
|
"OPENAI_API_KEY": {
|
|
13
23
|
"type": "string",
|
package/README.md
CHANGED
|
@@ -26,26 +26,28 @@ Get one from [OpenAI Platform](https://platform.openai.com/api-keys). OpenAI gat
|
|
|
26
26
|
### A) In Claude Code (recommended)
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
# 1. Add the marketplace
|
|
29
|
+
# 1. Add the marketplace
|
|
30
30
|
claude plugin marketplace add FlowNex-AI/gpt-image-2-mcp
|
|
31
31
|
|
|
32
|
-
# 2. Install
|
|
32
|
+
# 2. Install (pulls @flownex-ai/mcp-gpt-image-2 from npm)
|
|
33
33
|
claude plugin install gpt-image-2@mcp-gpt-image-2-plugins
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
The plugin prompts for your `OPENAI_API_KEY` on install (declared via `userConfig` in `plugin.json`, stored in
|
|
36
|
+
The plugin prompts for your `OPENAI_API_KEY` on install (declared via `userConfig` in `plugin.json`, stored in the system keychain).
|
|
37
37
|
|
|
38
38
|
Alternative: inside Claude Code, run `/plugin` for an interactive picker.
|
|
39
39
|
|
|
40
40
|
### B) In Claude Cowork
|
|
41
41
|
|
|
42
|
-
Cowork
|
|
42
|
+
Cowork installs plugins from npm. The package is published as **`@flownex-ai/mcp-gpt-image-2`**.
|
|
43
43
|
|
|
44
|
-
1. Open
|
|
45
|
-
2.
|
|
46
|
-
3.
|
|
44
|
+
1. Open the Claude desktop app → **Cowork** tab.
|
|
45
|
+
2. Sidebar → **Customize** → **Browse plugins** → **Add custom plugin** (or **Install from npm**).
|
|
46
|
+
3. Paste the package name: `@flownex-ai/mcp-gpt-image-2`
|
|
47
|
+
4. When prompted, paste your `OPENAI_API_KEY` (driven by `userConfig` in `plugin.json`, stored in the system keychain).
|
|
48
|
+
5. The `generate-image` and `powerpoint-images` skills become available — try *"make me a hero image for slide 1 of my QBR deck"*.
|
|
47
49
|
|
|
48
|
-
For org-wide MDM deployments,
|
|
50
|
+
For org-wide MDM deployments, place the unpacked plugin folder under `/Library/Application Support/Claude/org-plugins/` (macOS) or `C:\ProgramData\Claude\org-plugins\` (Windows) and allowlist the MCP server in your MDM policy.
|
|
49
51
|
|
|
50
52
|
### C) Manual MCP config (skip the plugin)
|
|
51
53
|
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.2";
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "0.1.
|
|
1
|
+
export const VERSION = "0.1.2";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flownex-ai/mcp-gpt-image-2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server for OpenAI's gpt-image-2 image generation with size/quality control, multi-image support, and context-window-safe output",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|