You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,6 +177,7 @@ The MCP server exposes a single tool for all image operations. Internally, it us
177
177
|`blendImages`| boolean | - | Enable multi-image blending for combining multiple visual elements naturally |
178
178
|`maintainCharacterConsistency`| boolean | - | Maintain character appearance consistency across different poses and scenes |
179
179
|`useWorldKnowledge`| boolean | - | Use real-world knowledge for accurate context (recommended for historical figures, landmarks, or factual scenarios) |
180
+
|`useGoogleSearch`| boolean | - | Enable Google Search grounding to access real-time web information for factually accurate image generation. Use when prompt requires current or time-sensitive data that may have changed since the model's knowledge cutoff. Leave disabled for creative, fictional, historical, or timeless content. |
Copy file name to clipboardExpand all lines: src/server/mcpServer.ts
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,11 @@ export class MCPServerImpl {
119
119
description:
120
120
'Use real-world knowledge for accurate context. Enable for historical figures, landmarks, or factual scenarios',
121
121
},
122
+
useGoogleSearch: {
123
+
type: 'boolean'asconst,
124
+
description:
125
+
"Enable Google Search grounding to access real-time web information for factually accurate image generation. Use when prompt requires current or time-sensitive data that may have changed since the model's knowledge cutoff. Leave disabled for creative, fictional, historical, or timeless content.",
126
+
},
122
127
aspectRatio: {
123
128
type: 'string'asconst,
124
129
description: 'Aspect ratio for the generated image',
0 commit comments