UNPKG

gemini-mcp-tool

Version:

MCP server for Gemini CLI integration

10 lines 537 B
// Tool Registry Index - Registers all tools import { toolRegistry } from './registry.js'; import { askGeminiTool } from './ask-gemini.tool.js'; import { pingTool, helpTool } from './simple-tools.js'; import { brainstormTool } from './brainstorm.tool.js'; import { fetchChunkTool } from './fetch-chunk.tool.js'; import { timeoutTestTool } from './timeout-test.tool.js'; toolRegistry.push(askGeminiTool, pingTool, helpTool, brainstormTool, fetchChunkTool, timeoutTestTool); export * from './registry.js'; //# sourceMappingURL=index.js.map