-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.mcp.json.sample
More file actions
44 lines (44 loc) · 963 Bytes
/
Copy path.mcp.json.sample
File metadata and controls
44 lines (44 loc) · 963 Bytes
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
{
"mcpServers": {
"freecrawl": {
"command": "uvx",
"args": ["freecrawl-mcp"],
"env": {
"FREECRAWL_LOG_LEVEL": "INFO",
"FREECRAWL_CACHE_TTL": "3600",
"FREECRAWL_MAX_CONCURRENT": "10",
"FREECRAWL_RATE_LIMIT": "10"
}
},
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
},
"docker-mcp": {
"command": "uvx",
"args": [
"docker-mcp"
]
},
"ElevenLabs": {
"command": "uvx",
"args": [
"elevenlabs-mcp"
],
"env": {
"ELEVENLABS_API_KEY": "${ELEVENLABS_API_KEY}"
}
},
"stock-images-mcp": {
"command": "uvx",
"args": ["git+https://github.com/Zulelee/stock-images-mcp"],
"env": {
"UNSPLASH_API_KEY": "${UNSPLASH_API_KEY}",
"PEXELS_API_KEY": "${PEXELS_API_KEY}",
"PIXABAY_API_KEY": "${PIXABAY_API_KEY}"
}
}
}
}