-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathsmithery.yaml
More file actions
24 lines (23 loc) · 758 Bytes
/
Copy pathsmithery.yaml
File metadata and controls
24 lines (23 loc) · 758 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
# Smithery configuration — https://smithery.ai/docs/build/project-config
# webclaw MCP server: web extraction for AI agents with bot-protection bypass
startCommand:
type: stdio
configSchema:
type: object
properties:
apiKey:
type: string
description: >
webclaw API key from webclaw.io. Optional — the server works
locally without one. Set this for automatic fallback to the
webclaw cloud API when a site has bot protection or requires
JS rendering.
secret: true
commandFunction: |
(config) => ({
command: 'webclaw-mcp',
args: [],
env: config.apiKey ? { WEBCLAW_API_KEY: config.apiKey } : {}
})
exampleConfig:
apiKey: wc_your_api_key_here