MCP Server
Active
MIT
io.github.ChristopherDavenport/unblink MCP Server
io.github.ChristopherDavenport/unblink
What is the io.github.ChristopherDavenport/unblink MCP server?
Pure-Go browser for AI: fetch pages, render JS without Chromium, return clean Markdown over MCP.
How to install io.github.ChristopherDavenport/unblink
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"unblink": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/christopherdavenport/unblink:0.24.0",
"--disable-js"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"unblink": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/christopherdavenport/unblink:0.24.0",
"--disable-js"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"unblink": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/christopherdavenport/unblink:0.24.0",
"--disable-js"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"unblink": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/christopherdavenport/unblink:0.24.0",
"--disable-js"
]
}
}
}Claude Code
claude mcp add unblink -- docker run -i --rm ghcr.io/christopherdavenport/unblink:0.24.0 --disable-jsRelated MCP servers
github-twin
Active
Personal RAG over your GitHub history (commits, code, reviews), served to Claude Code over MCP.
0
View repository →Python
MIT