Gemini Docs MCP Server
MCP server for retrieving relevant documentation from a knowledge base
Overview
Gemini Docs MCP Server is a server designed to retrieve relevant documentation from a curated knowledge base using the Gemini API, which allows for a context window of up to 2 million tokens.
To use the server, install it via Smithery and configure it in your settings file. You can then query the documentation using various tools provided by the server.
- Access to a curated knowledge base for accurate documentation retrieval. - Overcomes context window limitations by providing direct access to documentation. - Tailored responses that consider the entire specification of the technology. - Multiple querying tools for specific tasks and best practices.
- Learning and debugging for various technologies.
- Checking if specific tasks can be accomplished in a given technology.
- Getting hints for solving specific problems.
- Evaluating code snippets for best practices.
Add to your AI client
Use these steps to connect Gemini Docs MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"cosa-sai-m-gonzalo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cosa-sai-m-gonzalo"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"cosa-sai-m-gonzalo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cosa-sai-m-gonzalo"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"cosa-sai-m-gonzalo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cosa-sai-m-gonzalo"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"cosa-sai-m-gonzalo": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cosa-sai-m-gonzalo"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cosa-sai-m-gonzalo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cosa-sai-m-gonzalo"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"cosa-sai-m-gonzalo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cosa-sai-m-gonzalo"
]
}
}
}FAQ
Can this server handle all technologies?
Yes, it is designed to work with a wide range of technologies, including lesser-known ones.
Is real-time documentation updating supported?
No, the documentation is static and requires manual updates.
How fast does the server respond?
Response time may vary, especially for the first query as documentation is loaded.