capsolver mcp for VS Code
io.github.capsolver-ai/capsolver-mcp
MCP Server for CapSolver - captcha-solving capabilities for AI agents
client:VS Code
transport:stdio
runtime:pypi
Install capsolver mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "capsolver-api-key",
"description": "CAPSOLVER_API_KEY",
"password": true
}
],
"servers": {
"capsolver-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"capsolver-mcp"
],
"env": {
"CAPSOLVER_API_KEY": "${input:capsolver-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs