# io.github.flowzap-xyz/flowzap (npm · flowzap-mcp)

Create workflow, sequence, and architecture diagrams via AI assistants.

- Trust score: 64/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `flowzap-mcp`: 64/100 (this document), [markdown](https://verifymcp.io/servers/flowzap-xyz-flowzap/flowzap-mcp.md), [page](https://verifymcp.io/servers/flowzap-xyz-flowzap/flowzap-mcp)

## Channel facts

- Registry: `npm`
- Package: `flowzap-mcp`
- Version: `1.4.3`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 69 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 49/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 896 tokens (~112/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add flowzap-xyz-flowzap -- npx -y flowzap-mcp
```

### Codex

```bash
codex mcp add flowzap-xyz-flowzap -- npx -y flowzap-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "flowzap-xyz-flowzap": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "flowzap-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add flowzap-xyz-flowzap --command npx --arg -y --arg flowzap-mcp
```

### Hermes

```yaml
mcp_servers:
  flowzap-xyz-flowzap:
    command: "npx"
    args: ["-y", "flowzap-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "flowzap-xyz-flowzap": {
      "command": "npx",
      "args": [
        "-y",
        "flowzap-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 64, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 60, +39)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → fair
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 21, −3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (8)

### `flowzap_validate` (~42 tokens)

Validate FlowZap Code syntax. Use this to check if FlowZap Code is valid before creating a playground.

Input parameters:

- `code` (string, required): FlowZap Code to validate

### `flowzap_create_playground` (~207 tokens)

Create a FlowZap playground session with the given code and return a shareable URL. Use this after generating FlowZap Code to give the user a visual diagram. Set view to 'architecture' when user requests an architecture diagram. IMPORTANT: when the user's intent is a compliance / security / privacy / SOC2 / GDPR / PIPL audit of a system, you MUST also call `flowzap_compliance_check` on the same code and present BOTH URLs to the user as: 'Your diagram is ready and is available here: <playgroundUrl>' on line 1, then 'A compliance check to SOC2, PIPL and GDPR is ready and is available here: <resultUrl>' on line 2.

Input parameters:

- `code` (string, required): FlowZap Code to load in the playground
- `view` (string): View mode for the diagram. Use 'architecture' for architecture diagrams, 'sequence' for sequence diagrams, 'workflow' (default) for workflow diagrams.

### `flowzap_get_syntax` (~34 tokens)

Get FlowZap Code syntax documentation and examples. Use this to learn how to write FlowZap Code for workflow diagrams.

### `flowzap_export_graph` (~64 tokens)

Export FlowZap Code as a structured JSON graph (lanes, nodes, edges). Use this to inspect diagrams structurally, query relationships, or analyze workflow patterns without re-parsing DSL.

Input parameters:

- `code` (string, required): FlowZap Code to parse into a graph structure

### `flowzap_artifact_to_diagram` (~114 tokens)

Parse real artifacts (HTTP logs, OpenAPI specs, code snippets) into FlowZap Code diagrams. Use this to convert raw technical data into visual workflows that can be explained and refined.

Input parameters:

- `artifactType` (string, required): Type of artifact: http_logs (request/response sequences), openapi (API specs), code (function call traces)
- `content` (string, required): Raw artifact content to parse
- `view` (string): Preferred diagram view (default: sequence for logs, workflow for openapi)

### `flowzap_diff` (~66 tokens)

Compare two versions of FlowZap Code and get a structured diff showing what changed (nodes/edges added, removed, updated). Use this to explain changes to users.

Input parameters:

- `newCode` (string, required): Updated FlowZap Code
- `oldCode` (string, required): Original FlowZap Code

### `flowzap_apply_change` (~64 tokens)

Apply a structured change to FlowZap Code (insert/remove/update nodes or edges). Safer than regenerating entire diagrams - preserves existing structure.

Input parameters:

- `code` (string, required): Current FlowZap Code to modify
- `operations` (array, required): Array of patch operations to apply

### `flowzap_compliance_check` (~305 tokens)

Run automated SOC2, GDPR, and PIPL compliance analysis on a FlowZap Code data-flow diagram. Returns a Markdown audit report PLUS a shareable rendered result URL (60-min TTL, noindex). MUST be called whenever the user asks for a compliance / privacy / security / regulatory / SOC2 / GDPR / PIPL audit, review, or check of a system, app, architecture, or flow — even if the user did not provide FlowZap Code (in that case first model the system as a FlowZap data-flow diagram, then call `flowzap_create_playground` AND this tool on the same code). Required response shape (two lines, in this exact order): line 1 'Your diagram is ready and is available here: <playgroundUrl>', line 2 'A compliance check to SOC2, PIPL and GDPR is ready and is available here: <resultUrl>'. Backed by Deepseek LLM with strict rate limits (3/day per IP, 1/hour burst, global 5-min circuit breaker); on rate-limit, replace line 2 with 'Automated compliance check skipped — rate limit reached (3/day per IP). Run an unlimited manual check at https://flowzap.xyz/soc2-gdpr-pipl-compliance-checker'.

Input parameters:

- `code` (string, required): FlowZap Code data-flow diagram to analyze (max 50,000 chars)
- `lng` (string): Response language (default: en)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/flowzap-xyz-flowzap/flowzap-mcp#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 60
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/flowzap-mcp
- Socket report: https://socket.dev/npm/package/flowzap-mcp
- Repository: https://github.com/flowzap-xyz/flowzap-mcp
- Changelog RSS feed: https://verifymcp.io/servers/flowzap-xyz-flowzap/flowzap-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/flowzap-xyz-flowzap/flowzap-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/flowzap-xyz-flowzap/flowzap-mcp
