Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"piqrypt": {
"env": {
"PIQRYPT_PYTHON": "/path/to/venv/bin/python"
},
"args": [],
"command": "piqrypt-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Cryptographic Audit Trail for AI Agents via Model Context Protocol
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@piqrypt/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 @piqrypt/mcp-server against OSV.dev.
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 / legal
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
Model Context Protocol for WinDBG
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
Security scanner for GitHub repos, Agent Skills, Plugins, and MCP servers. 18 scanners. Zero dependencies.
MCP Security Weekly
Get CVE alerts and security updates for io.github.PiQrypt/audit-trail and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Cryptographic Audit Trail for AI Agents via Model Context Protocol
PiQrypt MCP Server provides Model Context Protocol access to PiQrypt — the post-quantum cryptographic audit trail for AI agents.
Use cases:
1. Install piqrypt (required — Python 3.8+)
pip install piqrypt
The MCP server delegates all cryptographic operations to the piqrypt Python package.
If it is not installed, the server will return a clear error on every tool call.
2. Install the MCP server (Node.js 18+)
npm install -g @piqrypt/mcp-server
npx @piqrypt/mcp-server
git clone https://github.com/piqrypt/piqrypt-mcp-server
cd piqrypt-mcp-server
npm install
npm run build
By default the server uses python3 (Linux/Mac) or python (Windows).
If piqrypt is installed in a virtual environment, set this variable to point to the right interpreter:
Windows
set PIQRYPT_PYTHON=C:\path\to\venv\Scripts\python.exe
Linux / Mac
export PIQRYPT_PYTHON=/path/to/venv/bin/python
To make it persistent, add it to your MCP client configuration:
{
"mcpServers": {
"piqrypt": {
"command": "piqrypt-mcp-server",
"args": [],
"env": {
"PIQRYPT_PYTHON": "/path/to/venv/bin/python"
}
}
}
}
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"piqrypt": {
"command": "piqrypt-mcp-server",
"args": []
}
}
}
| Client | Version | Notes |
|---|---|---|
| Any MCP-compatible client | MCP spec 2024-11+ | stdio transport |
| n8n | 1.88+ | via MCP node |
| Cursor | any | add to mcp settings |
| VS Code | any | add to mcp settings |
| Continue | any | add to mcp settings |
| Windsurf | any | add to mcp settings |
| Platform | Integration | Use case |
|---|---|---|
| n8n | MCP node (native) | No-code audit trail |
| Make.com | HTTP module | Webhook-triggered stamping |
| Zapier | Webhooks + HTTP | Basic event recording |
Every tool call goes through the same 4 operations — stamp, verify, export, search. Here is what that means in practice depending on your context:
**Autom