Skip to content

Commit d6298f7

Browse files
authored
feat: add Tavily MCP server definition (#77)
* 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 * fix: update server definition (input type 'password' -> 'text' for TAVILY_API_KEY) * 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 <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 27e2469 commit d6298f7

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.tavily-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.tavily-mcp-npx",
4+
"name": "Tavily (npx)",
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": [
10+
"search"
11+
],
12+
"tags": [
13+
"tavily",
14+
"search",
15+
"web-search",
16+
"research",
17+
"extraction",
18+
"crawling",
19+
"ai-search"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"tavily-mcp@latest"
27+
],
28+
"env": {
29+
"TAVILY_API_KEY": "${input:TAVILY_API_KEY}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "TAVILY_API_KEY",
35+
"label": "Tavily API Key",
36+
"description": "API key for the Tavily Search API. Free tier includes 1,000 API credits per month.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "tvly-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://app.tavily.com/home",
43+
"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",
44+
"button_label": "Get API Key"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Get a Tavily API key at https://app.tavily.com/home"
53+
},
54+
"contributor": {
55+
"name": "Tavily",
56+
"github": "tavily-ai",
57+
"url": "https://tavily.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/tavily-ai/tavily-mcp",
61+
"homepage": "https://tavily.com",
62+
"documentation": "https://docs.tavily.com/documentation/mcp"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": true
72+
}
73+
}

0 commit comments

Comments
 (0)