Skip to main content
Glama
ceeyang-ai
by ceeyang-ai

WebX MCP Server 🌐

Python License Stars MCP GitHub

A Model Context Protocol (MCP) server for web content extraction — fetch clean text, extract links, query by CSS selector, and search the web.

Built for AI agents. Works with Hermes Agent, Claude Code, Cursor, and any MCP-compatible client.

✨ Features

Tool

Description

fetch_clean_text

Fetch a URL and extract clean readable text (up to 50K chars)

extract_links

Extract all links with anchor text, optionally filtered by domain

extract_by_selector

Extract content by CSS selector (text, HTML, or attribute)

search_web

Search the web via DuckDuckGo HTML search

Related MCP server: web-mcp-server

🚀 Quick Start

# Install from GitHub
pip install git+https://github.com/ceeyang-ai/webx-mcp-server.git

# Run as MCP server
webx-mcp-server

🔌 Usage with AI Agents

Hermes Agent

Add to ~/.hermes/config.yaml:

mcp_servers:
  webx:
    command: "webx-mcp-server"

Restart → use mcp_webx_fetch_clean_text, mcp_webx_extract_links, etc.

Claude Code / Cursor / Any MCP Client

Add to your MCP config:

{
  "mcpServers": {
    "webx": {
      "command": "webx-mcp-server"
    }
  }
}

📖 Examples

Fetch clean text

result = fetch_clean_text(
    url="https://en.wikipedia.org/wiki/Web_scraping",
    max_chars=5000
)
result = extract_links(
    url="https://example.com",
    filter_domain=True,
    max_links=20
)

Search the web

result = search_web(
    query="latest AI research papers",
    max_results=10
)

🛠 Requirements

  • Python 3.10+

  • requests ≥ 2.28

  • beautifulsoup4 ≥ 4.11

  • lxml ≥ 4.9

  • mcp ≥ 1.0

👨‍💻 Development

git clone https://github.com/ceeyang-ai/webx-mcp-server.git
cd webx-mcp-server
pip install -e .
webx-mcp-server  # Start MCP server

📄 License

MIT — free for personal and commercial use.

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP server that exposes web_search and web_fetch tools, allowing LLM applications to search the web via DuckDuckGo and fetch page content as cleaned markdown.
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for web search and content extraction using DuckDuckGo or SearXNG, with Playwright-based fetching and LLM-powered data extraction.
    140
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    An MCP server that fetches web pages and extracts clean, AI-usable context from them, enabling tools for link discovery, content search, and integrated fetch-and-search operations.
    5
    7
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Free remote MCP server for fetching public web pages through a rotating proxy pool.

  • MCP server for accessing curated awesome list documentation

  • MCP server for Google search results via SERP API

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ceeyang-ai/webx-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server