mcp-gemini CLAUDE.md

mcp-gemini CLAUDE.md is an instructions file for coding agents from danjam/mcp-gemini. It costs 911 tokens per session, scanned A, original, MIT.

A set of project instructions for an MCP server that connects Google Gemini to AI tools. It covers the TypeScript build, environment variables, tests, manual JSON-RPC testing, and source-code structure.

In plain words
What is it for?
Use it when building, testing, linting, running, or manually checking this Gemini MCP server.
Why use it?
It gives an agent the information needed to run and change the server correctly. It also clarifies that the server communicates through standard input and output rather than an HTTP endpoint.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/danjam/mcp-gemini/claude-md
Clone the repo
git clone --depth 1 https://github.com/danjam/mcp-gemini

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-gemini CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/danjam/mcp-gemini/claude-md.svg)](https://agentmods.dev/instructions/danjam/mcp-gemini/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/danjam/mcp-gemini/claude-md"><img src="https://agentmods.dev/badge/instructions/danjam/mcp-gemini/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 911 This file is loaded in full into every session.
When invoked 911 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00911 $0.00911
Opus 5 $0.00456 $0.00456
Sonnet 5 $0.00182 $0.00182
Haiku 4.5 $0.00091 $0.00091

Measured 4d ago against content hash 48a7f19e4310, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcp-gemini CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Build and Run

npm install      # Install dependencies
npm run build    # Compile TypeScript (tsc)
npm start        # Run server (node dist/index.js)

Unit tests via node:test (built-in), linting via Biome:

npm test            # Build + run tests
npm run test:only   # Run tests without rebuilding
npm run lint        # Check for issues
npm run lint:fix    # Auto-fix issues

Environment

Requires GEMINI_API_KEY env var.

Optional: GEMINI_DEFAULT_MODEL overrides the default model (falls back to gemini-flash-latest).

Manual Testing

Pipe JSON-RPC messages to stdin:

printf '{"jsonrpc":"2.0","id":1,"method":"initialize"}\n{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"generate_text","arguments":{"prompt":"Say hello"}}}\n' | GEMINI_API_KEY=your-key node dist/index.js

Architecture

This is a Model Context Protocol (MCP) server that wraps Google Gemini's API. It communicates over stdin/stdout using JSON-RPC 2.0 — there is no HTTP server.

Source files:

  • src/index.ts — Entrypoint: I/O helpers (send, reply, textReply, errorReply, error), request dispatch, readline listener
  • src/handlers.tscreateHandlers() factory returning a handler map; individual tool handler functions
  • src/tools.ts — Tool schema definitions (static JSON Schema data for MCP tools/list)
  • src/conversations.ts — Conversation store with TTL pruning (30min expiry, max 100 conversations)
  • src/models.ts — Model lists, defaults, GEMINI_DEFAULT_MODEL env var override
  • src/types.ts — All type definitions: RequestId, ToolName, ToolResult, ToolHandler, tool arg interfaces, MCP interfaces (MCPToolAnnotations, MCPToolDefinition, MCPRequest, MCPResponse)

Request flow: stdin line → JSON parse → handleRequest dispatches by MCP method (initialize, tools/list, tools/call) → handleToolCall looks up handler in map → handler returns ToolResult → dispatch maps result to JSON-RPC response on stdout.

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 72 lines · 911 tokens per session scan A 48a7f19e4310

Subscribe to this mod's changes

mcp-gemini CLAUDE.md is an instructions file published in the GitHub repository danjam/mcp-gemini (1 stars, last pushed 5mo ago), licensed MIT. It adds 911 tokens to every session, about $0.0046 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.