Search DevTools

Jump to any tool or page

WebUplink

Give any MCP client the ability to browse and interact with the web via WebUplink.

webuplink-dev0 stars0 forksBrowser & Web
View source

Install

Terminal

$npx -y @webuplink/mcp

mcp_config.json

{
  "mcpServers": {
    "ai-webuplink-mcp": {
      "env": {
        "WEBUPLINK_API_KEY": "${WEBUPLINK_API_KEY}"
      },
      "args": [
        "-y",
        "@webuplink/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

MCP server for WebUplink

Give any MCP client the ability to browse and interact with the web via WebUplink.

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "webuplink": {
      "command": "npx",
      "args": ["-y", "@webuplink/mcp"],
      "env": {
        "WEBUPLINK_API_KEY": "wup_your_api_key"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "webuplink": {
      "command": "npx",
      "args": ["-y", "@webuplink/mcp"],
      "env": {
        "WEBUPLINK_API_KEY": "wup_your_api_key"
      }
    }
  }
}

That's it — your AI can now browse and interact with any website.

Tools

browse

Browse a web page or execute tools on a page.

ParameterTypeDescription
urlstringURL to open a new browser session
session_idstringExisting session ID to continue browsing
toolstringTool name to execute on the page
paramsobjectParameters for the tool
include_page_contentbooleanInclude detailed page content

close_session

Close a browser session to free resources.

ParameterTypeDescription
session_idstringSession ID to close

Environment Variables

VariableRequiredDefaultDescription
WEBUPLINK_API_KEYYour WebUplink API key
WEBUPLINK_BASE_URLhttps://api.webuplink.aiAPI base URL

HTTP Transport

For remote deployments:

WEBUPLINK_API_KEY=wup_... npx @webuplink/mcp --http

Listens on port 3001 (configurable via PORT), accepts MCP requests at /mcp.

License

MIT

Sourced from the repository README.

More in Browser & Web