Skip to main content
Glama
rocnubie

Gemini 3 Online MCP Server

by rocnubie

Gemini 3 Online MCP Server

Gemini 3 Online - Chat with Gemini 3

MCP Badge Stdio Transport Node MCP License: MIT

A Model Context Protocol server that exposes the canonical Gemini 3 Online knowledge surface — models, prompts, and chat workflows, pricing, FAQ, official links — to MCP-compatible AI clients such as Claude Desktop, Cursor, Windsurf, and Continue. Read-only, no API keys, no quota, ~50 ms cold start.

Official website: https://gemini-3.online

💬 About Gemini 3 Online

Gemini 3 Online is a web-based AI creative platform built around Google's Gemini Pro models and Veo 3 video generation technology. It gives users access to a suite of image and video creation tools directly in the browser, without requiring local setup or specialized hardware. From generating images via text prompts to converting photos into short videos, the platform covers a broad range of generative media tasks under one interface. It supports over 100 languages for prompt input and outputs files in common formats including PNG, JPG, WebP, and 4K MP4, making it practical for both personal and professional workflows.

Related MCP server: DeepSeek FR MCP Server

Key Features

  • Text-to-image generation with multiple model options including Nano Banana, Flux, Qwen, and Seedream, selectable per generation

  • Image editing tools spanning 13 specialized editors: photo enhancement, background modification, hairstyle changes, text removal, AI 3D figure creation, and more

  • Veo 3 video generation for creating short AI-generated videos, with an image-to-video conversion path

  • Trend Prompts — a curated prompt inspiration system covering styles such as Polaroid, anime-to-real, room design, and product photography

  • Aspect ratio and quality controls with credit-based generation quotas, batch processing available on premium tiers

  • API access for enterprise users who want to integrate generative capabilities into their own applications

Use Cases

  • A designer needs a set of product mockup images in consistent style — they use the image generation tool with a shared prompt template across aspect ratios

  • A content creator wants to turn a static photo into a short animated clip for social media — they use the image-to-video conversion with Veo 3

  • A small marketing team produces localized campaign visuals in multiple languages by submitting prompts in their native language directly

  • A developer building a media app evaluates the API tier to automate image generation within their pipeline

  • An educator preparing visual course materials uses the photo editing and enhancement tools to produce clean, professional-looking illustrations without design software

Who Is It For

Gemini 3 Online fits people who need generative image or video output regularly but do not want to manage local AI model installations or complex API configurations. Digital artists, content creators, and marketing professionals will find the breadth of editing tools and model choices useful for iterating on visual ideas quickly. Developers and small studios evaluating AI media generation for integration purposes can explore the platform through its free tier before committing to API access. The multilingual prompt support makes it accessible to non-English-speaking users working in regional markets, and the credit-based pricing lets occasional users pay only for what they need rather than committing to a subscription.

Tools

list_models

Return the canonical list of chat models exposed on the site, with capability notes. (Gemini 3 Online)

Input: no parameters. Returns: text/markdown.

get_pricing

Return the canonical pricing entry point for Gemini 3 Online.

Input: no parameters. Returns: text/markdown.

Return the canonical list of official links for Gemini 3 Online (website, support, docs when available).

Input: no parameters. Returns: text/markdown.

Resources

  • site://gemini-3-online/models — Supported chat models and capability notes.

  • site://gemini-3-online/pricing — Canonical pricing entry point.

  • site://gemini-3-online/faq — Short FAQ generated from public site metadata.

  • site://gemini-3-online/links — Canonical URLs to share with users.

Prompts

tell_me_about_gemini_3_online

Summarize what the site is, who it's for, and how it works. — Gemini 3 Online

start_chat_session_gemini_3_online

Open a chat-evaluation session against the site's models, with sensible defaults. — Gemini 3 Online

Installation

Install via Smithery

npx -y @smithery/cli install gemini-3-online-mcp --client claude

(Replace claude with cursor, windsurf, or continue for those clients.)

Install from source

git clone https://github.com/rocnubie/gemini-3-online-mcp.git
cd gemini-3-online-mcp
pnpm install

Then add to your MCP client config (claude_desktop_config.json for Claude Desktop, mcp.json for Cursor / Windsurf / Continue):

{
  "mcpServers": {
    "gemini-3-online-mcp": {
      "command": "node",
      "args": [
        "/absolute/path/to/gemini-3-online-mcp/src/index.mjs"
      ]
    }
  }
}

Debug with MCP Inspector

npx @modelcontextprotocol/inspector node src/index.mjs

Development

pnpm install
pnpm start                 # run the server over stdio

License

MIT

Available Tools

3 tools
get_pricingA

Return the canonical pricing entry point for Gemini 3 Online.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/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 behavioral traits. It only says 'Return' without explaining whether the result is a URL, object, or other type, nor does it mention authentication, side effects, or other relevant behavior. This is minimal disclosure.

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, focused sentence with no filler. It front-loads the core action and resource, making it highly concise and well-structured.

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 simplicity of the tool (no parameters, no annotations, no output schema), the description provides basic purpose but leaves the return format ambiguous. The term 'pricing entry point' could be interpreted in multiple ways, and without an output schema, more detail about the return value 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?

The tool has zero parameters, so the schema is trivially complete and requires no additional explanation. The description does not need to add parameter semantics, and it does not contradict 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 uses a specific verb 'Return' and clearly identifies the resource as 'canonical pricing entry point for Gemini 3 Online.' This is distinct from sibling tools like list_models and get_official_links, making the purpose immediately clear.

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 that the tool is used to retrieve pricing information, but it does not explicitly state when to use it over alternatives. No exclusions or alternative guidance are provided, leaving the usage context inferred rather than stated.

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

list_modelsA

Return the canonical list of chat models exposed on the site, with capability notes. (Gemini 3 Online)

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description must carry the behavioral disclosure burden. It does add context by noting the list is 'canonical' and includes 'capability notes,' which hints at the scope and content. However, it does not explicitly state that the operation is read-only, side-effect-free, or whether authentication is required. For a simple list tool, this is adequate but not highly 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?

The description is a single, concise sentence that front-loads the core action ('Return the canonical list of chat models') and adds a small detail ('with capability notes'). Every word earns its place, with no redundancy or filler.

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's simplicity (no parameters, no output schema), the description provides the essential information: what it returns and that it includes capability notes. It does not specify the exact return structure, but for a list endpoint this is sufficiently complete for an agent to invoke it correctly.

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 zero parameters, so the input schema is empty and schema coverage is 100%. Per the rubric, 0 parameters gives a baseline of 4. The description appropriately adds no parameter details because there are none to document.

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 returns 'the canonical list of chat models exposed on the site, with capability notes.' It uses a specific verb ('return') and resource ('canonical list of chat models'), and the mention of 'capability notes' adds specificity. It distinguishes itself from siblings like get_pricing and get_official_links by focusing on models rather than pricing or links.

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 when one needs the list of chat models, but it does not explicitly state when to use this tool versus alternatives such as get_pricing or get_official_links. It provides no exclusions or cross-references, so guidance is implied rather than explicit.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv0.1.0
    • First observedget_official_links
    • First observedget_pricing
    • First observedlist_models

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a distinct aspect: models, pricing, and official links. There is no overlap in purpose, so an agent can easily select the right tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (list_models, get_pricing, get_official_links) with lowercase and underscores. The slight variation between 'list' and 'get' is minimal and does not detract from the overall consistency.

Tool Count5/5

With only 3 tools, the server is tightly scoped to provide straightforward informational access. This count is ideal for the server's purpose and avoids unnecessary complexity.

Completeness5/5

The server covers the core information needs for Gemini 3 Online: available models, pricing, and official links. No obvious gaps exist for the intended use case.

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/rocnubie/gemini-3-online-mcp'

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