CLDGeminiPDF MCP Server enables Claude Desktop to analyze PDF documents using Google's Gemini AI models, providing intelligent text extraction and content analysis through seamless Model Context Protocol integration.
Extract and analyze PDF content using Gemini AI models.
Choose from various Gemini models (2.5, 2.0, 1.5 series, and Gemma models).
Direct PDF upload to Gemini or fallback text extraction.
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/your/documents"
]
},
"CLDGeminiPDF": {
"command": "java",
"args": [
"-jar",
"/path/to/CLDGeminiPDF.v1.0.0.jar"
],
"env": {
"GEMINI_API_KEY": "your_api_key_here",
"GEMINI_MODEL": "gemini-2.0-flash"
}
}
}
}