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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
16 changes: 16 additions & 0 deletions gemini-extension.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}