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

DrissionPage MCP

PYPI · DRISSIONPAGE-MCP · SCANNED AUG 21

Local browser automation for MCP clients powered by DrissionPage.

Available components

54 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 Security50
  • Malware scan not yet available for this package.Unverified
  • No known CVEs affecting this package version or its production dependencies.Pass
  • Runs setuptools.build_meta at install time, a recognised native-build step with no shell scripting around it. View diagnostics → Pass
  • 2 of 45 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency35
Schema Quality & AI Usability89
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 4571 tokens (~65/item across 70 items; 69 tools + 1 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage91
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 69% of tool parameters carry a description.Partial
  • 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.

pypi · drissionpage-mcp

# add to Claude Code
claude mcp add jumodada-drissionpage-mcp -- uvx drissionpage-mcp
# add to Codex CLI
codex mcp add jumodada-drissionpage-mcp -- uvx drissionpage-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jumodada-drissionpage-mcp": {
      "type": "local",
      "command": [
        "uvx",
        "drissionpage-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add jumodada-drissionpage-mcp --command uvx --arg drissionpage-mcp
# ~/.hermes/config.yaml
mcp_servers:
  jumodada-drissionpage-mcp:
    command: "uvx"
    args: ["drissionpage-mcp"]
// mcp.json
{
  "mcpServers": {
    "jumodada-drissionpage-mcp": {
      "command": "uvx",
      "args": [
        "drissionpage-mcp"
      ]
    }
  }
}
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.

  • 21 Aug 26 54

    First indexed and scored.

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 21 Aug 2026 · Analysed pypi/drissionpage-mcp@0.8.5

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem pypi
Install scripts 1 script
Hook Tier Command
build_backend allowlisted setuptools.build_meta
Dependencies 45 packages
Packages resolved 45
Stale 2
Tree resolution Complete
MCP tools · 69 exposed · ~4,553 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
page_pointer_move ~115

Move the viewport pointer to exact CSS pixel coordinates without pressing a button, using either one direct move or a bounded natural trajectory.

NameTypeReqDescription
elementstringHuman-readable element or interaction description
profilestringMovement profile: direct emits one exact move; natural emits a deterministic 24-step eased cubic Bezier path with bounded 8-14ms intervals and an exact endpoint
xnumberyesViewport X coordinate in CSS pixels
ynumberyesViewport Y coordinate in CSS pixels

Structured output declared, but exposes no named fields.

No examples provided.

page_refresh ~13

Refresh the current page

Input schema present but exposes no named parameters.

Structured output declared, but exposes no named fields.

No examples provided.

page_resize ~40

Resize the browser window to specified dimensions

NameTypeReqDescription
heightintegeryesHeight of the browser window
widthintegeryesWidth of the browser window

Structured output declared, but exposes no named fields.

No examples provided.

page_screenshot ~31

Take an inline screenshot of the current page

NameTypeReqDescription
full_pagebooleanTake a full page screenshot

Structured output declared, but exposes no named fields.

No examples provided.

page_screenshot_save ~58

Save a screenshot to a local path under DP_MCP_SCREENSHOT_ROOT

NameTypeReqDescription
full_pagebooleanTake a full page screenshot
pathstringyesLocal file path under DP_MCP_SCREENSHOT_ROOT to save screenshot

Structured output declared, but exposes no named fields.

No examples provided.

page_scroll ~84

Scroll the current page by direction or to a position.

NameTypeReqDescription
directionstringScroll direction or target: down, up, left, right, top, bottom, half, position.
pixelsintegerPixel distance for directional scrolling.
xintegerX coordinate for direction=position.
yintegerY coordinate for direction=position.

Structured output declared, but exposes no named fields.

No examples provided.

page_snapshot ~82

Return a bounded page outline with text excerpt, headings, links, buttons, inputs, forms, and recommended selectors.

NameTypeReqDescription
include_htmlbooleanInclude bounded outerHTML excerpts for summarized elements
max_elementsintegerMaximum total headings/links/buttons/inputs/forms to return
max_text_charsintegerMaximum page text excerpt characters to return

Structured output declared, but exposes no named fields.

No examples provided.

shadow_find ~57

Find one element inside a shadow root exposed by the supported DrissionPage runtime.

NameTypeReqDescription
host_selectorstringyesSelector for the shadow host element.
selectorstringyesSelector inside the shadow root.
timeoutnumber

Structured output declared, but exposes no named fields.

No examples provided.

shadow_find_all ~66

Find repeated elements inside a shadow root exposed by the supported DrissionPage runtime.

NameTypeReqDescription
host_selectorstringyesSelector for the shadow host element.
include_htmlboolean
limitinteger
selectorstringyesSelector inside the shadow root.

Structured output declared, but exposes no named fields.

No examples provided.

storage_clear ~41

Clear one key or all items from localStorage/sessionStorage.

NameTypeReqDescription
areastring
keystringOptional key. Empty clears the area.

Structured output declared, but exposes no named fields.

No examples provided.

storage_get ~69

Read localStorage or sessionStorage by key or as a bounded map, with values redacted unless explicitly requested.

NameTypeReqDescription
areastring
include_valuesbooleanReturn storage values instead of redacting non-empty values.
keystringOptional key. Empty returns all keys.

Structured output declared, but exposes no named fields.

No examples provided.

storage_set ~52

Set one localStorage/sessionStorage item. The value is not echoed.

NameTypeReqDescription
areastring
keystringyes
valuestringyesString value to store. Not echoed in result.

Structured output declared, but exposes no named fields.

No examples provided.

tab_close ~47

Close a browser tab by id from tab_list without closing the whole browser.

NameTypeReqDescription
tab_idstringyesMCP tab id from tab_list, or the underlying DrissionPage native tab id.

Structured output declared, but exposes no named fields.

No examples provided.

tab_list ~21

List browser tabs tracked by the current DrissionPage MCP session.

Input schema present but exposes no named parameters.

Structured output declared, but exposes no named fields.

No examples provided.

tab_switch ~43

Switch the active browser tab by id from tab_list.

NameTypeReqDescription
tab_idstringyesMCP tab id from tab_list, or the underlying DrissionPage native tab id.

Structured output declared, but exposes no named fields.

No examples provided.

wait_for_element ~81

Wait for an element to appear on the page. Bare selectors are treated as CSS; use text:... for text matching.

NameTypeReqDescription
selectoryesCSS selector or XPath to wait for. Bare selectors are CSS; use text:... for text matching or explicit tag:/css:/xpath:/@attr locators.
timeoutnumberTimeout in seconds

Structured output declared, but exposes no named fields.

No examples provided.

wait_for_url ~46

Wait for the current URL to contain a substring

NameTypeReqDescription
timeoutnumberTimeout in seconds
url_patternstringyesSubstring or pattern expected in the current URL

Structured output declared, but exposes no named fields.

No examples provided.

wait_time ~28

Wait for a specific amount of time

NameTypeReqDescription
secondsnumberyesNumber of seconds to wait

Structured output declared, but exposes no named fields.

No examples provided.

wait_until ~139

Wait for observable page state: element present/visible/hidden/detached/clickable/stable, text contains/matches, or URL contains/matches.

NameTypeReqDescription
conditionstringyesCondition to wait for
intervalnumberPolling interval in seconds
namestringAttribute or property name for attribute/property conditions
selectorCSS/XPath/DrissionPage locator for element or text conditions
stable_msintegerElement stability window for the stable condition
timeoutnumberTimeout in seconds
valuestringExpected value or substring/regular expression, depending on condition

Structured output declared, but exposes no named fields.

No examples provided.