by magentic
FlowLens is an open-source MCP server that gives your coding agent (Claude Code, Cursor, Copilot, Codex) full browser context for in-depth debugging and regression testing.
# Add to your Claude Code skills
git clone https://github.com/magentic/flowlens-mcp-serverGuides for using ai agents skills like flowlens-mcp-server.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:38:08.047Z",
"npmAuditRan": true,
"pipAuditRan": true
}flowlens-mcp-server is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by magentic. FlowLens is an open-source MCP server that gives your coding agent (Claude Code, Cursor, Copilot, Codex) full browser context for in-depth debugging and regression testing. It has 109 GitHub stars.
Yes. flowlens-mcp-server passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/magentic/flowlens-mcp-server" and add it to your Claude Code skills directory (see the Installation section above).
flowlens-mcp-server is primarily written in Python. It is open-source under magentic on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh flowlens-mcp-server against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
flowlens-mcp-server gives your coding agent (Claude Code, Cursor, Copilot, Codex) full browser context for in-depth debugging and regression testing.
To install:
pipx install flowlens-mcp-server
To upgrade to the latest version:
pipx upgrade flowlens-mcp-server
To check that the installation was successfully:
flowlens-mcp-server
Add the following config to your MCP client (ex: ~/.claude.json) under mcpServers:
"flowlens": {
"command": "flowlens-mcp-server",
"type": "stdio"
}
claude mcp add flowlens --transport stdio -- flowlens-mcp-server
Click the button to install:
Or install manually:
Go to Cursor Settings -> MCP -> New MCP Server. Use the config provided above.
code --add-mcp '{"name":"flowlens","command":"flowlens-mcp-server"}'
codex mcp add flowlens -- flowlens-mcp-server
"flowlens": {
"command": "flowlens-mcp-server"
}
The above setup only works with local flows. If you want to also connect to shareable flows, get your FLOWLENS_MCP_TOKEN from the FlowLens platform and add it to your relevant MCP config file:
"flowlens": {
"command": "flowlens-mcp-server",
"type": "stdio",
"env": {
"FLOWLENS_MCP_TOKEN": "YOUR_FLOWLENS_MCP_TOKEN"
}
}