-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.firecrawl-mcp-npx.json
More file actions
73 lines (73 loc) · 2.02 KB
/
Copy pathcom.firecrawl-mcp-npx.json
File metadata and controls
73 lines (73 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.firecrawl-mcp-npx",
"name": "Firecrawl (npx)",
"alias": "firecrawl",
"description": "Scrape, crawl, search, and extract structured data from websites. Converts web pages to clean markdown with JavaScript rendering support.",
"icon": "https://avatars.githubusercontent.com/u/135057108?v=4",
"schema_version": "2.1",
"categories": [
"search",
"developer-tools"
],
"tags": [
"firecrawl",
"web-scraping",
"crawling",
"markdown",
"extraction",
"search"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"firecrawl-mcp"
],
"env": {
"FIRECRAWL_API_KEY": "${input:FIRECRAWL_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "FIRECRAWL_API_KEY",
"label": "Firecrawl API Key",
"description": "API key for the Firecrawl web scraping API. Free tier includes 500 credits.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "fc-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://www.firecrawl.dev/app/api-keys",
"instructions": "1. Go to firecrawl.dev and create an account\n2. Navigate to the API Keys page\n3. Click 'Create API Key'\n4. Copy the generated key (starts with fc-)",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Get a Firecrawl API key at https://www.firecrawl.dev/app/api-keys"
},
"contributor": {
"name": "Firecrawl",
"github": "firecrawl",
"url": "https://www.firecrawl.dev"
},
"links": {
"repository": "https://github.com/firecrawl/firecrawl-mcp-server",
"homepage": "https://www.firecrawl.dev",
"documentation": "https://docs.firecrawl.dev/mcp-server"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
}
}