MCP server intelligence profile

Gemini MCP Ultimate MCP Server

Enables Claude to offload large codebase analysis to Google Gemini with 1M+ token context windows, persistent sessions, and dramatic token savings

Local OnlyGlitterKill
Awaiting current scanNpm · 2.0.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install gemini-mcp-ultimate from npm

Version 2.0.3 declares 1 executable entrypoint.

npm install --save-exact gemini-mcp-ultimate@2.0.3
npx -y -p gemini-mcp-ultimate@2.0.3 gemini-mcp-ultimate
MCP client configuration example
{
  "mcpServers": {
    "gemini-mcp-ultimate": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "gemini-mcp-ultimate@2.0.3",
        "gemini-mcp-ultimate"
      ]
    }
  }
}

Identity

Canonical sluggemini-mcp-ultimate-9e0742dcDeploymentLocal Only
Canonical packagenpm:gemini-mcp-ultimateRepositoryGlitterKill/gemini-mcp-ultimate
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmgemini-mcp-ultimate2.0.31Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmgemini-mcp-ultimate2.0.3CurrentSep 5, 20268 toolsSucceeded · 0 resources · 6 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
gemini-mcp-ultimateServer-reported name
3Capability groups
Aug 22, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
ask-geminimodel selection [-m], sandbox [-s], and changeMode:boolean for providing edits
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "minLength": 1,
      "description": "Analysis request. Use @ syntax to include files (e.g., '@largefile.js explain what this does') or ask general questions"
    },
    "model": {
      "type": "string",
      "description": "Optional model to use (e.g., 'gemini-3-flash-preview'). If not specified, uses the default model (gemini-3-pro-preview)."
    },
    "sandbox": {
      "type": "boolean",
      "default": false,
      "description": "Use sandbox mode (-s flag) to safely test code changes, execute scripts, or run potentially risky operations in an isolated environment"
    },
    "changeMode": {
      "type": "boolean",
      "default": false,
      "description": "Enable structured change mode - formats prompts to prevent tool errors and returns structured edit suggestions that Claude can apply directly"
    },
    "chunkIndex": {
      "type": [
        "number",
        "string"
      ],
      "description": "Which chunk to return (1-based)"
    },
    "chunkCacheKey": {
      "type": "string",
      "description": "Optional cache key for continuation"
    },
    "session_id": {
      "type": [
        "string",
        "number"
      ],
      "description": "Session ID or index to resume a previous conversation context (maps to --resume)"
    },
    "approval_mode": {
      "type": "string",
      "enum": [
        "default",
        "auto_edit",
        "yolo"
      ],
      "default": "yolo",
      "description": "Autonomy control: 'default' (ask), 'auto_edit' (allow edits), 'yolo' (allow all)"
    },
    "include_directories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Additional directories to include in the workspace context"
    },
    "output_format": {
      "type": "string",
      "enum": [
        "text",
        "json",
        "stream-json"
      ],
      "description": "Output format: 'text' (default), 'json', or 'stream-json'"
    },
    "experimental_acp": {
      "type": "boolean",
      "description": "Enable experimental ACP (Agentic Coding Protocol) mode"
    },
    "allowed_tools": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Specific tools to allow without confirmation (overrides approval_mode)"
    }
  },
  "required": [
    "prompt"
  ]
}
brainstormGenerate novel ideas with dynamic context gathering. --> Creative frameworks (SCAMPER, Design Thinking, etc.), domain context integration, idea clustering, feasibility analysis, and iterative refinement.
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "minLength": 1,
      "description": "Primary brainstorming challenge or question to explore"
    },
    "model": {
      "type": "string",
      "description": "Optional model to use (e.g., 'gemini-3-flash-preview'). If not specified, uses the default model (gemini-3-pro-preview)."
    },
    "methodology": {
      "type": "string",
      "enum": [
        "divergent",
        "convergent",
        "scamper",
        "design-thinking",
        "lateral",
        "auto"
      ],
      "default": "auto",
      "description": "Brainstorming framework: 'divergent' (generate many ideas), 'convergent' (refine existing), 'scamper' (systematic triggers), 'design-thinking' (human-centered), 'lateral' (unexpected connections), 'auto' (AI selects best)"
    },
    "domain": {
      "type": "string",
      "description": "Domain context for specialized brainstorming (e.g., 'software', 'business', 'creative', 'research', 'product', 'marketing')"
    },
    "constraints": {
      "type": "string",
      "description": "Known limitations, requirements, or boundaries (budget, time, technical, legal, etc.)"
    },
    "existingContext": {
      "type": "string",
      "description": "Background information, previous attempts, or current state to build upon"
    },
    "ideaCount": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 100,
      "default": 12,
      "description": "Target number of ideas to generate (default: 12, max: 100)"
    },
    "includeAnalysis": {
      "type": "boolean",
      "default": true,
      "description": "Include feasibility, impact, and implementation analysis for generated ideas"
    }
  },
  "required": [
    "prompt"
  ]
}
fetch-chunkRetrieves cached chunks from a changeMode response. Use this to get subsequent chunks after receiving a partial changeMode response.
Input schema
{
  "type": "object",
  "properties": {
    "cacheKey": {
      "type": "string",
      "description": "The cache key provided in the initial changeMode response"
    },
    "chunkIndex": {
      "type": "number",
      "minimum": 1,
      "description": "Which chunk to retrieve (1-based index)"
    }
  },
  "required": [
    "cacheKey",
    "chunkIndex"
  ]
}
Helpreceive help information
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
manage-extensionsManage Gemini CLI extensions: list, install, uninstall, update, enable, disable.
Input schema
{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "list",
        "install",
        "uninstall",
        "update",
        "enable",
        "disable",
        "validate"
      ],
      "description": "The action to perform on extensions."
    },
    "target": {
      "type": "string",
      "description": "The name, path, or URL of the extension. Required for install, uninstall, enable, disable, update (single), and validate."
    },
    "all": {
      "type": "boolean",
      "description": "Update all extensions. Only valid with 'update' action."
    },
    "scope": {
      "type": "string",
      "description": "Scope for enable/disable (e.g. 'project' or 'global'). Defaults to project if omitted."
    }
  },
  "required": [
    "action"
  ]
}
manage-sessionsManage conversation sessions: list active sessions or delete old ones.
Input schema
{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "list",
        "delete"
      ],
      "default": "list",
      "description": "Action to perform: 'list' active sessions or 'delete' a specific session"
    },
    "session_id": {
      "type": "string",
      "description": "Session ID or index to delete (required for 'delete' action)"
    }
  },
  "required": []
}
pingEcho
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "default": "",
      "description": "Message to echo back"
    }
  },
  "required": []
}
timeout-testTest timeout prevention by running for a specified duration
Input schema
{
  "type": "object",
  "properties": {
    "duration": {
      "type": "number",
      "minimum": 10,
      "description": "Duration in milliseconds (minimum 10ms)"
    }
  },
  "required": [
    "duration"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 6

  • ask-geminiask-gemini

    Execute 'gemini -p <prompt>' to get Gemini AI's response. Supports enhanced change mode for structured edit suggestions.

  • brainstormbrainstorm

    Generate structured brainstorming prompt with methodology-driven ideation, domain context integration, and analytical evaluation framework

  • fetch-chunkfetch-chunk

    Fetch the next chunk of a response

  • HelpHelp

    receive help information

  • pingping

    Echo test message with structured response.

  • timeout-testtimeout-test

    Test the timeout prevention system by running a long operation

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Gemini MCP Ultimate MCP Server questions

How do I install Gemini MCP Ultimate MCP Server?

Install the selected package version with: npm install --save-exact gemini-mcp-ultimate@2.0.3

What tools does Gemini MCP Ultimate MCP Server provide?

Gemini MCP Ultimate MCP Server exposed 8 tools during independent protocol observation, including ask-gemini, brainstorm, fetch-chunk, Help, manage-extensions, manage-sessions, ping, timeout-test.

Is Gemini MCP Ultimate MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Google intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.