Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-fetchfetch https://api.github.com/repos/modelcontextprotocol/servers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Offline Deployment
If you need to run this server in an offline environment (where playwright install cannot access the internet), follow these steps:
On an online machine: Run the provided helper script to download the necessary browser binaries (Chromium) to a local directory (
libs/browsers).This script automatically detects the required Playwright revision and downloads binaries for both Windows (win64) and Linux.
uv run scripts/download_browsers.pyThis will create a
libs/browsersdirectory containing the browser binaries (e.g.,chromium-<revision>).Transfer files: Copy the entire project (or the installed package) AND the
libs/browsersdirectory to your offline machine.Configure environment: On the offline machine, set the
PLAYWRIGHT_BROWSERS_PATHenvironment variable to point to thelibs/browsersdirectory before running the server.Windows (PowerShell):
$env:PLAYWRIGHT_BROWSERS_PATH = "C:\path\to\mcp-fetch\libs\browsers" mcp-fetchLinux/macOS:
export PLAYWRIGHT_BROWSERS_PATH=/path/to/mcp-fetch/libs/browsers mcp-fetchMCP Client Config (e.g., Claude/Trae): Add the environment variable to your MCP settings.
{ "mcpServers": { "fetch": { "command": "mcp-fetch", "args": [], "env": { "PLAYWRIGHT_BROWSERS_PATH": "E:\\Private\\Mcp\\fetch\\libs\\browsers", "MCP_FETCH_AUTO_INSTALL_PLAYWRIGHT": "0" } } } }Note: Setting
MCP_FETCH_AUTO_INSTALL_PLAYWRIGHT=0prevents the server from attempting to download browsers if they are missing, which fails immediately in offline mode.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.