Skip to main content
Glama
extensiondev

@extension.dev/mcp

by extensiondev

extension_start

Builds and launches the extension in a browser to verify the production build, without live-reload or debugging tools. Pass build:false to serve an existing dist folder.

Instructions

Run the PRODUCTION build in a browser: build the project, serve it, and launch. There is no hot module replacement and no control channel, so your edits are not picked up and extension_eval, extension_storage, extension_reload, extension_open and extension_dom_snapshot cannot attach to this session. Use extension_dev while writing code, and this to check what actually ships. Pass build:false to launch an existing dist/ without rebuilding.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNoBind host, default 127.0.0.1. Use 0.0.0.0 in Docker or devcontainers.
portNoServer port (0 for auto-assign)
buildNoBuild before serving. false serves the existing dist/<browser> as-is and fails when there is none.
browserNochrome
profileNoProfile path, or "false" to reuse the real user profile. Omit for a throwaway one.
polyfillNoApply cross-browser polyfill (build only)
noBrowserNoServe without launching a browser
extensionsNoExtra extension paths or store URLs to load alongside the project
publicHostNoHost the browser dials for HMR and reload when it differs from the bind host
geckoBinaryNoCustom Gecko/Firefox binary (overrides browser)
projectPathYesExtension project root
startingUrlNoURL the browser opens on launch
chromiumBinaryNoCustom Chromium-based binary (overrides browser)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv10.1.0

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Details that there is no hot module replacement, no control channel, and that extension_eval etc. cannot attach. Discloses limitations without requiring annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loads the key action, then covers limitations and usage advice efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, but description covers purpose, usage, and limitations. Could mention return type, but not critical for a launch tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 92%, so baseline 3. Description adds context for build parameter but does not add much beyond schema for others.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it runs the production build in a browser, building, serving, and launching. It distinguishes from extension_dev by specifying this is for production checks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to use this tool vs extension_dev: 'Use extension_dev while writing code, and this to check what actually ships'. Also gives guidance on build:false for serving existing dist.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.