What is the Rdap MCP server?
RDAP — Registration Data Access Protocol (domains, IPs, ASNs) via IANA bootstrap
How to install Rdap
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"rdap": {
"url": "https://gateway.pipeworx.io/rdap/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"rdap": {
"serverUrl": "https://gateway.pipeworx.io/rdap/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"rdap": {
"type": "http",
"url": "https://gateway.pipeworx.io/rdap/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"rdap": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/rdap/mcp"
]
}
}
}Claude Code
claude mcp add --transport http rdap https://gateway.pipeworx.io/rdap/mcp