From 9fce8f4ac82f4da829807d530e4a4ee1483d9d50 Mon Sep 17 00:00:00 2001 From: Shruti Mantri Date: Tue, 17 Feb 2026 16:58:39 +0530 Subject: [PATCH] feat: add support for Gemini CLI via gemini extensions --- README.md | 8 ++++++++ gemini-extension.json | 16 ++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 gemini-extension.json diff --git a/README.md b/README.md index 52bfc9e..a42a4e1 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,14 @@ You will then be redirected to your `mcp.json` file where you have to add `your- } ``` +## Connect to Gemini CLI + +Run the following command in your terminal to install Tavily MCP server on Gemini CLI: + +```bash +gemini extensions install https://github.com/tavily-ai/tavily-mcp +``` + ### Remote MCP Server OAuth Flow The Tavily Remote MCP server supports secure OAuth authentication, allowing you to connect and authorize seamlessly with compatible clients. diff --git a/gemini-extension.json b/gemini-extension.json new file mode 100644 index 0000000..55bd527 --- /dev/null +++ b/gemini-extension.json @@ -0,0 +1,16 @@ +{ + "name": "tavily-mcp", + "version": "1.0.0", + "mcpServers": { + "tavily-mcp": { + "httpUrl": "https://mcp.tavily.com/mcp/?tavilyApiKey=${TAVILY_API_KEY}" + } + }, + "settings": [ + { + "name": "Tavily API Key", + "description": "Tavily API Key", + "envVar": "TAVILY_API_KEY" + } + ] +}