Skip to content

Commit 800c4fb

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for TAVILY_API_KEY)
1 parent 5bb9ea8 commit 800c4fb

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/com.tavily-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "AI-optimized search, web content extraction, site mapping, and crawling through the official Tavily MCP server. Purpose-built for LLM research workflows.",
77
"icon": "https://avatars.githubusercontent.com/u/170207473?v=4",
88
"schema_version": "2.1",
9-
"categories": ["search"],
10-
"tags": ["tavily", "search", "web-search", "research", "extraction", "crawling", "ai-search"],
11-
9+
"categories": [
10+
"search"
11+
],
12+
"tags": [
13+
"tavily",
14+
"search",
15+
"web-search",
16+
"research",
17+
"extraction",
18+
"crawling",
19+
"ai-search"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "tavily-mcp@latest"],
24+
"args": [
25+
"-y",
26+
"tavily-mcp@latest"
27+
],
1628
"env": {
1729
"TAVILY_API_KEY": "${input:TAVILY_API_KEY}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "TAVILY_API_KEY",
2335
"label": "Tavily API Key",
2436
"description": "API key for the Tavily Search API. Free tier includes 1,000 API credits per month.",
25-
"type": "password",
37+
"type": "text",
2638
"required": true,
2739
"secret": true,
2840
"placeholder": "tvly-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +47,23 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "api_key",
4152
"instructions": "Get a Tavily API key at https://app.tavily.com/home"
4253
},
43-
4454
"contributor": {
4555
"name": "Tavily",
4656
"github": "tavily-ai",
4757
"url": "https://tavily.com"
4858
},
49-
5059
"links": {
5160
"repository": "https://github.com/tavily-ai/tavily-mcp",
5261
"homepage": "https://tavily.com",
5362
"documentation": "https://docs.tavily.com/documentation/mcp"
5463
},
55-
56-
"platforms": ["all"],
57-
64+
"platforms": [
65+
"all"
66+
],
5867
"capabilities": {
5968
"tools": true,
6069
"resources": false,

0 commit comments

Comments
 (0)