Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcpseleniumserver": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Un servidor MCP (Model Context Protocol) en C# que expone herramientas de automatización web usando Selenium WebDriver. Permite a Claude Desktop y otros clientes MCP controlar navegadores web de forma programática.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
Browser automation with Puppeteer for web scraping and testing
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for MCPSeleniumServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Un servidor MCP (Model Context Protocol) en C# que expone herramientas de automatización web usando Selenium WebDriver. Permite a Claude Desktop y otros clientes MCP controlar navegadores web de forma programática.
git clone https://github.com/TU_USUARIO/mcp-selenium-server.git
cd mcp-selenium-server
# Ejecutar script de configuración
.\install_new_computer.bat
dotnet build
dotnet publish -c Release -o publish --self-contained false
Edita %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"selenium": {
"command": "RUTA_COMPLETA\\publish\\SeleniumMcpServer.exe"
}
}
}
start_browserInicia una nueva sesión de navegador
{
"browserType": "chrome",
"headless": false
}
navigateNavega a una URL específica
{
"url": "https://example.com"
}
close_sessionCierra la sesión de navegador actual
{
"sessionId": "opcional"
}
mcp-selenium-server/
├── SeleniumMcpServer/
│ ├── Program.cs # Punto de entrada
│ ├── SeleniumService.cs # Servicio de gestión de navegadores
│ ├── SeleniumTools.cs # Herramientas MCP
│ └── SeleniumMcpServer.csproj
├── publish/ # Ejecutables publicados
├── install_new_computer.bat # Script de instalación automática
├── setup_portable.bat # Script de configuración portable
├── fix_and_build.bat # Script de reparación
├── SOLUCION_PROBLEMAS.md # Guía de solución de problemas
└── README.md
install_new_computer.bat (Windows)Ver INSTALACION_NUEVA_COMPUTADORA.md para instrucciones detalladas.
# Ejecutar script de reparación
.\fix_and_build.bat
# Definir variable de entorno
set CHROME_BIN=C:\Program Files\Google\Chrome\Application\chrome.exe
# Limpiar y recompilar
dotnet clean
dotnet build
Ver claude_desktop_config_examples.json para diferentes configuraciones.
Las contribuciones son bienvenidas. Por favor:
git checkout -b feature/nueva-funcionalidad)git commit -am 'Agregar nueva funcionalidad')git push origin feature/nueva-funcionalidad)Este proyecto está licenciado bajo la Licencia MIT - ver el archivo LICENSE para más detalles.
Desarrollado con ❤️ para la comunidad MCP.
¿Necesitas ayuda? Consulta SOLUCION_PROBLEMAS.md para guías detalladas.