Skip to content

Commit cf01b3e

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for FIRECRAWL_API_KEY)
1 parent 17b17b2 commit cf01b3e

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/com.firecrawl-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Scrape, crawl, search, and extract structured data from websites. Converts web pages to clean markdown with JavaScript rendering support.",
77
"icon": "https://avatars.githubusercontent.com/u/135057108?v=4",
88
"schema_version": "2.1",
9-
"categories": ["search", "developer-tools"],
10-
"tags": ["firecrawl", "web-scraping", "crawling", "markdown", "extraction", "search"],
11-
9+
"categories": [
10+
"search",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"firecrawl",
15+
"web-scraping",
16+
"crawling",
17+
"markdown",
18+
"extraction",
19+
"search"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "firecrawl-mcp"],
24+
"args": [
25+
"-y",
26+
"firecrawl-mcp"
27+
],
1628
"env": {
1729
"FIRECRAWL_API_KEY": "${input:FIRECRAWL_API_KEY}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "FIRECRAWL_API_KEY",
2335
"label": "Firecrawl API Key",
2436
"description": "API key for the Firecrawl web scraping API. Free tier includes 500 credits.",
25-
"type": "password",
37+
"type": "text",
2638
"required": true,
2739
"secret": true,
2840
"placeholder": "fc-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +47,23 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "api_key",
4152
"instructions": "Get a Firecrawl API key at https://www.firecrawl.dev/app/api-keys"
4253
},
43-
4454
"contributor": {
4555
"name": "Firecrawl",
4656
"github": "firecrawl",
4757
"url": "https://www.firecrawl.dev"
4858
},
49-
5059
"links": {
5160
"repository": "https://github.com/firecrawl/firecrawl-mcp-server",
5261
"homepage": "https://www.firecrawl.dev",
5362
"documentation": "https://docs.firecrawl.dev/mcp-server"
5463
},
55-
56-
"platforms": ["all"],
57-
64+
"platforms": [
65+
"all"
66+
],
5867
"capabilities": {
5968
"tools": true,
6069
"resources": false,

0 commit comments

Comments
 (0)