FlowState MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FlowState MCPImport the owner HAR, build the state graph, and suggest transition hypotheses."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FlowState MCP
FlowState MCP is a local Model Context Protocol server for persistent business-workflow and application-state analysis during authorized web security testing.
It is not a vulnerability scanner and it does not send requests.
V1 imports local Burp XML or HAR traffic, assigns each import to a human-defined actor, strips authentication secrets, extracts workflow-relevant identifiers and state fields, builds an actor/entity/action/state graph, and proposes hypotheses for manual validation.
Why it exists
Burp MCP is excellent at exposing HTTP traffic and controlled Burp actions to an AI client.
FlowState solves a different problem:
What does the traffic mean in the application's workflow?
Examples:
Owner creates invitation
↓
Member accepts invitation
↓
Membership becomes active
↓
Owner removes memberFlowState can remember the actors, objects, transitions, and evidence behind those actions and then suggest questions such as:
Was an accepted invitation actually made unusable?
Can another registered actor perform the same state-changing action?
Did a field change from
pendingtoaccepted, and are invalid adjacent transitions still untested?Where did one object identifier appear across multiple requests?
Those are hypotheses, not vulnerability findings.
Related MCP server: mcp-network-analyzer
V1 safety boundary
FlowState V1:
uses local
stdioMCP only;has no HTTP client;
has no browser automation;
has no scanner;
has no exploit runner;
does not replay requests;
does not store Authorization, Cookie, Set-Cookie, API-key, password, or token values;
filters imports to the campaign target host and its subdomains;
uses bounded import sizes and bounded observation counts;
labels hypotheses as requiring manual validation.
Use your existing Burp MCP separately when you intentionally want the AI client to inspect or replay a request.
Tools
Tool | Purpose |
| Server status, limits, and safety boundary |
| Create one target-scoped workflow campaign |
| List local campaigns |
| Read one campaign |
| Register Owner, Member, Outsider, Anonymous, etc. |
| List campaign actors |
| Import a HAR for one actor |
| Import Burp XML for one actor |
| Inspect sanitized stored observations |
| Build actor/entity/action/state relationships |
| Compare observed behavior by actor |
| Trace one identifier across observations |
| Generate replay/state-transition questions |
| Generate actor-comparison questions |
Install
Python 3.11+:
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -e ".[dev]"
pytest -qLinux/macOS:
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"
pytest -qRun manually
python server.pyThe server speaks MCP over stdin/stdout, so manual launch normally appears to wait for protocol input.
Codex registration
Windows example:
codex mcp add flowstate -- D:/Tools/FlowState-MCP/.venv/Scripts/python.exe D:/Tools/FlowState-MCP/server.py
codex mcp get flowstateLinux/macOS:
codex mcp add flowstate -- /absolute/path/FlowState-MCP/.venv/bin/python /absolute/path/FlowState-MCP/server.pyClaude Code registration
claude mcp add flowstate --scope user -- /absolute/path/FlowState-MCP/.venv/bin/python /absolute/path/FlowState-MCP/server.pySuggested workflow with Burp MCP
ScopeNest containers
├─ Owner
├─ Member
└─ Anonymous
│
↓
Burp
│
├──────────────→ Burp MCP
│ │
│ └─ inspect/replay intentionally
│
└─ export HAR/XML
│
↓
FlowState MCP
│
┌────────┼─────────┐
↓ ↓ ↓
actors objects states
└────────┼─────────┘
↓
hypotheses
↓
manual validation
↓
Burp MCPExample session
1. flow_create_campaign
name="Target SaaS"
target_host="app.example.com"
2. flow_register_actor
actor_id="owner"
name="Owner"
roles=["organization_owner"]
3. flow_register_actor
actor_id="member"
name="Member"
roles=["organization_member"]
4. Export Owner traffic from Burp as XML or HAR.
5. flow_import_burp_xml
campaign_id="..."
actor_id="owner"
path="D:/BugBounty/target/owner.xml"
6. Repeat for Member.
7. flow_build_state_graph
8. flow_show_actor_permissions
9. flow_generate_transition_hypotheses
10. flow_generate_actor_swap_hypothesesWhat V1 deliberately does not do
V1 does not try to infer a complete business ontology from every API field.
It uses deterministic heuristics for:
action verbs in paths;
HTTP method semantics;
path identifiers;
common ID-like JSON fields;
common state/status/role fields.
The graph is evidence-backed and intentionally imperfect. A future version can add explicit human corrections such as:
"mem_912 represents user_22"
"workspace_id is a tenant boundary"
"accepted invitations must never be reusable"without turning guesses into facts.
V1 success test
FlowState V1 is successful only if, on a real bug-bounty session, it produces at least one hypothesis that you would genuinely test and that you did not immediately notice from raw Burp history alone.
If it cannot do that, we should improve the model before adding active features.
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Offline methodology engine for authorized penetration testing, CTF, and security research.
AI Agent with Architectural Memory. Impact analysis (free), tests and code from the graph (pro).
Generate SBOMs, scan vulnerabilities, and analyze dependencies from local projects or Git repos.
IaC attack-path auditor: finds internet-to-crown-jewel chains in Terraform/CFN/K8s.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables reverse engineering of web applications and chat interfaces through browser automation, network traffic capture, and streaming API discovery. Provides comprehensive tools for analyzing network patterns, capturing streaming responses, and automating complex web interactions.1481ISC
- AlicenseNot gradedqualityCmaintenanceCaptures browser network traffic, analyzes API patterns, and exposes analysis tools through an MCP server for AI-assisted workflows.1MIT
- FlicenseNot gradedqualityDmaintenanceCaptures website HAR data via headless Chromium and provides 20 tools for performance/security auditing, API reverse engineering, and code generation.-
- AlicenseCqualityAmaintenanceA local-first, authorization-gated MCP server for web security assessment that transforms URLs into traceable, reviewable reports and integrates with Claude Code and local LLMs.15MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tobiasGuta/FlowState-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server