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.

FireKey MCP

NPM · FIREKEY-MCP · SCANNED SEP 20

Manage FireKey browser profiles and browser lifecycles through an authenticated localhost API.

Available components

+5 this week 68 Trust /100
Trust breakdown (7 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 → Why this is hard to score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 31 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency19
Schema Quality & AI Usability75
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1412 tokens (~94/item across 15 items; 15 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management37
  • Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Tool Safety75
  • No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
  • 0 of 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "profile_delete" implies "delete" and declares no destructiveHint at all, which the MCP spec reads as destructive by default. See how to fix → Fail
  • An AI judge read all 15 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

How do I install the FireKey MCP server?

FireKey MCP runs locally as an npm package, launched with npx -y firekey-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

npm · firekey-mcp

# add to Claude Code
claude mcp add partnerhbhl-firekey-mcp -- npx -y firekey-mcp
// .cursor/mcp.json
{
  "mcpServers": {
    "partnerhbhl-firekey-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "firekey-mcp"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "partnerhbhl-firekey-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "firekey-mcp"
      ]
    }
  }
}
# add to Codex CLI
codex mcp add partnerhbhl-firekey-mcp -- npx -y firekey-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "partnerhbhl-firekey-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "firekey-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add partnerhbhl-firekey-mcp --command npx --arg -y --arg firekey-mcp
# ~/.hermes/config.yaml
mcp_servers:
  partnerhbhl-firekey-mcp:
    command: "npx"
    args: ["-y", "firekey-mcp"]
// ~/.netclaw/config/netclaw.json
{
  "McpServers": {
    "partnerhbhl-firekey-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "firekey-mcp"
      ]
    }
  }
}
# add to Vellum
assistant mcp add partnerhbhl-firekey-mcp -t stdio -c npx -a -y firekey-mcp
// mcp.json
{
  "mcpServers": {
    "partnerhbhl-firekey-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "firekey-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.

  • 19 Sept 26 +1

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

  • 17 Sept 26 +4
    • Stability: unverified → 0.27 functional
  • 9 Sept 26 63

    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 20 Sept 2026 · Analysed npm/firekey-mcp@0.1.3

Provenance No attestation

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

Result No attestation
Ecosystem npm

Background: How many MCP packages publish verified provenance →

Dependencies 96 packages
Packages resolved 96
Stale 31
Tree resolution Complete

Background: SBOMs and build attestations, explained →

MCP tools · 15 exposed · ~1,412 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. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →

Tool Tokens
browser_active ~32

List currently running browser profiles with their WebSocket endpoints.

NameTypeReqDescription
profile_idstringFilter by specific profile ID

No output schema declared.

No examples provided.

browser_start ~185

Start a browser profile. Returns WebSocket endpoints for Puppeteer/Selenium automation.

NameTypeReqDescription
cdp_maskstringCDP masking: 0=off, 1=on (default)
delete_cachestringClear cache on close: 0=no (default), 1=yes
headlessstringHeadless mode: 0=visible (default), 1=headless
last_opened_tabsstringRestore last tabs: 0=no, 1=yes (default)
launch_argsarrayExtra Chrome launch arguments
profile_idstringProfile public ID (use this or profile_no)
profile_nostringProfile serial number (alternative to profile_id)
proxy_detectionstringShow proxy detection page: 0=skip, 1=show (default)

No output schema declared.

No examples provided.

browser_stop ~36

Stop a running browser profile.

NameTypeReqDescription
profile_idstringProfile public ID
profile_nostringProfile serial number

No output schema declared.

No examples provided.

group_create ~36

Create a new profile group.

NameTypeReqDescription
group_namestringyesName for the new group
remarkstringGroup description

No output schema declared.

No examples provided.

group_list ~63

List profile groups with optional name search.

NameTypeReqDescription
group_namestringSearch by group name
pagestringPage number (default: 1)
page_sizestringItems per page, max 2000 (default: 10)

No output schema declared.

No examples provided.

group_update ~46

Update an existing group.

NameTypeReqDescription
group_idstringyesGroup ID to update
group_namestringNew group name
remarkstringNew group description

No output schema declared.

No examples provided.

profile_cookies ~42

Get cookies from a browser profile (from running browser via CDP, or from local files).

NameTypeReqDescription
profile_idstringyesProfile ID to get cookies from

No output schema declared.

No examples provided.

profile_create ~494

Create a new browser profile with fingerprint and proxy settings.

NameTypeReqDescription
audio_context_modestringAudioContext (default: noise)
bookmarksstringBookmarks to import
canvas_modestringCanvas fingerprint (default: noise)
chrome_versionstringChrome major version (e.g. 143, 142, 141)
cookiesstringCookies to import (JSON string)
cpu_threadsnumberCPU threads: 2,4,6,8,12,16 (default: 8)
geolocation_modestringGeolocation (default: prompt)
group_idstringyesGroup ID to assign the profile to (required)
language_modestringLanguage mode (default: auto)
languagesstringLanguages (when language_mode=manual)
launch_argsstringExtra Chrome launch arguments
namestringProfile name
osstringOperating system (default: win). Aliases: windows→win, mac→macIntel
processorstringMac processor (only for macArm)
proxy_hoststringProxy host
proxy_methodstringProxy method: none=no proxy (default), your=custom proxy, saved=use saved proxy
proxy_passstringProxy password
proxy_portstringProxy port
proxy_saved_idstringSaved proxy ID (when proxy_method=saved)
proxy_typestringProxy type
proxy_userstringProxy username
ramnumberRAM in GB: 2,4,8,16,32 (default: 8)
screen_resolutionstringScreen resolution (e.g. 1920x1080)
start_urlstringURL to open on browser start
timezonestringTimezone (when timezone_mode=manual)
timezone_modestringTimezone mode (default: auto)
user_agentstringCustom User-Agent (auto-generated if empty)
webgl_image_modestringWebGL image (default: noise)
webgl_meta_modestringWebGL metadata (default: mask)
webrtc_modestringWebRTC mode (default: auto)

No output schema declared.

No examples provided.

profile_delete ~35

Delete browser profiles (soft delete to trash).

NameTypeReqDescription
profile_idarrayyesArray of profile IDs to delete (max 100)

No output schema declared.

No examples provided.

profile_delete_cache ~48

Delete cached data for browser profiles (cookies, history, localStorage, etc.).

NameTypeReqDescription
profile_idarrayyesArray of profile IDs
typearrayyesCache types to delete

No output schema declared.

No examples provided.

profile_list ~115

List browser profiles with pagination and filtering.

NameTypeReqDescription
group_idstringFilter by group ID
limitstringItems per page, max 100 (default: 50)
pagestringPage number (default: 1)
profile_idarrayFilter by specific profile IDs
profile_noarrayFilter by serial numbers
sort_orderstringSort order (default: desc)
sort_typestringSort field (default: profile_no)

No output schema declared.

No examples provided.

profile_move ~47

Move profiles to a different group.

NameTypeReqDescription
group_idstringyesTarget group ID ("0" for ungrouped)
profile_idarrayyesArray of profile IDs to move

No output schema declared.

No examples provided.

profile_update ~71

Update an existing browser profile.

NameTypeReqDescription
fingerprint_configobjectFingerprint configuration
namestringNew profile name
profile_idstringyesProfile ID to update (required)
remarkstringProfile notes/remark
user_proxy_configobjectProxy configuration

No output schema declared.

No examples provided.

proxy_create ~99

Create a new proxy configuration.

NameTypeReqDescription
hoststringyesProxy host
ipcheckerstringIP checker service
passwordstringProxy password
portstringyesProxy port (0-65536)
proxy_urlstringProxy refresh/change IP URL
remarkstringProxy name/description
typestringyesProxy type
userstringProxy username

No output schema declared.

No examples provided.

proxy_list ~63

List saved proxy configurations.

NameTypeReqDescription
limitstringItems per page, max 200 (default: 50)
pagestringPage number (default: 1)
proxy_idarrayFilter by specific proxy IDs (max 100)

No output schema declared.

No examples provided.

Common questions

What is the FireKey MCP server?

FireKey MCP is listed in the public MCP registry as io.github.partnerhbhl/firekey-mcp. Manage FireKey browser profiles and browser lifecycles through an authenticated localhost API. This page covers its npm package (firekey-mcp).

Is the FireKey MCP server safe to use?

FireKey MCP scores 68 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the FireKey MCP server expose?

FireKey MCP exposes 15 tools: browser_start, browser_stop, browser_active, profile_list, profile_create, and 10 more. Their descriptions and schemas cost roughly 1,412 tokens of context every time the server is loaded.

Is the FireKey MCP server still maintained?

FireKey MCP is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

What licence is the FireKey MCP server under?

FireKey MCP declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.