WET - Web Extended Toolkit MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LLM_MODELS | No | Comma-separated list of LLM models for extract agent. Empty disables LLM features. | |
| PUBLIC_URL | No | Public URL for HTTP mode. | |
| EXA_API_KEY | No | API key for Exa search. | |
| SEARXNG_URL | No | URL of the SearXNG instance. | http://localhost:8080 |
| SYNC_FOLDER | No | Folder name for docs sync. | wet-mcp |
| XAI_API_KEY | No | API key for xAI models. | |
| SYNC_ENABLED | No | Enable cross-machine docs sync via Google Drive. | true |
| BRAVE_API_KEY | No | API key for Brave Search. | |
| MCP_TRANSPORT | No | Transport mode: 'stdio' or 'http'. | stdio |
| RERANK_MODELS | No | Comma-separated list of reranker models. Empty uses local ONNX. | |
| SYNC_INTERVAL | No | Sync interval in seconds. | 300 |
| COHERE_API_KEY | No | API key for Cohere models. | |
| GEMINI_API_KEY | No | API key for Google Gemini models. | |
| OPENAI_API_KEY | No | API key for OpenAI models. | |
| TAVILY_API_KEY | No | API key for Tavily search. | |
| JINA_AI_API_KEY | No | API key for Jina AI models. | |
| SEARCH_BACKENDS | No | Comma-separated list of search backends. Default is 'searxng'. Can include 'tavily', 'brave', 'exa'. | searxng |
| EMBEDDING_MODELS | No | Comma-separated list of embedding models (provider/model). Empty uses local ONNX. | |
| ANTHROPIC_API_KEY | No | API key for Anthropic models. | |
| CREDENTIAL_SECRET | No | Secret for per-user vault key in multi-user HTTP mode. | |
| MCP_RELAY_PASSWORD | No | Password to gate the HTTP setup form. | |
| CONVERT_ALLOWED_DIRS | No | Comma-separated list of allowed directories for local file conversion. | |
| MCP_DCR_SERVER_SECRET | No | Server secret for Dynamic Client Registration in HTTP mode. | |
| GOOGLE_DRIVE_CLIENT_ID | No | Google Drive OAuth client ID for docs sync. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| config__open_relayA | Open the relay configuration form for wet-mcp in the user's browser. Returns the relay URL, whether the browser launched, and the current status. |
| searchA | Find information across web, academic sources, or library docs. Returns search result listings (titles, URLs, snippets) -- NOT full page content. To read full content from a URL, use the Actions:
Key parameters:
Use |
| extractA | Read and return full page content from URLs or local files. Use this when you have a specific URL and need its content. For finding URLs first, use the Actions:
Key parameters:
Use |
| mediaA | Discover and download media files (images, videos, audio) from web pages. Actions:
Key parameters:
Typical workflow: list (discover) -> download (save locally). For LLM analysis (vision/audio/video), hand the downloaded path to imagine-mcp's understand action. The legacy media(action="analyze") was REMOVED in wet v2.0.0 (deprecated since v1.x.y); calling it now returns the standard unknown-action error. Use |
| helpA | Get detailed documentation for any tool. Call this when you need full parameter reference or usage examples. Valid tool_name values: search, extract, media, config. Quick guide -- which tool to use:
|
| configC | Server config and management. Actions: status|set|cache_clear|docs_reindex|warmup|setup_sync|setup_status|setup_skip|setup_reset|setup_complete. Use help tool with tool_name='config' for full docs. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Most tools have distinct purposes (config, extract, search, media, help). However, config__open_relay is a specific action closely related to config, which could cause some ambiguity. Overall, descriptions help differentiate them.
Tool names use lowercase with underscores, but patterns vary: single words (config, extract, help, media, search) vs. double underscore (config__open_relay). No consistent verb_noun pattern.
6 tools is well-scoped for a web extended toolkit. Each tool covers a core area (config, extraction, search, media, help), no redundancy or obvious missing essentials.
Covers key web tasks: search, content extraction (including crawl, interact, convert), media handling, and server config. Minor gaps like more advanced web automation or URL management, but sufficient for typical use cases.