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" + } + ] +}