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.markmircea/Selenix-MCP-Server

NPM · @SELENIX/MCP-SERVER · SCANNED AUG 3

MCP server that bridges local apps with Selenix for browser automation.

Available components

+18 this week 64 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 Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 874 tokens (~48/item across 18 items; 18 tools + 0 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 Coverage98
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 94% of tool parameters carry a description.Partial
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.

npm · @selenix/mcp-server

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

  • 2 Aug 26 +59
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Schema quality: unverified → good functional
    • MCP protocol: unverified → pass functional
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • Licence: Apache-2.0 functional
  • 1 Aug 26 −1
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −40
    • Malware scan: pass → unverified security
    • Tool coverage: 100 → unverified functional
  • 30 Jul 26 +22
    • Tool coverage: unverified → 100 functional
  • 28 Jul 26 −22
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    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 3 Aug 2026 · Analysed npm/@selenix/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 18 exposed · ~874 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
add_commands ~87

Add one or more commands to a test at a specific index. Commands use camelCase names (e.g., "click", "type", "open", "executeScript").

NameTypeReqDescription
commandsarrayyesArray of commands to add
indexnumberyesThe 0-based index at which to insert commands
test_idstringyesThe test ID to add commands to

No output schema declared.

No examples provided.

clear_and_replace_commands ~54

Replace ALL commands in a test with a new set. This removes all existing commands first.

NameTypeReqDescription
commandsarrayyesThe new set of commands for the test
test_idstringyesThe test ID

No output schema declared.

No examples provided.

fix_commands ~59

Apply targeted fixes to commands in a test: update, remove, or insert at specific indexes. Indexes refer to the current command list BEFORE any fixes are applied.

NameTypeReqDescription
fixesarrayyes
test_idstringyesThe test ID

No output schema declared.

No examples provided.

get_active_suite ~21

Get information about the currently active test suite and its tests.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_command_info ~50

Get detailed documentation for a specific Selenix command, including target and value parameter descriptions.

NameTypeReqDescription
command_namestringyesThe camelCase command name (e.g., "click", "executeScript")

No output schema declared.

No examples provided.

get_command_list ~28

List all available Selenix commands (click, type, open, etc.) with descriptions.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_current_test ~58

Get the commands of the current test (or a specific test by ID). Returns test name, ID, and all commands with their targets and values.

NameTypeReqDescription
test_idstringOptional test ID. If omitted, returns the active test.

No output schema declared.

No examples provided.

get_logs ~81

Get recent logs from Selenix (all types). Returns 20 logs per page, most recent first. Use page parameter to paginate (0 = most recent, 1 = next 20, etc.).

NameTypeReqDescription
pagenumberPage number (0 = most recent 20 logs, 1 = next 20, etc.). Defaults to 0.

No output schema declared.

No examples provided.

get_page_html ~59

Get the HTML of the web page in the active playback window, with interactive elements annotated. Scripts and styles are removed.

NameTypeReqDescription
tab_idstringOptional tab/window ID. Use "all" for all tabs. Omit for active tab.

No output schema declared.

No examples provided.

get_project_info ~30

Get metadata about the current Selenix project: name, base URL, test count, suite count.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_screenshot ~32

Capture a screenshot of the active browser window in Selenix playback. Returns a base64-encoded JPEG image.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_search_html ~65

Search page HTML by regex pattern and return surrounding HTML context for matches.

NameTypeReqDescription
indexnumberOptional 0-based index of which match to return
regexstringyesRegular expression pattern to search for
tab_idstringOptional tab/window ID

No output schema declared.

No examples provided.

get_selected_command_info ~51

Get comprehensive context about a command target element: DOM hierarchy, accessibility info, surrounding HTML, interactive properties.

NameTypeReqDescription
command_idstringOptional command ID. If omitted, uses the currently selected command.

No output schema declared.

No examples provided.

get_step_results ~43

Get pass/fail/error results for each command in the last test run.

NameTypeReqDescription
test_idstringOptional test ID. If omitted, uses the active test.

No output schema declared.

No examples provided.

get_test_by_name ~37

Get a specific test by its name, including all commands.

NameTypeReqDescription
test_namestringyesThe name of the test to retrieve

No output schema declared.

No examples provided.

get_test_list ~29

List all tests in the current Selenix project with their IDs, names, and command counts.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_workspace_context ~33

Get a summary of the current Selenix workspace: project name, active test, test count, selected command count.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

run_test ~57

Run a test and wait for it to complete. Returns the pass/fail result for each command. This operation may take up to 2 minutes.

NameTypeReqDescription
test_idstringOptional test ID. If omitted, runs the active test.

No output schema declared.

No examples provided.