Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM node:lts-alpine

# Create app directory
WORKDIR /app

# Install dependencies
COPY package.json package-lock.json tsconfig.json ./
# Copy source code
COPY src ./src

RUN npm ci --ignore-scripts && npm run build

# Expose no ports since stdio transport
ENTRYPOINT ["node", "dist/index.js"]
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
[![npm downloads](https://img.shields.io/npm/dt/gemini-mcp-tool)](https://www.npmjs.com/package/gemini-mcp-tool)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Open Source](https://img.shields.io/badge/Open%20Source-❤️-red.svg)](https://github.com/jamubc/gemini-mcp-tool)
[![smithery badge](https://smithery.ai/badge/@jamubc/gemini-mcp-tool)](https://smithery.ai/server/@jamubc/gemini-mcp-tool)

</div>

Expand Down Expand Up @@ -57,6 +58,14 @@ Type `/mcp` inside Claude Code to verify the gemini-cli MCP is active.

---

### Installing via Smithery

To install Gemini CLI Integration Tool for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@jamubc/gemini-mcp-tool):

```bash
npx -y @smithery/cli install @jamubc/gemini-mcp-tool --client claude
```

### Alternative: Import from Claude Desktop

If you already have it configured in Claude Desktop:
Expand Down
14 changes: 14 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: stdio
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['dist/index.js'] })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
properties: {}
description: No configuration needed for gemini-mcp-tool
exampleConfig: {}