WET - Web Extended Toolkit
Related Servers
Alternatives to WET - Web Extended Toolkit
- AlicenseAqualityAmaintenanceMarkdown-first MCP server for Notion that provides 7 composite action-based tools consolidating 28+ REST API endpoints, enabling AI agents to efficiently manage pages, databases, blocks, and content with automatic pagination and bulk operations.11848 npm36Apache 2.0
- AlicenseAqualityAmaintenancePersistent AI memory with SQLite hybrid search (FTS5 + semantic), built-in Qwen3 embedding, and rclone sync across machines.1511Apache 2.0
- AlicenseAqualityFmaintenanceIMAP/SMTP email MCP server with App Passwords. Auto-discovers Gmail, Outlook, Yahoo, iCloud. 5 composite tools, multi-account.5883 npm34Apache 2.0
- AlicenseBqualityFmaintenance18 composite tools for structured Godot 4.x interaction: scenes, nodes, GDScript, shaders, animation, tilemap, physics, and more.17614 npm37Apache 2.0
Related Servers
- AlicenseAqualityNot gradedmaintenanceEnables hybrid web search and intelligent content extraction, combining semantic search with documentation-optimized reading that strips noise and returns clean, token-efficient context for AI agents.2MIT
- AlicenseAqualityBmaintenanceEnables local LLMs to search the web and fetch clean content from URLs without API keys, using SearxNG and Mozilla Readability.236MIT
- AlicenseAqualityBmaintenanceEnables web search, scraping, and live package version lookup for local LLMs, with no API keys required.52MIT
- AlicenseAqualityBmaintenanceWeb search, content extraction, and library docs for AI agents with 5-strategy scraping and runs without API keys.6MIT
- AlicenseAqualityDmaintenanceProvides web search and content extraction tools for AI assistants, with zero configuration and swappable backends.618 npm1MIT
- AlicenseNot gradedqualityCmaintenanceProvides web search with content extraction, YouTube subtitles, and optional LLM summarization for AI assistants.Apache 2.0
TDQS
Scored across 6 tools
Top-level tools are cleanly separated by intent (search finds URLs, extract reads content, media handles files, config manages the server, help documents everything), and descriptions explicitly cross-reference each other. Minor overlap remains: extract's `agent` action bundles search+extract, and config__open_relay overlaps the config tool's setup domain.
Names and all internal actions are consistently lowercase snake_case (docs_query, cache_clear, extract_structured, setup_sync). The one deviation is `config__open_relay`, whose double-underscore namespace prefix breaks the single-word pattern of every other top-level tool.
Six top-level tools sit squarely in the ideal 3-15 range and are well-scoped via an action-based dispatch pattern. However this count is somewhat deceptive, since extract (9 actions), search (7), and config (11) each pack a large hidden surface, making the set heavier than six names suggest.
The surface covers the full web-toolkit lifecycle: discovery (search/research/docs/similar), retrieval and parsing (extract/crawl/map/convert/structured), interaction (interact), change tracking (diff), media (list/download), and server management (config/help). Gaps are minor, e.g. no dedicated result-history or cache-inspection tool beyond config's status.