spector-agent-mcp (sakitam-fdd/spector-mcp) is an MCP server listed on the M8ven Trust Index. It scores 59 out of 100, grade D. It declares 40 tools. No publisher has claimed this listing.
AI-first WebGL 1/2 debugging MCP server that attaches to Chrome via CDP, enables frame capture and diagnostic analysis, and collaborates with Chrome DevTools MCP for agent-driven debugging workflows.
Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.
How we verified
Verified is a snapshot. Live keeps it current, and builds your track record.
⚡ Connect GitHub → continuous verification on every pushwhy connect →Who stands behind it
sakitam-fdd
Source: Glama
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →
Install from
The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.
These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.
webgl_list_canvasesEnumerate WebGL/WebGL2 canvases on the bound page.
webgl_select_canvasSelect the WebGL canvas to capture.
webgl_capture_frameCapture the next WebGL frame. Auto-connects, binds readiness checks, installs runtime if needed. Returns summary + resource URIs (not full JSON).
webgl_capture_sequenceCapture a limited sequence of frames (max 5).
webgl_list_capturesList stored captures, optionally filtered by session.
webgl_get_capture_overviewGet a stored capture summary and resource URIs.
webgl_run_diagnosticsRun deterministic diagnostic rules on a capture (no LLM). Returns findings summary.
webgl_get_finding_detailsGet full evidence and hypotheses for a diagnostic finding.
webgl_diff_capturesSemantically compare two captures (findings, programs, draw counts).
webgl_generate_reportGenerate Markdown and/or JSON diagnostic report for a capture.
webgl_list_draw_callsPaginated list of draw/clear commands for a capture.
webgl_get_command_detailsGet details for a single command with optional field includes.
webgl_list_programsList shader programs in a capture.
webgl_get_program_detailsGet shader sources and link/compile status for a program.
webgl_list_texturesList textures and upload metadata from a capture.
webgl_list_framebuffersList framebuffers and attachments from a capture.
webgl_get_state_diffGet initial vs final GL state differences for a capture.
webgl_search_captureSearch commands by API name, marker, object name, or stack frame text.
webgl_page_evaluateEvaluate a JS expression in the bound page. Disabled by default; requires --allow-page-evaluate.
webgl_set_markerSet a Spector.js marker string so subsequent captured commands are tagged (stage annotation at any point).
webgl_clear_markerClear the current Spector.js marker.
webgl_runtime_logWrite a custom log line into the Spector capture stream (appears as a log command when capturing).
webgl_screenshot_canvasImmediate canvas.toDataURL screenshot (not a Spector frame). Useful for any-stage visual checks and goal verification. Saves under the current session screenshots/ folder.
webgl_read_consoleReturn recent console API messages collected from the bound page via CDP (log/warn/error).
webgl_list_visual_attachmentsList Spector VisualState attachment screenshots persisted for a capture (requires capture with includeThumbnails=true, quickCapture=false).
webgl_get_visual_attachmentResolve a single FBO/canvas screenshot path for AI inspection (Read tool can open the absolute file path).
webgl_capture_commandsSpector startCapture for a fixed command count — capture an arbitrary stage without waiting for a full frame boundary.
webgl_list_rulesList deterministic WebGL diagnostic rule IDs available to webgl_run_diagnostics.
webgl_debug_playbookGiven a URL/goal/symptoms, return a deterministic multi-phase tool sequence for AI automated WebGL debugging (attach → capture → diagnose → fix → verify).
webgl_session_createCreate a local debug session and connect to Chrome at the configured browser URL.
webgl_session_statusGet current session, target binding, and Spector runtime status.
webgl_list_targetsList Chrome page targets that can be bound for WebGL debugging.
webgl_bind_targetBind a page target by targetId, debugSessionId, url+title, or urlPattern. Prefer debugSessionId set via chrome-devtools-mcp.
webgl_unbind_targetDetach from the currently bound page target.
webgl_runtime_installInject Spector.js into the bound page (early + late install).
webgl_runtime_statusCheck Spector injection, canvas, and context status on the bound page.
webgl_export_captureExport a capture tree (manifest, capture, findings, report) to a directory.
webgl_delete_captureDelete a stored capture and its artifacts.
webgl_cleanup_storeEvict captures by TTL, per-session cap, and max store size.
webgl_open_capture_viewerReturn a local file URL for the read-only Capture Viewer pointing at a stored capture.
Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.
When Vitest UI server is listening, arbitrary file can be read and executed
ws: Memory exhaustion DoS from tiny fragments and data chunks
ws: Uninitialized memory disclosure
CHROME_PATHDEMO_URLSPECTOR_AGENT_MCP_HTTP_HOSTSPECTOR_AGENT_MCP_HTTP_PATHSPECTOR_AGENT_MCP_HTTP_PORTSPECTOR_AGENT_MCP_HTTP_TOKENexport ="replace-with-at-least-24-random-characters"SPECTOR_AGENT_MCP_TRANSPORTSPECTOR_BUNDLE_PATHWEBGL_DEBUG_BROWSER_URLWEBGL_DEBUG_LOG_LEVELWEBGL_DEBUG_STORE_DIRTool annotations
No tools have read-only/destructive annotations
Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.
All four hints declared on every tool
40/40 tools missing one or more hints — webgl_list_canvases (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); webgl_select_canvas (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); webgl_capture_frame (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +37 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.
For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.
Descriptions match behaviour
1 tool describes read intent but its handler mutates — webgl_open_capture_viewer (line 131: writeFile(generatedViewerPath, html, "utf8"))
Rename the tool, rewrite the description, or move the side-effect into a separate clearly-named tool.
Tool inputs are validated
33/40 tool handlers declare input schemas (83%)
Declare an inputSchema with zod/joi/yup on every tool definition.
Tool test coverage
Only 5/40 tools referenced in tests (13%)
Write tests that reference each tool by name so every tool has at least one test.
No eval / new Function
1 eval() or new Function() call — dynamic code execution
Replace eval / Function with explicit parsing or safer alternatives.
Shell command execution
9 child_process calls — runs shell commands
Prefer library functions over shell-outs. If you must shell out, ensure all inputs are properly escaped.
Production dependencies are patched
0 critical, 1 high severity in production deps — ws@8.18.2 (high), ws@8.18.2 (low)
Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.
Dev dependencies
1 critical/high in dev-only deps (does not ship to users)
Upgrade dev dependencies when convenient.
Dependency freshness
1/5 production deps stale: spectorjs@2024-02-01 (2.5y)
Tool description accuracy
webgl_open_capture_viewer: description implies read-only but handler writes/deletes/executes
Update tool descriptions to accurately reflect all capabilities — especially write, delete, or execute operations.
Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.
[](https://m8ven.ai/mcp/sakitam-fdd/spector-mcp)?variant=verified from the URL.Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.
https://m8ven.ai/api/mcp/tool-check