Skip to main content
Glama

🧠 Google Flow Browser MCP

Control Google Flow β€” image & video generation β€” directly from your AI agent via MCP.

✨ Features β€’ πŸš€ Quick Start β€’ πŸ”§ Tools β€’ βš™οΈ Configuration β€’ πŸ›‘οΈ Safety


πŸ‡«πŸ‡· Ce serveur MCP permet Γ  votre agent AI (OpenCode) d'utiliser Google Flow pour gΓ©nΓ©rer des images et des vidΓ©os, via votre propre compte Google et sans partager vos identifiants.


πŸ“Έ What It Does

This MCP server connects your AI agent to Google Flow β€” Google's creative suite for image and video generation. Your agent can:

  • 🎨 Generate images with Nano Banana Pro, Nano Banana 2, or Imagen 4

  • 🎬 Create videos and scenes with characters

  • πŸ§‘ Manage characters and scenes in your Flow workspace

  • πŸ–ΌοΈ Use Grid Architect for batch shot generation

  • πŸ” Discover and control any Flow tool programmatically

All through your own Google account β€” no API keys, no third-party tokens.


Related MCP server: Google Flow Browser MCP

✨ Features

🎯 For AI Agents

πŸ”’ For Humans

  • 15+ MCP tools ready to use

  • Smart job queue β€” no parallel conflicts

  • Auto-discover UI β€” adapts to Flow changes

  • Structured logging for debugging

  • Safe actions β€” resilient click/fill logic

  • Your account, your data β€” no token sharing

  • No password asked β€” ever

  • Clean safety rules β€” stops on captcha/verification

  • Config backup before any modification

  • Single-job queue β€” no runaway generation


πŸš€ Quick Start

Prerequisites

What

Why

Node.js β‰₯ 18

Runtime for the MCP server

Google Chrome

Required for browser automation

OpenCode

AI agent that connects to MCP servers

A Google account

To use Google Flow (yours, not shared)

1️⃣ Install

git clone https://github.com/TMSSS05/google-flow-browser-mcp.git
cd google-flow-browser-mcp
npm install

2️⃣ Configure your Google profile

cp config/flow.config.example.json config/flow.config.json

Edit config/flow.config.json:

{
  "expectedAccount": "your.email@gmail.com",
  "chromeProfile": "Profile 3",
  "chromeUserDataDir": "/home/you/.config/google-chrome"
}

πŸ’‘ Finding your Chrome profile:
Open Chrome and go to chrome://version/. Look for "Profile Path" β€” the last folder name is your profile (e.g., Profile 3), and the path before it is your chromeUserDataDir.

3️⃣ Make scripts executable

chmod +x scripts/*.sh

4️⃣ Start Chrome with CDP

./scripts/start-browser.sh

This launches Chrome with remote debugging enabled on port 9222 using your configured profile.

5️⃣ Start the MCP server

# In a separate terminal:
./scripts/start-mcp.sh

6️⃣ Register with OpenCode

./scripts/register-opencode.sh

πŸ”„ Restart OpenCode after registration for the changes to take effect.

βœ… Verify it works

./scripts/test-flow-image.sh

πŸ—οΈ Architecture

google-flow-browser-mcp/
β”‚
β”œβ”€β”€ πŸ“‚ config/
β”‚   β”œβ”€β”€ flow.config.example.json    # Configuration template
β”‚   └── selectors.map.json          # UI selectors (auto-populated)
β”‚
β”œβ”€β”€ πŸ“‚ scripts/
β”‚   β”œβ”€β”€ start-browser.sh            # Launch Chrome + CDP
β”‚   β”œβ”€β”€ start-mcp.sh                # Start the MCP server
β”‚   β”œβ”€β”€ test-flow-image.sh          # Quick integration test
β”‚   └── register-opencode.sh        # Register in OpenCode config
β”‚
β”œβ”€β”€ πŸ“‚ src/
β”‚   β”œβ”€β”€ index.js                    # MCP server entry point
β”‚   β”‚
β”‚   β”œβ”€β”€ πŸ“ browser/                 # Chrome & CDP management
β”‚   β”‚   β”œβ”€β”€ connect.js              # CDP connection manager
β”‚   β”‚   β”œβ”€β”€ launch-profile.js       # Chrome profile launcher
β”‚   β”‚   β”œβ”€β”€ account-check.js        # Verify Google account
β”‚   β”‚   └── safe-actions.js         # Safe click, fill, detection
β”‚   β”‚
β”‚   β”œβ”€β”€ πŸ“ tools/                   # All MCP tool implementations
β”‚   β”‚   β”œβ”€β”€ flow-open.js            # Navigate to Flow
β”‚   β”‚   β”œβ”€β”€ flow-status.js          # Connection status
β”‚   β”‚   β”œβ”€β”€ generate-image.js       # Image generation
β”‚   β”‚   β”œβ”€β”€ generate-video.js       # Video generation (setup only)
β”‚   β”‚   β”œβ”€β”€ download-latest.js      # Download generated files
β”‚   β”‚   β”œβ”€β”€ create-character.js     # Create a character
β”‚   β”‚   β”œβ”€β”€ import-character.js     # Import character JSON
β”‚   β”‚   β”œβ”€β”€ open-characters.js      # List characters
β”‚   β”‚   β”œβ”€β”€ create-scene.js         # Create a scene
β”‚   β”‚   β”œβ”€β”€ open-tools-gallery.js   # Open tools gallery
β”‚   β”‚   β”œβ”€β”€ grid-architect.js       # Batch shot generation
β”‚   β”‚   β”œβ”€β”€ discover-ui.js          # UI discovery & mapping
β”‚   β”‚   └── use-flow-tool.js        # Generic tool opener
β”‚   β”‚
β”‚   β”œβ”€β”€ πŸ“ queue/                   # Job management
β”‚   β”‚   └── job-queue.js            # Single-job queue
β”‚   β”‚
β”‚   └── πŸ“ utils/                   # Helpers
β”‚       β”œβ”€β”€ config.js               # Config loader
β”‚       β”œβ”€β”€ logger.js               # Structured logging
β”‚       β”œβ”€β”€ errors.js               # Error codes & types
β”‚       β”œβ”€β”€ file-manager.js         # File download/save
β”‚       └── screenshots.js          # Screenshot capture
β”‚
└── πŸ“‚ output/                      # Generated files land here

πŸ”§ Tools

All tools are organized by function for easy discovery.

🌐 Connection & Status

Tool

Description

flow_connect

Launch Chrome, connect CDP, navigate to Google Flow

flow_disconnect

Close browser and clean up all connections

flow_status

Full status: connection, Flow loaded, account, queue state

flow_account_check

Verify logged-in account matches configured email

flow_screenshot

Capture a screenshot of the current Flow page

🎨 Image Generation

Tool

Description

flow_generate_image

Generate image with Nano Banana Pro, Nano Banana 2, or Imagen 4. Supports aspect ratios, reference images, and brand-based model selection.

flow_download_latest

Download the most recently generated file

🎬 Video Generation

Tool

Description

flow_generate_video

Set up video generation (Omni Flash, Veo models, custom duration/ratio). ⚠️ Stops at "ready to generate" β€” no credit consumed.

flow_create_scene

Create a video scene with characters and a text prompt

πŸ‘€ Characters

Tool

Description

flow_create_character

Create a new character with name, description, and optional reference images

flow_import_character

Import a character from a saved JSON file

flow_open_characters

Open the characters page and list all existing characters

πŸ› οΈ Tools & Discovery

Tool

Description

flow_open_tools_gallery

Open the tools gallery and browse available tools

flow_use_tool

Open any Flow tool by name with optional parameters

flow_use_grid_architect

Configure Grid Architect for batch shot generation with theme prompts, visual logic, and reference images

flow_discover_ui

Discover and map all interactive elements (buttons, inputs, headings) on any Flow page

πŸ“Š Queue & Monitoring

Tool

Description

flow_queue_status

Check job queue: active job, pending queue, completed and failed history


βš™οΈ Configuration

Edit config/flow.config.json (copy from config/flow.config.example.json):

πŸ”‘ Essential

Key

Type

Default

Description

expectedAccount

string

β€”

Your Google account email βœ… REQUIRED

chromeProfile

string

"Profile 3"

Chrome profile directory name

chromeUserDataDir

string

β€”

Full path to Chrome user data directory βœ… REQUIRED

flowUrl

string

Flow labs URL

Google Flow URL (supports fr, en locales)

πŸ”§ Advanced

Key

Type

Default

Description

cdpPort

number

9222

Chrome DevTools Protocol port

browserMode

string

"direct-cdp"

"direct-cdp" (recommended) or "playwright"

headless

boolean

true

Run Chrome in headless mode

locale

string

"fr"

UI locale ("fr", "en", etc.)

⏱️ Timing

Key

Default

Description

jobTimeoutMs

300000 (5 min)

Max job execution time

actionDelayMs

800

Delay between UI actions (anti-detection)

generationPollIntervalMs

5000 (5s)

How often to poll for generation completion

maxPollAttempts

120

Max polling attempts before timeout

downloadWaitMs

30000 (30s)

Wait time for file download

🎨 Models & Ratios

Key

Description

imageModels

Available models: Nano Banana Pro, Nano Banana 2, Imagen 4

videoModels

Available models: Omni Flash, Veo 3.1 - Lite/Fast/Quality

ratios

Supported aspect ratios: 16:9, 4:3, 1:1, 3:4, 9:16


πŸ›‘οΈ Safety & Ethics

This project is built with safety-first design:

βœ… Principle

How it's enforced

Your account only

Uses your own Google profile β€” never asks for or stores passwords

No credential theft

Never exports cookies, tokens, or session data

No bypass

Stops cleanly on captcha, login walls, or verification challenges

No parallel abuse

Single-job queue prevents concurrent generation

Credit-safe video

Video generation sets up parameters but stops before the final "Generate" click (no credit consumed)

Config backup

Backs up OpenCode config before any modification

⚠️ This is a browser automation tool. Use it responsibly and in accordance with Google's Terms of Service.


❓ FAQ

Getting Started

Open Chrome and go to chrome://version/. The Profile Path shows both your user data directory and profile name. For example:

  • /home/you/.config/google-chrome/Profile 3 β†’ chromeUserDataDir: "/home/you/.config/google-chrome", chromeProfile: "Profile 3"

You need a profile where you're already logged into your Google account.

Yes! Any MCP-compatible client (Claude Desktop, Continue.dev, etc.) can connect to this server. Just point your MCP config to node /path/to/src/index.js.

Troubleshooting

Make sure Chrome is installed at the expected path. On Linux, the default is /opt/google/chrome/chrome. Edit scripts/start-browser.sh to set the correct CHROME path for your system.

The script checks for existing Chrome instances on port 9222. If something else is using that port, you can change cdpPort in config/flow.config.json (and update the script's CDP_PORT variable).

Verify that expectedAccount in config/flow.config.json matches the email logged into your Chrome profile. Use flow_account_check to verify.

Run flow_discover_ui to re-map selectors. The selectors.map.json will auto-update with new UI element positions.

Usage

Your AI agent calls flow_generate_image with a text prompt. Optionally specify model (Nano Banana 2 is default), aspect ratio, and reference images. The server waits for completion and makes the file available for download.

flow_generate_video sets up the video parameters (model, ratio, duration) but stops before clicking Generate. This lets you review the setup before consuming credits. The actual generation requires a paid Google Flow subscription.


🀝 Contributing

Contributions are welcome! Please follow these guidelines:

  1. Fork the repository

  2. Create a feature branch (git checkout -b feature/my-feature)

  3. Commit your changes (git commit -m 'Add my feature')

  4. Push to the branch (git push origin feature/my-feature)

  5. Open a Pull Request


πŸ“„ License

MIT Β© TMSSS05


Available Tools

17 tools
flow_account_checkB

Verify the logged-in Google account matches the configured expected email (Profile 3).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It describes the action as 'Verify', suggesting a read-only operation, but does not disclose behavioral traits such as what happens on mismatch, error handling, or whether it modifies state. This leaves significant ambiguity for a tool with no structured behavioral hints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is clear, front-loaded, and contains no unnecessary words. It earns its place with direct purpose statement.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters and no output schema, the description is minimally complete for the purpose. However, it does not explain what 'Profile 3' refers to, nor does it describe the return value (e.g., boolean, success/failure message). Additional context would improve completeness for an agent that needs to interpret the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters and schema description coverage is 100%, so the baseline is 4. The description does not need to add parameter details, and it successfully implies that no input is required. It adds no extra semantics but does not detract.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: verifying that the logged-in Google account matches a configured expected email, specifically mentioning 'Profile 3'. The verb 'Verify' and resource 'Google account match' are specific, making the purpose clear. However, it does not differentiate from sibling tools that might have similar verification tasks, though no such sibling is evident.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the usage context (checking account match), but it does not explicitly state when to use this tool versus alternatives, nor does it provide when-not guidance. The sibling tools do not include similar verification, so the intended use is inferred but not explicitly guided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_connectA

Launch Chrome with the configured Google profile, connect CDP, navigate to Google Flow, and verify account.

ParametersJSON Schema
NameRequiredDescriptionDefault
headlessNoLaunch in headless mode (not recommended, Google Flow needs visible browser).
open_flowNoAuto-navigate to Google Flow after connection.

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses that headless mode is not recommended and lists the sequence of actions (launch, connect, navigate, verify). However, it does not mention side effects like opening a visible browser window or potential need for user authentication, which would enhance transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that efficiently conveys the tool's purpose and key actions without extraneous detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description should specify what 'verify account' returns (e.g., success, error, connection status). The lack of information about output or side effects makes it incomplete for an AI agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% coverage with descriptions for both parameters. The description adds value by clarifying the 'headless' default and the profile usage, but does not significantly extend beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific actions: launching Chrome, connecting CDP, navigating to Google Flow, and verifying account. This effectively distinguishes it from sibling tools like flow_disconnect or flow_status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is for initial setup before using other flow tools, but provides no explicit guidance on when to use it versus alternatives, nor when not to use it. A mention of prerequisites or ordering would improve clarity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_create_characterC

Create a new character in Google Flow Characters with name and description.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesCharacter name.
descriptionYesCharacter description/prompt.
reference_imagesNoPaths to reference images for character design.
project_nameNoName for the project (will reuse existing project with same campaign, or create new).
campaignNoCampaign identifier for project matching (e.g., "ete-2026", "nouvelle-collection").

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behaviors. It only states 'create', implying mutation, but no details on side effects, authorization needs, uniqueness constraints, or error states. The description is too minimal for a create operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence with no redundant information. It is front-loaded with the core action. However, it could be improved by adding context about the optional parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 5 parameters, no output schema, and no annotations, the description is minimal. It does not explain the role of 'project_name' and 'campaign' in project matching or the expected return value. The description is incomplete for an agent to fully understand the tool's behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all parameters. The description only mentions 'name and description' and adds no extra meaning for 'reference_images', 'project_name', or 'campaign'. Baseline 3 applies since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create') and the resource ('a new character in Google Flow Characters'). It mentions the required parameters 'name and description'. However, it does not differentiate from sibling tool 'flow_import_character', which likely has a similar purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like 'flow_import_character' or 'flow_create_scene'. There is no mention of prerequisites, limitations, or complementary tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_create_sceneB

Create a new scene in Google Flow Scenes with characters and prompt.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesScene description/prompt.
charactersNoCharacter names to include in the scene.
project_nameNoName for the project (will reuse existing project with same campaign, or create new).
campaignNoCampaign identifier for project matching (e.g., "ete-2026", "nouvelle-collection").

TDQS

B3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavior. It only says 'create a new scene' without explaining side effects, idempotency, permissions, or success/failure behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence, which is concise but lacks structure and critical details. It is not well-rounded for the complexity of the tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having 4 parameters (all described in schema), no output schema, and no annotations, the description is too brief. It fails to explain return values, error handling, or how to effectively use the tool among 16 siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds no extra meaning beyond the schema; it merely mentions characters and prompt without elaborating on usage or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Create' and the resource 'scene', and distinguishes from sibling 'flow_create_character' by specifying scene creation with characters and prompt.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when or when not to use this tool, no mention of alternatives (e.g., when to use flow_create_character instead), and no context on prerequisites or use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_disconnectA

Close the browser and clean up the MCP connection to Google Flow.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden for behavioral disclosure. It explicitly states that the tool will close the browser and clean up the MCP connection, which is sufficiently transparent about its side effects. It could mention potential data loss risks, but for a disconnect tool this is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. Every word is necessary and contributes to understanding the tool's purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that the tool has no parameters, no output schema, and no annotations, the description is reasonably complete. It explains the core action. It could benefit from mentioning that this is the reverse of flow_connect, but the sibling names provide that context implicitly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters and schema coverage is 100% (empty schema). The description adds meaning beyond the schema by explaining what the tool does overall. With no parameters, a baseline of 4 is appropriate, and the description delivers clear context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: 'Close the browser and clean up the MCP connection to Google Flow.' It specifies the verb 'close' and the resource (browser and connection). Among siblings, flow_connect is the obvious counterpart, so it's well-distinguished.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage as the complement to flow_connect but provides no explicit when-to-use, when-not-to-use, or alternative guidance. The context signals show a sibling flow_connect, which gives some implicit context, but the description itself lacks explicit guidelines.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_discover_uiA

Navigate to a Google Flow page and discover all interactive elements (buttons, inputs, links, headings). Updates the internal selectors map for robust automation.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageYesPage to discover. Options: main, image-generation, video-generation, characters, scenes, tools-gallery, grid-architect.main

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses the key behavioral trait of updating an internal selectors map for robust automation, which is important for understanding side effects. However, it does not specify authorization needs or potential destructive actions, but the absence of annotations places the burden on the description, which it meets reasonably well.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that front-loads the purpose. It is efficient with no wasted words, but could benefit from a brief structure break for readability.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has one required parameter and no output schema, the description adequately covers what the tool does and its main side effect. It would be improved by mentioning the output (e.g., 'Returns the discovered selectors' or 'Updates the map silently').

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with the page parameter described in the schema. The description does not add any extra meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool navigates to a Google Flow page and discovers interactive elements, with the specific verb 'Navigate' and resource 'Google Flow page'. It distinguishes from sibling tools like flow_open_characters by focusing on discovering UI elements rather than just opening pages.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for discovering interactive elements for automation but lacks explicit guidance on when to use this tool versus alternatives like flow_open_characters or flow_open_tools_gallery. No exclusion criteria or alternative suggestions are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_download_latestB

Download the most recently generated file from Google Flow.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must clarify behavior. It states 'download' implying a read operation, but fails to disclose what happens if no file exists, whether it's a single download or can be called multiple times, or any side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence with clear verb-first structure. Every word is necessary, no wasted content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple parameterless tool, the description is mostly adequate but omits important context like the possibility of no file, expected return format, and relation to other flow tools. Additional context would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has zero parameters with 100% coverage, so baseline is 4. The description adds meaning by specifying 'most recently generated', which reduces ambiguity beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'download' and the resource 'most recently generated file' from 'Google Flow'. It distinguishes from sibling tools like generation tools, but could be more specific about the scope of 'most recently generated'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives, nor prerequisites like ensuring a file has been generated. The description lacks context for proper selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_generate_imageA

⚠️ CES IMAGES CONSOMMENT DES CRΓ‰DITS. Par dΓ©faut (auto_confirm=false): remplit le prompt, sΓ©lectionne le modΓ¨le/ratio, prend un screenshot et retourne "ready_for_confirmation". NE clique PAS sur Generate. Quand auto_confirm=true: vΓ©rifie d'abord que l'interface est bien en mode IMAGE (pas VidΓ©o), que le modΓ¨le est un modΓ¨le image, prend un screenshot de vΓ©rification, PUIS clique Generate, attend les images et les tΓ©lΓ©charge. NAN/BANANA modΓ¨les image seulement.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesThe text prompt for image generation.
modelNoModel to use: Nano Banana Pro, Nano Banana 2, or Imagen 4.Nano Banana 2
auto_confirmNo⚠️ CRΓ‰DITS. Si false (dΓ©faut): prΓ©pare seulement, ne consomme rien. Si true: vΓ©rifie que le mode Image est actif, PUIS clique Generate (consomme des crΓ©dits).
ratioNoAspect ratio: 1:1, 16:9, 9:16, 4:3, 3:4.1:1
reference_imagesNoPaths to reference images (optional).
brandNoBrand context for automatic model selection: premium, standard.
project_nameNoName for the project (will reuse existing project with same campaign, or create new).
campaignNoCampaign identifier for project matching (e.g., "ete-2026", "nouvelle-collection").

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description fully discloses behavior: for auto_confirm=false, it fills prompt, selects model/ratio, takes screenshot, returns 'ready_for_confirmation'. For auto_confirm=true, it verifies interface mode, model, takes verification screenshot, then clicks Generate, waits, and downloads. Warns about credit consumption. No annotations to contradict.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is relatively long but every sentence provides necessary detail. It front-loads the credit warning and uses bullet-like structure with punctuation. Some redundancy could be trimmed, but overall efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (8 parameters, no output schema), the description comprehensively covers behavior, prerequisites, side effects (credit consumption), and distinguishes between preparation and execution modes. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds credit warning for auto_confirm and context for brand and project_name, but most parameters are already well-described in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it generates images, with specific verb 'generate' and resource 'image'. It distinguishes between two modes (preparation vs. execution) and implicitly differentiates from video generation by mentioning checking for IMAGE mode.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit usage guidance: auto_confirm=false prepares only, no credit consumption; auto_confirm=true executes generation and consumes credits. Also instructs to verify mode is IMAGE, not Video, and that model must be an image model.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_generate_videoA

Set up a video generation in Google Flow. Fills prompt, selects Omni Flash or Veo model, configures settings. NOTE: Does NOT click final Generate (paid feature β€” stops at ready-to-generate).

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesThe text prompt for video generation.
modelNoModel: Omni Flash, Veo 2, Nano Banana 2.Omni Flash
ratioNoAspect ratio: 16:9, 9:16, 1:1.16:9
durationNoTarget duration in seconds.
reference_imagesNoPaths to reference images (optional).
project_nameNoName for the project (will reuse existing project with same campaign, or create new).
campaignNoCampaign identifier for project matching (e.g., "ete-2026", "nouvelle-collection").

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses that the tool stops at 'ready-to-generate' and does not execute the paid generation, which is a key behavioral trait. It does not cover rate limits or auth, but the core behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no extraneous content. The first states the purpose, the second provides a critical caveat. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters and no output schema, the description covers the essential behavioral context. It could optionally explain project reuse logic, but the schema already describes that. Overall, it provides adequate completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds minimal value beyond summarizing what the schema already provides ('fills prompt, selects Omni Flash or Veo model, configures settings'). No additional parameter meaning is given.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action 'Set up a video generation in Google Flow' with specific verb and resource. It differentiates from siblings like flow_generate_image by specifying video generation, and includes a critical behavioral note about not clicking final Generate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The note explicitly states what the tool does NOT do (final Generate is a paid feature), guiding appropriate use. However, it does not mention alternatives or when to use siblings, so guidance is slightly incomplete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_import_characterB

Import a character from a saved JSON file into Google Flow.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_pathYesPath to character JSON file.

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must disclose behavioral traits. It implies mutation but does not state if it overwrites existing characters, authentication needs, or error handling. The description is too brief to cover these aspects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no redundant words. Front-loaded with action and object. However, it could include more context without losing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no output schema), the description is adequate but lacks details on JSON format, validation, success/failure behavior, and contrast with sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has one parameter with minimal description 'Path to character JSON file.' Description adds 'saved JSON file' but no additional details on format or valid values. Schema coverage is 100%, so baseline is 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool imports a character from a JSON file into Google Flow. The verb 'import' and resource 'character' are specific, and it distinguishes from the sibling 'flow_create_character' which likely creates from scratch.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like 'flow_create_character'. No prerequisites, conditions, or scenarios are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_open_charactersA

Open the Google Flow Characters page and list existing characters.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description suggests a read-only operation (open and list) but does not explicitly state the absence of side effects or authentication requirements. With no annotations, this is adequate but minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, efficient and front-loaded with the key action and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no parameters and no output schema, the description covers the basic functionality. However, it lacks context about prerequisites or expected output format, which could be improved.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, and the schema coverage is 100%. The description is not required to add parameter details, so baseline score of 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: opening a specific page and listing existing characters. It effectively distinguishes from sibling tools like flow_create_character and flow_import_character.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use when you need to view existing characters, but does not provide explicit guidance on when to use this tool versus alternatives like flow_discover_ui or flow_create_character.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_queue_statusA

Check the job queue: active job, pending queue, completed and failed job history.

ParametersJSON Schema
NameRequiredDescriptionDefault
history_limitNoNumber of recent history entries to return.

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must carry the burden. It implies a read-only operation (checking), which is sufficient. However, it does not disclose any other behavioral traits (e.g., rate limits, side effects).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single, front-loaded sentence. Every word adds value; no wasted text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, no annotations. Description covers the basic purpose but lacks details on return format, error responses, or prerequisites. Adequate but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (history_limit has description). The tool description does not add further meaning beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states verb 'check' and resource 'job queue', listing the components (active, pending, completed, failed). This distinguishes it from siblings like 'flow_status' which likely covers general status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives such as 'flow_status' or 'flow_connect'. The description does not specify scenario-based usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_screenshotB

Take a screenshot of the current Google Flow page.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoCustom name for the screenshot file.manual

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description bears full responsibility for behavioral disclosure. It mentions 'current Google Flow page' but does not clarify if the screenshot captures the full page or viewport, whether it is destructive, or any permission requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-front-loaded sentence with no waste. However, it omits potentially useful details, preventing a perfect score.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description is too bare. It does not specify the output format, return value, or any side effects, leaving significant gaps for a simple tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (one parameter with description). The description does not add meaning beyond what the schema already provides, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'take', the resource 'screenshot', and the context 'current Google Flow page'. It is specific and distinguishes this tool from siblings, none of which are screenshot-related.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives (e.g., other tools for capturing visual output). There are no conditions, prerequisites, or exclusions mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_statusA

Check current connection status: browser connected, Flow page loaded, account verified, job queue state.

ParametersJSON Schema
NameRequiredDescriptionDefault
fullNoReturn full status with screenshot.

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description covers key behavioral aspects: it checks multiple status components. It does not mention side effects or authentication, but for a read-only status tool, this is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One sentence, front-loaded with the action and specific items, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given one optional parameter and no output schema, the description adequately explains the tool's purpose and checks. Minor gap: no mention of return format, but acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the schema already describes the 'full' parameter. The tool description adds no extra parameter detail, meeting baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool checks connection status and lists specific items: browser connected, Flow page loaded, account verified, job queue state. It distinguishes from siblings like flow_queue_status and flow_account_check.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description indicates the tool is for checking current status, but lacks explicit when-to-use or when-not-to-use guidance and does not mention alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_use_grid_architectA

Open Grid Architect in Google Flow, fill theme prompt, shot prompts, engine, ratio, and visual logic settings. Supports batch shot generation for brand campaigns.

ParametersJSON Schema
NameRequiredDescriptionDefault
theme_promptYesOverall theme prompt for the grid.
shot_promptsNoArray of individual shot prompts for the grid.
engineNoEngine/model for the grid.Nano Banana 2
ratioNoAspect ratio for all shots.16:9
visual_logicNoVisual logic type: None, Colour Pop, Side by Side, etc.
referencesNoPaths to reference images.
project_nameNoName for the project (will reuse existing project with same campaign, or create new).
campaignNoCampaign identifier for project matching (e.g., "ete-2026", "nouvelle-collection").

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must bear the full burden. It mentions 'open' and 'fill' but doesn't disclose whether this modifies state, requires authentication, or has side effects like creating projects. The behavior of opening an external app (Grid Architect) is hinted but not detailed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with two sentences. The first sentence front-loads the core action and settings, the second adds the purpose. No unnecessary words or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 8 parameters and no output schema, the description lacks critical context: return value, error handling, prerequisites (e.g., must be in a project), and whether it is idempotent. It mentions 'supports batch shot generation' but doesn't explain the flow or results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description lists several parameters (theme_prompt, shot_prompts, engine, ratio, visual_logic) but misses references, project_name, and campaign. It adds value by framing them as settings for batch generation, but doesn't go beyond the schema's own descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool opens Grid Architect and fills specific settings (theme, shots, engine, ratio, visual logic). It specifies batch shot generation for brand campaigns, distinguishing it from siblings like flow_generate_image that likely handle single images.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: use for batch shot generation in brand campaigns. While it doesn't explicitly list alternatives or when-not-to-use, the sibling tool names imply single-image generation (flow_generate_image) and generic tool usage (flow_use_tool), giving enough guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

flow_use_toolC

Open any tool by name in Google Flow and optionally fill its configuration parameters.

ParametersJSON Schema
NameRequiredDescriptionDefault
tool_nameYesName of the tool to open (e.g. Grid Architect, Image Generation).
paramsNoOptional configuration parameters for the tool.
project_nameNoName for the project (will reuse existing project with same campaign, or create new).
campaignNoCampaign identifier for project matching (e.g., "ete-2026", "nouvelle-collection").

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description does not disclose behavioral traits such as whether opening a tool executes it, requires authentication, or has side effects. The agent is left guessing about the tool's actual impact.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, which is concise. However, it omits important context that would justify its brevity, making it underspecified rather than efficiently informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of opening 'any tool' and the lack of output schema or annotations, the description fails to explain return values, execution behavior, or how the tool fits into the overall workflow. It is insufficient for an agent to use reliably.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage with descriptions for all four parameters, so the description adds little beyond stating that params are optional. The mention of 'optionally fill its configuration parameters' aligns with the schema but provides no additional meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Open' and the resource 'any tool by name in Google Flow', and it distinguishes from sibling tools by being a generic tool opener. However, 'open' could be interpreted as merely opening the UI rather than executing the tool, which slightly reduces clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus the more specific sibling tools (e.g., flow_use_grid_architect, flow_generate_image). The description does not specify prerequisites, when not to use it, or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.5/5.0
Disambiguation4/5

Most tools have distinct purposes (connection, character/scene management, generation, UI), but flow_generate_image and flow_generate_video could be confused if descriptions are skimmed. flow_use_tool is generic but still differentiated.

Naming Consistency5/5

All tools follow a strict 'flow_verb_noun' pattern with snake_case, e.g., flow_create_character, flow_generate_image. Naming is highly consistent and predictable.

Tool Count4/5

17 tools is appropriate for the scope of browser automation over Google Flow, covering connection, state management, content creation, and generation. Slightly on the higher side but well-justified.

Completeness3/5

Core CRUD for characters (create, import, list) but missing update/delete. No tools for scene management beyond creation. Video generation stops before final action, leaving a gap. UI discovery and queue status are nice extras.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/TMSSS05/google-flow-browser-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server