HREVN trust layer for baseline diagnostics and verifiable workflow integrity for AI agents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-ai-human-andalusia-hrevn-mcp-server": {
"args": [
"hrevn-mcp-server"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Minimal stdio MCP server for HREVN, backed by the live managed runtime at
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'hrevn-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked hrevn-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security / ai-ml
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for io.github.ai-human-andalusia/hrevn-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Minimal stdio MCP server for HREVN, backed by the live managed runtime at
https://api.hrevn.com.
This repo exposes HREVN as real MCP tools instead of ad hoc helper scripts. It stays intentionally thin:
risk_flags, remedy_payload, and check_idbaseline_checkprofile_validategenerate_bundleverify_bundleexport HREVN_API_BASE_URL="https://api.hrevn.com"
export HREVN_API_KEY="replace-with-issued-alpha-key"
Optional environment variables:
HREVN_MCP_TIMEOUT_SECONDSHREVN_MCP_SERVER_NAMEHREVN_MCP_SERVER_VERSIONcd hrevn-mcp-server
python3 -m pip install -e .
python3 -m pip install hrevn-mcp-server
The console entry point is:
hrevn-mcp-server
hrevn-mcp-server
The server uses MCP stdio transport.
hrevn-mcp-server --version
hrevn-mcp-server --list-tools
hrevn-mcp-server --self-test
If you are running directly from source without an installed entry point:
PYTHONPATH=src python3 -m hrevn_mcp_server.server --list-tools
PYTHONPATH=src python3 -m hrevn_mcp_server.server --self-test
The self-test runs a live baseline_check against the configured HREVN
managed API.
baseline_checkMinimal payload:
{
"task_type": "ai_workflow",
"profile": "eu_readiness_profile",
"record": {
"agent_name": "example_agent",
"summary": "baseline smoke test"
},
"metadata": {
"surface": "mcp",
"stage": "pre_completion"
}
}
profile_validateMinimal payload:
{
"profile": "eu_readiness_profile",
"record": {},
"metadata": {}
}
generate_bundleMinimal payload:
{
"record": {},
"traces": [],
"options": {
"include_report_pdf": false
}
}
verify_bundleMinimal payload:
{
"source": "/path/to/bundle-or-artifact"
}
Use a local stdio configuration like this:
{
"mcpServers": {
"hrevn": {
"command": "python3",
"args": [
"-m",
"hrevn_mcp_server.server"
],
"env": {
"PYTHONPATH": "/ABSOLUTE/PATH/TO/hrevn-mcp-server/src",
"HREVN_API_BASE_URL": "https://api.hrevn.com",
"HREVN_API_KEY": "YOUR_HREVN_API_KEY"
}
}
}
}
See also:
HREVN can already be explored experimentally in Google Antigravity through custom MCP configuration.
What is already validated:
https://api.hrevn.combaseline_check returns real structured resultsWhat is not claimed yet:
This repo includes:
as a machine-readable manifest describing the MCP server, package, transport, and repository metadata.
This server must not reimplement HREVN truth locally. It should expose stable MCP tools that call the managed API.