
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@cellar-door/mcp-server
Advanced tools
MCP server exposing cellar-door EXIT and ENTRY verifiable markers as AI-native tools
MCP (Model Context Protocol) server that exposes cellar-door-exit and cellar-door-entry verifiable markers as AI-native tools. Any MCP-compatible client — Claude Desktop, Cursor, Windsurf, or custom agents — can create, sign, and verify EXIT and ENTRY markers.
| Tool | Description |
|---|---|
generate_identity | Generate an Ed25519 DID keypair for signing |
quick_exit | One-shot: create + sign a departure marker |
create_exit_marker | Create and sign a marker with full options |
verify_exit_marker | Verify a marker from JSON |
| Tool | Description |
|---|---|
verify_and_admit | Verify EXIT marker, evaluate admission policy, create arrival |
evaluate_admission | Check if EXIT marker meets an admission policy |
verify_transfer | Verify a complete EXIT→ENTRY transfer chain |
list_admission_policies | List available admission policy presets |
npm install @cellar-door/mcp-server
{
"mcpServers": {
"cellar-door": {
"command": "npx",
"args": ["@cellar-door/mcp-server"]
}
}
}
{
"name": "quick_exit",
"arguments": { "origin": "did:example:my-agent", "reason": "Task complete" }
}
{
"name": "verify_and_admit",
"arguments": {
"exitMarkerJson": "{...exit marker JSON...}",
"destination": "did:example:new-platform",
"admissionPolicy": "OPEN_DOOR"
}
}
Response:
{
"admitted": true,
"arrivalMarker": { "..." },
"exitMarkerId": "exit:...",
"continuity": { "valid": true, "errors": [] }
}
{
"name": "evaluate_admission",
"arguments": {
"exitMarkerJson": "{...}",
"policy": "STRICT"
}
}
{ "name": "list_admission_policies", "arguments": {} }
Response:
{
"policies": {
"OPEN_DOOR": { "description": "Accept everything with a valid signature", "requireVerifiedDeparture": true },
"STRICT": { "description": "Voluntary only, <24h old, requires lineage + stateSnapshot", "..." },
"EMERGENCY_ONLY": { "description": "Accept only emergency exits", "..." }
}
}
WARNING: Automated admission decisions should be reviewed by platform operators. This integration does not constitute legal advice. Platforms are responsible for their own admission policies and the consequences of admitting agents.
Apache-2.0
FAQs
MCP server exposing cellar-door EXIT and ENTRY verifiable markers as AI-native tools
The npm package @cellar-door/mcp-server receives a total of 36 weekly downloads. As such, @cellar-door/mcp-server popularity was classified as not popular.
We found that @cellar-door/mcp-server 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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.