actorly
← All MCP servers

NetIntel - Unified IP & Domain Intelligence

NetIntel - Unified IP & Domain Intelligence

    Server URL

    https://mcp.apify.com/?tools=anshumanatrey/netintel

    Registry name io.github.AnshumanAtrey/netintel. Streamable HTTP. Authenticate by signing in with Apify, or with an Authorization: Bearer header carrying your Apify API token.

    Connect

    Claude (web or desktop)

    Settings, Connectors, Add custom connector. Paste the server URL above and sign in with Apify.

    Claude Code

    claude mcp add --transport http netintel "https://mcp.apify.com/?tools=anshumanatrey/netintel" --header "Authorization: Bearer YOUR_APIFY_TOKEN"

    Cursor

    Add to ~/.cursor/mcp.json:

    {
      "mcpServers": {
        "netintel": {
          "url": "https://mcp.apify.com/?tools=anshumanatrey/netintel",
          "headers": {
            "Authorization": "Bearer YOUR_APIFY_TOKEN"
          }
        }
      }
    }

    VS Code

    Add to .vscode/mcp.json (VS Code asks for the token once):

    {
      "servers": {
        "netintel": {
          "type": "http",
          "url": "https://mcp.apify.com/?tools=anshumanatrey/netintel",
          "headers": {
            "Authorization": "Bearer ${input:apify-token}"
          }
        }
      },
      "inputs": [
        {
          "type": "promptString",
          "id": "apify-token",
          "description": "Apify API token",
          "password": true
        }
      ]
    }