Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.n24q02m/wet-mcp

OCI · DOCKER.IO/N24Q02M/WET-MCP:LATEST · 2 COMPONENTS · SCANNED AUG 3

MCP server for web search, content extraction, academic research, and library docs.

+2 this week 27 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • CVE data not yet available for this package.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency-health data not yet available.Unverified
Provenance & Transparency6
Schema Quality & AI Usability50
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 2182 tokens (~363/item across 6 items; 6 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage71
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 0% of tool parameters carry a description.Fail
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · docker.io/n24q02m/wet-mcp:latest

# add to Claude Code
claude mcp add n24q02m-wet-mcp -- docker run --rm -i docker.io/n24q02m/wet-mcp:latest
# add to Codex CLI
codex mcp add n24q02m-wet-mcp -- docker run --rm -i docker.io/n24q02m/wet-mcp:latest
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "n24q02m-wet-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "docker.io/n24q02m/wet-mcp:latest"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  n24q02m-wet-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "docker.io/n24q02m/wet-mcp:latest"]
// mcp.json
{
  "mcpServers": {
    "n24q02m-wet-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/n24q02m/wet-mcp:latest"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +3
    • Stability: unverified → 0.20 functional
  • 31 Jul 26 −2
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 +24
    • Tool coverage: unverified → 100 functional
    • First check of Schema quality: good functional
    • First check of Schema quality: fail functional
    • First check of Schema quality: fail functional
    • First check of Tool coverage: 0 functional
    • First check of Tool coverage: 100 functional
  • 26 Jul 26 1

    First indexed and scored.

    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed oci/docker.io/n24q02m/wet-mcp:latest

Provenance none

Ecosystem: oci · Outcome: none

Reason: no_attestation

MCP tools — 6 exposed · ~2,092 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
config ~89

Server config and management. Actions: status|set|cache_clear|docs_reindex|warmup|setup_sync|setup_status|setup_start|setup_skip|setup_reset|setup_complete. Use help tool with tool_name='config' for full docs.

NameTypeReqDescription
actionstringyes
forceboolean
key
remote_type
value

Structured output declared, but exposes no named fields.

No examples provided.

config__open_relay ~45

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.

NameTypeReqDescription
ctxyes

Structured output declared, but exposes no named fields.

No examples provided.

extract ~798

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 `search` tool instead. Actions: - extract: Get clean content from URLs. Example: extract(action="extract", urls=["https://example.com/article"]) - batch: Batch extract with per-domain rate limiting (max 50 URLs). Example: extract(action="batch", urls=["https://a.com/1", "https://b.com/2"]) - crawl: Deep crawl following links from root URLs. Example: extract(action="crawl", urls=["https://docs.example.com"], depth=2) - map: Discover site URL structure without extracting content. Example: extract(action="map", urls=["https://example.com"]) - convert: Convert local files (PDF, DOCX, PPTX, XLSX) to Markdown. Example: extract(action="convert", paths=["/home/user/report.pdf"]) - extract_structured: Extract structured data using JSON Schema + LLM. Example: extract(action="extract_structured", urls=["https://example.com/pricing"], schema={"type": "object", "properties": {"price": {"type": "string"}}}) - agent: Multi-step research orchestration -- search the web, extract top results, synthesize a cited Markdown answer. Example: extract(action="agent", query="latest pydantic 2 changes", max_urls=5) - interact: Drive a page with click/fill/submit via patchright. Example: extract(action="interact", url="https://example.com/login", actions=[{"type": "fill", "selector": "#email", "value": "[email protected]"}, {"type": "submit", "selector": "form"}]) - diff: Track content changes across fetches of the same URL(s). Example: extract(action="diff", urls=["https://example.com/pricing"]) Key parameters: - urls (required for extract/batch/crawl/map/extract_structured/diff): List of URLs - paths (required for convert): List of local file paths - query (required for agent): Research question to answer - url (required for interact): Page URL to drive - actions (required for interact): List of {type, selector?, description?, value?} ops - max_urls…

NameTypeReqDescription
actionstringyes
actions
depthinteger
formatstring
max_pagesinteger
max_urlsinteger
paths
prompt
query
refetchboolean
schema
screenshotboolean
session
stealthboolean
synthesis_model
token_budgetinteger
url
urls

Structured output declared, but exposes no named fields.

No examples provided.

help ~131

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: - Need to FIND information? Use `search` (returns result listings with URLs) - Need to READ a page? Use `extract` (returns full page content from a URL) - Need media files? Use `media` (discover, download images/videos/audio) - Need server settings? Use `config` (status, cache, settings, warmup, sync setup)

NameTypeReqDescription
tool_namestring
NameTypeReqDescription
resultstringyes

No examples provided.

media ~309

Discover and download media files (images, videos, audio) from web pages. Actions: - list: Scan a page and return media URLs with metadata. Example: media(action="list", url="https://example.com/gallery", media_type="images") - download: Download media files to local storage. Example: media(action="download", media_urls=["https://example.com/photo.jpg"]) Key parameters: - url (required for list): Page URL to scan - media_urls (required for download): List of media URLs to download - media_type: Filter for list -- "images", "videos", "audio", "files", "all" (default: "all") - output_dir: Download directory (default: ~/.wet-mcp/downloads) - prompt: Reserved -- accepted for backward compatibility, ignored 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 `help` tool with tool_name="media" for full documentation.

NameTypeReqDescription
actionstringyes
max_itemsinteger
media_typestring
media_urls
output_dir
promptstring
url

Structured output declared, but exposes no named fields.

No examples provided.

search ~720

Find information across web, academic sources, X/Twitter, or library docs. Returns search result listings (titles, URLs, snippets) -- NOT full page content. To read full content from a URL, use the `extract` tool instead. Actions: - search: Web search via SearXNG. Example: search(action="search", query="python async patterns") - research: Academic/scientific search (Google Scholar, arXiv, PubMed). Example: search(action="research", query="transformer attention mechanism") - x: X/Twitter search via xAI. Returns a SYNTHESIZED answer with citations (NOT a link list for extract() -- X blocks direct extraction). Bills ~$0.032/query (grok-4.3). Requires XAI_API_KEY. Example: search(action="x", query="latest reactions to the GPT-5 launch", handles=["OpenAI"], time_range="week") - docs: Search library documentation with auto-indexing. Example: search(action="docs", query="how to create routes", library="fastapi") - docs_resolve: Free-form library name to ranked library_id list. Example: search(action="docs_resolve", query="react") - docs_query: Version-aware library docs query honoring project lock + token cap. Example: search(action="docs_query", library="react", version="latest", topic="useState", query="how to set initial state") - docs_lock_project: Detect project manifests (pyproject/package.json/go.mod/Cargo.toml) and lock the library set for Cabinets isolation. Example: search(action="docs_lock_project", project_path="/repo/my-app") - similar: Find pages similar to a URL (pass URL as query). Example: search(action="similar", query="https://example.com/article") Key parameters: - query (required for all actions): Search terms or URL (for similar) - library (required for docs): Library name, e.g. "react", "fastapi" - language: Programming language for disambiguation in docs, e.g. "python", "java" - expand: Enable LLM query expansion for broader coverage (default: false) - enrich: Fetch actual page content for richer snippets (default: false, adds latency) - max_resu…

NameTypeReqDescription
actionstringyes
categoriesstring
enrichboolean
exclude_domains
exclude_handles
expandboolean
from_date
handles
include_domains
language
library
limitinteger
max_resultsinteger
project_path
query
time_range
to_date
topic
version
videoboolean

Structured output declared, but exposes no named fields.

No examples provided.