MCP-сервер Gemma AI (LLM Google).
Gemma AI - Free Google Gemma Chat with Advanced AI Models
A Model Context Protocol server that exposes the canonical Gemma AI 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://gemmaai.online
Gemma AI (gemmaai.online) is a web-based platform that provides free access to Google DeepMind's Gemma 4 family of open-source AI models through a conversational chat interface. No credit card or subscription is required to get started. The platform covers four model variants spanning a wide capability range, from compact edge-optimized builds designed for mobile and browser deployment all the way to a flagship 31-billion-parameter dense model that ranks among the top three on the Arena AI public leaderboard. All models are released under the Apache 2.0 license, making them suitable for both personal experimentation and commercial use.
Gemma AI serves a broad technical audience. Developers and researchers who want access to frontier open-source models without a subscription barrier will find the free chat interface immediately useful. Teams evaluating models for commercial products benefit from the Apache 2.0 licensing and the range of deployment options. Students working on math, coding, or multimodal projects get access to high-performing models that would otherwise require cloud API budgets. Developers building privacy-first or offline-capable applications can use the edge-optimized variants as a starting point before moving to local deployment with Ollama, llama.cpp, or browser-native runtimes.
list_modelsReturn the canonical list of chat models exposed on the site, with capability notes. (Gemma AI)
Input: no parameters. Returns: text/markdown.
get_pricingReturn the canonical pricing entry point for Gemma AI.
Input: no parameters. Returns: text/markdown.
get_official_linksReturn the canonical list of official links for Gemma AI (website, support, docs when available).
Input: no parameters. Returns: text/markdown.
site://gemmaai/models — Supported chat models and capability notes.site://gemmaai/pricing — Canonical pricing entry point.site://gemmaai/faq — Short FAQ generated from public site metadata.site://gemmaai/links — Canonical URLs to share with users.tell_me_about_gemmaaiSummarize what the site is, who it's for, and how it works. — Gemma AI
start_chat_session_gemmaaiOpen a chat-evaluation session against the site's models, with sensible defaults. — Gemma AI
npx -y @smithery/cli install gemmaai-mcp --client claude
(Replace claude with cursor, windsurf, or continue for those clients.)
git clone https://github.com/rocnubie/gemmaai-mcp.git
cd gemmaai-mcp
pnpm install
Then add to your MCP client config (claude_desktop_config.json for Claude Desktop, mcp.json for Cursor / Windsurf / Continue):
{
"mcpServers": {
"gemmaai-mcp": {
"command": "node",
"args": [
"/absolute/path/to/gemmaai-mcp/src/index.mjs"
]
}
}
}
npx @modelcontextprotocol/inspector node src/index.mjs
pnpm install
pnpm start # run the server over stdio
MIT