ventrox
OfficialClick 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., "@ventroxshow me open vents grouped by similarity and ranked by minutes lost"
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.
Ventrox
A coding agent hits the same wall many times a day, and nobody sees it.
Ventrox adds one tool call to the agent: what it tried, what failed, minutes lost.
The agent cannot read vents back; the server stamps each with session, project, branch, and time.
A reviewer starts VENTROX_SECRET=$(ventrox grant) claude and lists vents grouped by rough similarity, ranked by count and minutes.
The wall that cost the most minutes comes first.
A few hundred lines of Python, one SQLite file in your home directory, two commands to install.
Nothing goes over the network, and nothing lands in your repo.
Clustering is TF-IDF on n-grams and misses synonyms; redaction is a regex list, best effort.
Limits: 20 vents per session, 5 per 10 minutes.
The idea comes from Lovable's vent tool and vent-widget.
Install
Install Ventrox as a global tool:
uv tool install git+https://github.com/Vetrox/ventrox.gitOr clone and install from the checkout:
git clone https://github.com/Vetrox/ventrox && cd ventrox && uv tool install .Then run setup:
ventrox setupSetup copies the ventrox-report and ventrox-review skills into ~/.claude/skills/.
It then registers the MCP server with claude mcp add --scope user ventrox -- ventrox.
Related MCP server: mcp-chest-memory
Use
Reporter: the agent calls ventrox_vent with tried, failed, and minutes_lost.
It writes one vent per turn, and only after the same friction repeats (two failures or more than 10 minutes).
It corrects a vent in the same session with ventrox_edit.
The server accepts 20 vents per session and 5 vents per 10 minutes.
Reviewer: start a session with a single-use token:
VENTROX_SECRET=$(ventrox grant) claudeThe token is single-use and valid for 10 minutes. The session then holds the reviewer tools. Call them in this order:
ventrox_reclustergroups open vents by vocabulary overlap.ventrox_clusterslists the groups ranked by open count, then minutes lost.ventrox_resolve_clustermarks a groupresolvedorwontfix.
Uninstall
ventrox setup --remove
uv tool uninstall ventrox
rm -r ~/.local/share/ventrox # deletes all ventsTools
Tool | Mode | Arguments | Returns |
| reporter |
|
|
| reporter |
|
|
| reviewer |
| the vent, or |
| reviewer |
|
|
| reviewer | none |
|
| reviewer | none |
|
| reviewer |
|
|
| reviewer |
|
|
Text fields hold 1 to 4000 characters. minutes_lost ranges from 0 to 1440.
Environment variables
Variable | Purpose | Default |
| Data directory | unset |
| Session ID | generated per process |
| Grant token for a reviewer session; single-use, valid 10 minutes | unset |
| Path to a file with project examples | unset |
| Vents the server accepts per session | 20 |
| Vents the server accepts per 10 minutes | 5 |
Data location
The server picks the first of $VENTROX_HOME, $XDG_DATA_HOME/ventrox, and ~/.local/share/ventrox.
All vents live in vents.db in that directory.
The file is plain SQLite with no encryption; only file permissions protect it.
The server refuses to start when the data directory is inside a git worktree, and exits with code 2.
Skills
ventrox-report tells the agent when a friction counts as a vent and what the three fields must contain.
ventrox-review tells a reviewer to run recluster, clusters, then resolve.
ventrox setup installs both.
Project examples
Put a .ventrox.md file at the project root to add project-specific examples of good vents.
Set VENTROX_EXAMPLES to a file path to add examples for all projects.
The server appends both to the ventrox_vent tool description.
Develop
uv sync
uv run pytest
uv run ventroxNon-goals
Ventrox does not sync to an issue tracker. It has no multi-user mode. It records no tool-call traces, only the three fields the agent writes. It opens no network connection.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityAmaintenanceLocal-first memory layer for AI coding agents — captures issues, attempts, fixes, and decisions, and warns at git commit before you repeat a mistake.15665MIT
- AlicenseNot gradedqualityBmaintenanceProvides a persistent, local-first memory for coding agents over MCP, enabling automatic recall and recording of past work, failures, and decisions to reduce repetition and token usage.MIT
- AlicenseCqualityAmaintenanceLocal-first error memory for AI coding agents, enabling them to search past fixes before attempting new repairs and save verified cases as Markdown.3MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first debug memory for MCP clients. Record incidents, commands, failed attempts, successful fixes, diagnostics, and searchable debugging history in SQLite.652MIT
Related MCP Connectors
Memory for coding agents: the decisions, the dead ends, and where the last session stopped.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
Immutable event logging and audit trail for agent transactions
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/Vetrox/ventrox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server