From 1858b431571599030f5c03ff584ecb5c89ec3e94 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:33:56 +0000 Subject: [PATCH 1/3] feat: add Tavily MCP server definition Add Tavily local stdio server via npx tavily-mcp@latest. AI-optimized search, content extraction, site mapping, and crawling. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.tavily-mcp.json | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.tavily-mcp.json diff --git a/servers/com.tavily-mcp.json b/servers/com.tavily-mcp.json new file mode 100644 index 0000000..5591e79 --- /dev/null +++ b/servers/com.tavily-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.tavily-mcp", + "name": "Tavily", + "alias": "tavily", + "description": "AI-optimized search, web content extraction, site mapping, and crawling through the official Tavily MCP server. Purpose-built for LLM research workflows.", + "icon": "https://avatars.githubusercontent.com/u/170207473?v=4", + "schema_version": "2.1", + "categories": ["search"], + "tags": ["tavily", "search", "web-search", "research", "extraction", "crawling", "ai-search"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "tavily-mcp@latest"], + "env": { + "TAVILY_API_KEY": "${input:TAVILY_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "TAVILY_API_KEY", + "label": "Tavily API Key", + "description": "API key for the Tavily Search API. Free tier includes 1,000 API credits per month.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "tvly-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://app.tavily.com/home", + "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", + "button_label": "Get API Key" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Get a Tavily API key at https://app.tavily.com/home" + }, + + "contributor": { + "name": "Tavily", + "github": "tavily-ai", + "url": "https://tavily.com" + }, + + "links": { + "repository": "https://github.com/tavily-ai/tavily-mcp", + "homepage": "https://tavily.com", + "documentation": "https://docs.tavily.com/documentation/mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": true + } +} From 73cf5ed931211d0b6694fb9a01d7db9ae24d957c Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:11:09 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for TAVILY_API_KEY) --- servers/com.tavily-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.tavily-mcp.json b/servers/com.tavily-mcp.json index 5591e79..ca76c07 100644 --- a/servers/com.tavily-mcp.json +++ b/servers/com.tavily-mcp.json @@ -6,13 +6,25 @@ "description": "AI-optimized search, web content extraction, site mapping, and crawling through the official Tavily MCP server. Purpose-built for LLM research workflows.", "icon": "https://avatars.githubusercontent.com/u/170207473?v=4", "schema_version": "2.1", - "categories": ["search"], - "tags": ["tavily", "search", "web-search", "research", "extraction", "crawling", "ai-search"], - + "categories": [ + "search" + ], + "tags": [ + "tavily", + "search", + "web-search", + "research", + "extraction", + "crawling", + "ai-search" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "tavily-mcp@latest"], + "args": [ + "-y", + "tavily-mcp@latest" + ], "env": { "TAVILY_API_KEY": "${input:TAVILY_API_KEY}" }, @@ -22,7 +34,7 @@ "id": "TAVILY_API_KEY", "label": "Tavily API Key", "description": "API key for the Tavily Search API. Free tier includes 1,000 API credits per month.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "tvly-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Get a Tavily API key at https://app.tavily.com/home" }, - "contributor": { "name": "Tavily", "github": "tavily-ai", "url": "https://tavily.com" }, - "links": { "repository": "https://github.com/tavily-ai/tavily-mcp", "homepage": "https://tavily.com", "documentation": "https://docs.tavily.com/documentation/mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 1634d7703ba52adfc459bbc77c601a5e9f565ce0 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:46:06 +0800 Subject: [PATCH 3/3] fix: rename server files with transport suffix - com.tavily-mcp.json -> com.tavily-mcp-npx.json (id: com.tavily-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{com.tavily-mcp.json => com.tavily-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.tavily-mcp.json => com.tavily-mcp-npx.json} (97%) diff --git a/servers/com.tavily-mcp.json b/servers/com.tavily-mcp-npx.json similarity index 97% rename from servers/com.tavily-mcp.json rename to servers/com.tavily-mcp-npx.json index ca76c07..89bd969 100644 --- a/servers/com.tavily-mcp.json +++ b/servers/com.tavily-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.tavily-mcp", - "name": "Tavily", + "id": "com.tavily-mcp-npx", + "name": "Tavily (npx)", "alias": "tavily", "description": "AI-optimized search, web content extraction, site mapping, and crawling through the official Tavily MCP server. Purpose-built for LLM research workflows.", "icon": "https://avatars.githubusercontent.com/u/170207473?v=4",