WebUplink
Guides

MCP Server

Use WebUplink as a Model Context Protocol tool server for AI agents.

MCP Server

WebUplink ships an MCP (Model Context Protocol) server that exposes browsing capabilities as standard MCP tools. This lets any MCP-compatible AI agent (Claude, Cursor, etc.) browse the web through WebUplink.

Installation

The MCP server is available as the @webuplink/mcp package:

npm install @webuplink/mcp

Configuration

Add WebUplink to your MCP configuration:

{
  "mcpServers": {
    "webuplink": {
      "command": "npx",
      "args": ["@webuplink/mcp"],
      "env": {
        "WEBUPLINK_API_KEY": "wup_your_key_here",
        "WEBUPLINK_BASE_URL": "https://api.webuplink.ai"
      }
    }
  }
}

Available Tools

The MCP server exposes these tools:

ToolDescription
browseOpen a URL and return the PageMap
execute_toolExecute a tool on the current page
close_sessionClean up a browser session

Each tool maps directly to the underlying WebUplink SDK methods, with MCP-compatible input/output schemas.

On this page