
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
codeflow-mcp
Advanced tools
MCP Server for CodeFlow - Generate and manage code flow documentation with Claude Code
MCP (Model Context Protocol) server for managing code flow documentation with Claude Code.
.cf documentation files for your code# Clone or download
git clone https://github.com/juanisidoro/codeflow.git
cd codeflow
# Install dependencies
npm install
# Build
npm run build
Add to your Claude Code settings (~/.claude/settings.json or project .claude/settings.json):
{
"mcpServers": {
"codeflow": {
"command": "node",
"args": ["/path/to/codeflow/dist/index.js"],
"env": {
"CODEFLOW_PROJECT_PATH": "/path/to/your/project",
"CODEFLOW_FLOWS_DIR": "flows"
}
}
}
}
| Variable | Description | Default |
|---|---|---|
CODEFLOW_PROJECT_PATH | Path to your project | Current working directory |
CODEFLOW_FLOWS_DIR | Directory for .cf files | flows |
read_codeflow_specRead the CodeFlow specifications to understand the format.
"Lee la spec de codeflow para saber cómo generar flujos"
list_flowsList all existing .cf files in the project.
"Lista todos los flujos que tengo"
read_flowRead a specific flow file.
"Lee el flujo create-order.cf"
save_flowCreate or update a flow file.
"Guarda este flujo como process-payment.cf: {...}"
save_analysisSave an analysis file for an existing flow.
"Genera el análisis para create-order.cf"
delete_flowDelete a flow and its analysis.
"Elimina el flujo old-flow.cf"
list_code_filesList code files in a directory.
"Lista los archivos en src/services"
read_code_fileRead a code file to analyze.
"Lee src/orders/createOrder.ts"
scan_undocumentedFind code files without documentation.
"¿Qué archivos no tienen flujo todavía?"
get_project_infoGet general project information.
"Dame info del proyecto"
> Lee src/orders/createOrder.ts y genera un flujo siguiendo la spec
Claude will:
1. Read the spec
2. Read the code file
3. Generate a .cf file
4. Save it to flows/
> Actualiza create-order.cf con los cambios que hice en createOrder.ts
Claude will:
1. Read the current flow
2. Read the updated code
3. Detect differences
4. Update the flow
> ¿Qué archivos importantes no tienen flujo?
Claude will scan and prioritize files that likely need documentation.
Flows are saved in {project}/flows/:
your-project/
├── src/
│ └── orders/
│ └── createOrder.ts
├── flows/
│ ├── create-order.cf # Flow documentation
│ └── create-order.cf-analysis.json # Analysis (optional)
└── ...
The MCP includes the CodeFlow specifications:
specs/CODEFLOW_SPEC_v2.md - Flow file formatspecs/CODEFLOW_ANALYSIS_SPEC_v1.md - Analysis file format# Watch mode
npm run dev
# Build
npm run build
# Run directly
npm start
MIT
FAQs
MCP Server for CodeFlow - Generate and manage code flow documentation with Claude Code
The npm package codeflow-mcp receives a total of 10 weekly downloads. As such, codeflow-mcp popularity was classified as not popular.
We found that codeflow-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.