{ "name": "@houtini/gemini-mcp", "version": "2.6.2", "mcpName": "io.github.houtini-ai/gemini", "type": "module", "description": "Gemini MCP server for Claude - image generation, video, SVG and Google Search grounding. Nano Banana Pro, Veo 3.1 and Gemini 3.1 Pro as tools.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "gemini-mcp": "dist/cli.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "scripts": { "build:server": "tsc -p tsconfig.server.json", "build:ui:image": "cross-env INPUT=src/ui/image-viewer.html OUT_DIR=dist/image-viewer vite build", "build:ui:video": "cross-env INPUT=src/ui/video-viewer.html OUT_DIR=dist/video-viewer vite build", "build:ui:svg": "cross-env INPUT=src/ui/svg-viewer.html OUT_DIR=dist/svg-viewer vite build", "build:ui:landing-page": "cross-env INPUT=src/ui/landing-page-viewer.html OUT_DIR=dist/landing-page-viewer vite build", "build:ui": "npm run build:ui:image && npm run build:ui:video && npm run build:ui:svg && npm run build:ui:landing-page", "build": "npm run build:server && npm run build:ui", "dev": "tsx src/index.ts", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepublishOnly": "npm run build", "prepack": "npm run build", "clean": "rm -rf dist", "type-check": "tsc -p tsconfig.server.json --noEmit" }, "keywords": [ "mcp", "model-context-protocol", "gemini", "google", "ai", "llm", "chatbot", "typescript", "nodejs", "claude", "anthropic", "generative-ai", "machine-learning", "artificial-intelligence" ], "author": "Houtini", "license": "Apache-2.0", "homepage": "https://houtini.com/gemini-mcp/", "repository": { "type": "git", "url": "git+https://github.com/houtini-ai/gemini-mcp.git" }, "bugs": { "url": "https://github.com/houtini-ai/gemini-mcp/issues" }, "dependencies": { "@google/genai": "^2.8.0", "@modelcontextprotocol/ext-apps": "^1.3.1", "@modelcontextprotocol/sdk": "^1.27.0", "@panzoom/panzoom": "^4.6.1", "dotenv": "^16.4.5", "sharp": "^0.34.5", "winston": "^3.14.0", "zod": "^3.25.0", "zod-to-json-schema": "^3.25.1" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.19.33", "@types/sharp": "^0.31.1", "@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/parser": "^8.45.0", "cross-env": "^10.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "ts-jest": "^29.1.0", "tsx": "^4.16.0", "typescript": "^5.5.0", "vite": "^6.4.1", "vite-plugin-singlefile": "^2.3.0" }, "engines": { "node": ">=18.0.0", "npm": ">=10.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE", "assets/logo.png", "assets/icon.png", "server.json", ".env.example", "claude_desktop_config_example.json" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "funding": { "type": "github", "url": "https://github.com/sponsors/houtini-ai" } }