|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.tavily-mcp", |
| 4 | + "name": "Tavily", |
| 5 | + "alias": "tavily", |
| 6 | + "description": "AI-optimized search, web content extraction, site mapping, and crawling through the official Tavily MCP server. Purpose-built for LLM research workflows.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/170207473?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["search"], |
| 10 | + "tags": ["tavily", "search", "web-search", "research", "extraction", "crawling", "ai-search"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "tavily-mcp@latest"], |
| 16 | + "env": { |
| 17 | + "TAVILY_API_KEY": "${input:TAVILY_API_KEY}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "TAVILY_API_KEY", |
| 23 | + "label": "Tavily API Key", |
| 24 | + "description": "API key for the Tavily Search API. Free tier includes 1,000 API credits per month.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "tvly-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://app.tavily.com/home", |
| 31 | + "instructions": "1. Go to app.tavily.com and create an account\n2. Navigate to the dashboard\n3. Copy your API key\n4. Free tier includes 1,000 credits/month", |
| 32 | + "button_label": "Get API Key" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Get a Tavily API key at https://app.tavily.com/home" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "Tavily", |
| 46 | + "github": "tavily-ai", |
| 47 | + "url": "https://tavily.com" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/tavily-ai/tavily-mcp", |
| 52 | + "homepage": "https://tavily.com", |
| 53 | + "documentation": "https://docs.tavily.com/documentation/mcp" |
| 54 | + }, |
| 55 | + |
| 56 | + "platforms": ["all"], |
| 57 | + |
| 58 | + "capabilities": { |
| 59 | + "tools": true, |
| 60 | + "resources": false, |
| 61 | + "prompts": false, |
| 62 | + "read_only_mode": true |
| 63 | + } |
| 64 | +} |
0 commit comments