@runapi.ai/nano-banana-mcp 0.1.7 → 0.1.8

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/README.md CHANGED
@@ -87,7 +87,7 @@ Nano Banana covers 5 model variants across 2 endpoints. Each tool accepts the mo
87
87
 
88
88
  | Tool | Models |
89
89
  |---|---|
90
- | `edit_image` | `nano-banana-edit` |
90
+ | `edit_image` | `nano-banana-2-lite`, `nano-banana-edit` |
91
91
  | `text_to_image` | `nano-banana`, `nano-banana-2`, `nano-banana-2-lite`, `nano-banana-pro` |
92
92
 
93
93
  Model availability can change between releases. Use `check_pricing` or the [Nano Banana model page](https://runapi.ai/models/nano-banana) for the current catalog view.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "catalog_models": [
3
+ "nano-banana-2-lite",
3
4
  "nano-banana-edit",
4
5
  "nano-banana",
5
6
  "nano-banana-2",
6
- "nano-banana-2-lite",
7
7
  "nano-banana-pro"
8
8
  ],
9
9
  "actions": {
@@ -11,9 +11,64 @@
11
11
  "model": "Nano Banana",
12
12
  "endpoint": "edit_image",
13
13
  "models": [
14
+ "nano-banana-2-lite",
14
15
  "nano-banana-edit"
15
16
  ],
17
+ "rules": [
18
+ {
19
+ "when": {
20
+ "model": "nano-banana-2-lite"
21
+ },
22
+ "forbidden": [
23
+ "output_format"
24
+ ]
25
+ }
26
+ ],
16
27
  "fields_by_model": {
28
+ "nano-banana-2-lite": {
29
+ "model": {
30
+ "type": "string"
31
+ },
32
+ "prompt": {
33
+ "type": "string",
34
+ "max": 20000,
35
+ "min": 1,
36
+ "length": true,
37
+ "required": true
38
+ },
39
+ "callback_url": {
40
+ "type": "string"
41
+ },
42
+ "output_format": {
43
+ "type": "string"
44
+ },
45
+ "aspect_ratio": {
46
+ "type": "string",
47
+ "enum": [
48
+ "1:1",
49
+ "1:4",
50
+ "1:8",
51
+ "2:3",
52
+ "3:2",
53
+ "3:4",
54
+ "4:1",
55
+ "4:3",
56
+ "4:5",
57
+ "5:4",
58
+ "8:1",
59
+ "9:16",
60
+ "16:9",
61
+ "21:9",
62
+ "auto"
63
+ ],
64
+ "default": "auto",
65
+ "required": true
66
+ },
67
+ "source_image_urls": {
68
+ "type": "array",
69
+ "required": true
70
+ }
71
+ },
17
72
  "nano-banana-edit": {
18
73
  "model": {
19
74
  "type": "string"
package/data/pricing.json CHANGED
@@ -1,5 +1,11 @@
1
1
  {
2
2
  "endpoints": {
3
+ "nano-banana-2-lite/edit_image": {
4
+ "unit_price_cents": 3
5
+ },
6
+ "nano-banana-2-lite/text_to_image": {
7
+ "unit_price_cents": 3
8
+ },
3
9
  "nano-banana-edit/edit_image": {
4
10
  "unit_price_cents": 4
5
11
  },
@@ -1,5 +1,5 @@
1
1
  export declare const META: {
2
2
  readonly name: "@runapi.ai/nano-banana-mcp";
3
- readonly version: "0.1.7";
3
+ readonly version: "0.1.8";
4
4
  readonly lineSlug: "nano-banana";
5
5
  };
package/dist/src/meta.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export const META = {
2
2
  name: "@runapi.ai/nano-banana-mcp",
3
- version: "0.1.7",
3
+ version: "0.1.8",
4
4
  lineSlug: "nano-banana"
5
5
  };
6
6
  //# sourceMappingURL=meta.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runapi.ai/nano-banana-mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "RunAPI Nano Banana MCP server for image generation: create tasks, poll results, and check pricing across 5 model variants from Claude Code, Codex, Cursor, and VS Code.",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "dependencies": {
58
58
  "@modelcontextprotocol/sdk": "^1.29.0",
59
- "@runapi.ai/mcp-core": "0.1.5",
59
+ "@runapi.ai/mcp-core": "0.1.6",
60
60
  "zod": "^3.25.76"
61
61
  },
62
62
  "devDependencies": {
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/runapi-ai/nano-banana-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.7",
9
+ "version": "0.1.8",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "@runapi.ai/nano-banana-mcp",
14
- "version": "0.1.7",
14
+ "version": "0.1.8",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  },