-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
89 lines (89 loc) · 3.06 KB
/
Copy pathserver.json
File metadata and controls
89 lines (89 loc) · 3.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.2captcha/mcp",
"description": "Web search, scraping past anti-bot walls, marketplace parsing, browser automation, CAPTCHA solving.",
"repository": {
"url": "https://github.com/2captcha/2captcha-mcp",
"source": "github"
},
"version": "0.1.3",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@2captcha/mcp",
"version": "0.1.3",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "API_TOKEN",
"description": "Your 2Captcha API key (or the bearer token your server operator issued). Signing up is free and includes a monthly allowance of calls.",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "GROUPS",
"description": "Comma-separated tool group ids: parsing, batch, captcha, browser (11 login tools), browser_full (all 23), all (default: parsing,batch,captcha)",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "TOOLS",
"description": "Comma-separated individual tool names to enable",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "MCP_URL",
"description": "Remote MCP endpoint (default: https://mcp.2captcha.com/mcp) — set for a self-hosted webparse server",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "POLLING_TIMEOUT",
"description": "Per-tool-call timeout in seconds (default: 600)",
"isRequired": false,
"isSecret": false,
"format": "number"
},
{
"name": "RATE_LIMIT",
"description": "Client-side call rate limit, e.g. 100/1h or 50/30m",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.2captcha.com/mcp",
"headers": [
{
"name": "Authorization",
"description": "Bearer authentication with your 2Captcha API key. The endpoint answers an unauthenticated connection with 401 invalid_token before any tool call, so a client that omits this header never reaches the tool list.",
"isRequired": true,
"isSecret": true,
"value": "Bearer {api_token}",
"variables": {
"api_token": {
"description": "Your 2Captcha API key (https://2captcha.com/setting), or the bearer token your server operator issued. Signing up is free and includes a monthly allowance of calls.",
"isRequired": true,
"isSecret": true,
"format": "string",
"placeholder": "your-2captcha-api-key"
}
}
}
]
}
]
}