HREVN MCP Server
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., "@HREVN MCP Serverrun a baseline check for my AI workflow with EU readiness profile"
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.
HREVN MCP Server
Minimal stdio MCP server for HREVN, backed by the live managed runtime at
https://api.hrevn.com.
Why this exists
This repo exposes HREVN as real MCP tools instead of ad hoc helper scripts. It stays intentionally thin:
canonical semantics remain in the HREVN managed runtime
the MCP layer only exposes stable tool contracts
consequential results come back as structured output, including
risk_flags,remedy_payload, andcheck_id
Related MCP server: MCProbe
Included tools
baseline_checkprofile_validategenerate_bundleverify_bundle
Environment
export 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_VERSION
Install
Editable install
cd hrevn-mcp-server
python3 -m pip install -e .From PyPI
python3 -m pip install hrevn-mcp-serverThe console entry point is:
hrevn-mcp-serverRun
hrevn-mcp-serverThe server uses MCP stdio transport.
Verify before using a client
hrevn-mcp-server --version
hrevn-mcp-server --list-tools
hrevn-mcp-server --self-testIf 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-testThe self-test runs a live baseline_check against the configured HREVN
managed API.
Tool contracts
baseline_check
Minimal 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_validate
Minimal payload:
{
"profile": "eu_readiness_profile",
"record": {},
"metadata": {}
}generate_bundle
Minimal payload:
{
"record": {},
"traces": [],
"options": {
"include_report_pdf": false
}
}verify_bundle
Minimal payload:
{
"source": "/path/to/bundle-or-artifact"
}Example MCP config
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:
Antigravity status
HREVN can already be explored experimentally in Google Antigravity through custom MCP configuration.
What is already validated:
the HREVN MCP server runs locally
the server exposes real tools backed by
https://api.hrevn.combaseline_checkreturns real structured resultsAntigravity preview builds expose MCP configuration surfaces in the UI
What is not claimed yet:
official native Antigravity integration
guaranteed MCP tool injection into every Antigravity agent instance
Antigravity-specific guardrail hooks beyond what has been directly observed
Registry metadata
This repo includes:
as a machine-readable manifest describing the MCP server, package, transport, and repository metadata.
Design rule
This server must not reimplement HREVN truth locally. It should expose stable MCP tools that call the managed API.
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
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
Read-only MCP server for turva.dev, an agent-readiness audit and advisory service.
Guarded MCP server for agent-readable business truth, provenance, readiness, and discovery.
Evidence-readiness MCP server: validate, audit, and score briefs, memos, and evidence packs.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for running infrastructure health checks with TIBET provenance. It enables users to define, execute, and audit process health checks with dependency chaining and drift tracking.6MIT
- AlicenseAqualityBmaintenanceA stdio MCP server that audits other MCP servers by linting their tool schemas and calling tools with malformed inputs to produce a 0–100 conformance score and Markdown report.6MIT
- AlicenseBqualityBmaintenanceA local, evidence-driven MCP runtime and control plane for open-source maintainers that provides workspace-bounded tools including controlled file operations, command execution, validation primitives, durable execution records, and human review workflows via stdio and Streamable HTTP transports.33MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for regulated enterprises, providing per-tool RBAC, redacted audit logging, and structured error handling. Exposes bank tools for customer lookup, statement search, and dispute resolution over stdio and HTTPS transports.MIT
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/miguel-herrero-systems/hrevn-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server