MCP Integration

Search for

This is a public HTTP streaming implementation of the Model Context Protocol (MCP) for https://rtsak.com

Endpoint:https://mcp.rtsak.com/mcp

You can try it out directly on ChatGPT as a GPT

🤖 Setup Instructions

Claude Desktop

Add to your Claude Desktop config file:

{
  "mcpServers": {
    "rtsak": {
      "url": "https://mcp.rtsak.com/mcp"
    }
  }
}
📍 Config file location
  • Windows:%APPDATA%\Claude\config.json
  • macOS:~/Library/Application Support/Claude/config.json
  • Linux:~/.config/Claude/config.json

Claude Code (Terminal)

Run this command:

claude mcp add --transport http rtsak https://mcp.rtsak.com/mcp

Stdio clients (Cursor, Zed, Windsurf, legacy Claude Desktop)

If your MCP client only speaks stdio and can't connect to a remote HTTP endpoint directly, use the @robtex/mcp-stdio proxy to bridge stdio ↔https://mcp.rtsak.com/mcp.

Install options:

# npm (no local install needed)
npx -y @robtex/mcp-stdio

# Docker
docker run -i --rm robtex/mcp

# Homebrew (once the tap is live — pending)
brew install robtex/tap/mcp

Claude Desktop / Cursor / Zed / Windsurf config snippet:

{
  "mcpServers": {
    "rtsak": {
      "command": "npx",
      "args": ["-y", "@robtex/mcp-stdio"]
    }
  }
}
📍 Config file locations for stdio clients
  • Cursor:~/.cursor/mcp.json
  • Zed:~/.config/zed/settings.json(under"context_servers")
  • Windsurf:~/.codeium/windsurf/mcp_config.json

Override the upstream: setROBTEX_MCP_URL=https://mcp.hashxp.org/mcp(or any sister site, orhttp://127.0.0.1:3443/mcpfor local WSH) to point the proxy at a different upstream.

Every outbound request from this proxy setsUser-Agent: robtex-mcp-stdio/<version> (+https://github.com/robtex/skills)so server logs can be grepped by that prefix.

ChatGPT (Custom GPT)

Quick setup:

  1. Go to GPT Builder
  2. Click CreateConfigureActions
  3. Click "Import from URL"
  4. Enter:https://mcp.rtsak.com/mcp/openapi.yaml
  5. Click Import and save

Or manually add the endpointhttps://mcp.rtsak.com/mcpas an action.

Cursor / Codex / GitHub Copilot (Skills CLI)

Install curated skills with one command:

npx skills add robtex/skills

Claude Code (Plugin)

Install the plugin with 6 curated skills:

/plugin marketplace add https://github.com/robtex/skills
/plugin install robtex@robtex-plugins
Note: After adding the configuration, restart your Claude application for changes to take effect.

🔧 Available Tools (1)

  • lookup_as_whois: Lookup WHOIS information for an Autonomous System (AS) number from the RADB routing database. Returns routing policy, network information, and administrative contacts.

🔗 More Information