Web MCP Server

AI-powered web research MCP server for agents. Supports web search, browse page, extract article. By MEOK AI Labs.

Local serverstdioPython

What is the Web MCP server?

AI-powered web research MCP server for agents. Supports web search, browse page, extract article. By MEOK AI Labs. That is what the web mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Web search and browser automation toolkit: DuckDuckGo search, page extraction, screenshots, click/type automation, and article reader.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • web_search — Search the web using DuckDuckGo (no API key needed)
  • browse_page — Browse a webpage using headless Chromium (Playwright)
  • extract_article — Extract clean, readable article text from a URL
  • research_topic — Multi-step research: search the web, then extract content
  • get_weather — Get current weather for a location via wttr.in

Getting it running

The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Web's toolset — web_search, browse_page, extract_article and 2 more — is a fair guide to whether it matches your workflow.

This entry was verified against Web's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
web_searchSearch the web using DuckDuckGo (no API key needed)
browse_pageBrowse a webpage using headless Chromium (Playwright)
extract_articleExtract clean, readable article text from a URL
research_topicMulti-step research: search the web, then extract content
get_weatherGet current weather for a location via wttr.in

How to install the Web MCP server

## Claude Desktop Config

```json
{
  "mcpServers": {
    "web-research": {
      "command": "python",
      "args": ["server.py"],
      "cwd": "/path/to/web-research-mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Web to web search.
  • Use Web to browse page.
  • Use Web to extract article.

Frequently asked questions

It connects Web to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (web_search, browse_page, extract_article, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Web directly.