MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQChangelog

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace ยฉ 2026. All rights reserved.

Back to Browse

Piqrypt MCP Server

by PiQrypt
Developer ToolsLow Risk8.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Cryptographic audit trail for AI agents. Sign, verify, export. GDPR/HIPAA/EU AI Act.

About

Cryptographic audit trail for AI agents. Sign, verify, export. GDPR/HIPAA/EU AI Act.

Security Report

8.0
Low Risk8.0Low Risk

Valid MCP server (2 strong, 4 medium validity signals). 2 known CVEs in dependencies (0 critical, 2 high severity) Package registry verified. Imported from the Official MCP Registry.

5 files analyzed ยท 3 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious โ€” only use if you trust this plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-piqrypt-audit-trail": {
      "args": [
        "-y",
        "@piqrypt/mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

PiQrypt MCP Server

Cryptographic Audit Trail for AI Agents via Model Context Protocol

MCP AISS License Python Node


๐Ÿš€ What is PiQrypt MCP?

PiQrypt MCP Server provides Model Context Protocol access to PiQrypt โ€” the post-quantum cryptographic audit trail for AI agents.

Use cases:

  • ๐Ÿค– AI Agents: Sign every decision with cryptographic proof
  • ๐Ÿ“Š n8n Workflows: Add audit trail to automation workflows
  • ๐Ÿฆ Trading Bots: SEC/FINRA compliance for automated trading
  • ๐Ÿ‘ฅ HR Automation: GDPR-compliant AI hiring decisions
  • ๐Ÿฅ Healthcare AI: HIPAA audit trail for medical decisions

๐Ÿ“ฆ Installation

Prerequisites

  • Node.js 18+
  • Python 3.8+
  • PiQrypt Core (pip install piqrypt)

Install via npx (recommended)

npx @piqrypt/mcp-server

No build step required.

Install globally

npm install -g @piqrypt/mcp-server

Build from source

git clone https://github.com/piqrypt/piqrypt-mcp-server
cd piqrypt-mcp-server
npm install
npm run build

โš™๏ธ Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "piqrypt": {
      "command": "piqrypt-mcp-server",
      "args": []
    }
  }
}

n8n (v1.88+)

  1. Install n8n MCP integration
  2. Add PiQrypt MCP server to configuration
  3. Use in workflows via MCP node

Compatible with

MCP clients

ClientVersionNotes
Any MCP-compatible clientMCP spec 2024-11+stdio transport
n8n1.88+via MCP node
Cursoranyadd to mcp settings
VS Codeanyadd to mcp settings
Continueanyadd to mcp settings
Windsurfanyadd to mcp settings

Automation platforms (via MCP node)

PlatformIntegrationUse case
n8nMCP node (native)No-code audit trail
Make.comHTTP moduleWebhook-triggered stamping
ZapierWebhooks + HTTPBasic event recording

What you can audit with PiQrypt MCP

Every tool call goes through the same 4 operations โ€” stamp, verify, export, search. Here is what that means in practice depending on your context:

Automated trading / finance Any agent that submits orders, rebalances portfolios, or triggers transactions can stamp each decision before execution. The signed chain is exportable for SEC/FINRA audit without any additional infrastructure.

HR and hiring automation Any workflow that evaluates candidates, scores CVs, or routes applicants can stamp each decision. Provides a GDPR Art.22 compliant audit trail for AI-assisted hiring โ€” who decided what, when, and what data was used (hashed, never stored raw).

Content and publishing pipelines Any agent that drafts, approves, or publishes content can stamp each step. Useful when multiple AI agents collaborate and you need to prove attribution โ€” which agent wrote what, in what order.

DevOps and CI/CD Any agent that triggers deployments, merges branches, or rotates secrets can stamp each action. Provides a tamper-evident record of infrastructure changes made by autonomous agents.

Healthcare and medical AI Any diagnostic or triage agent can stamp each recommendation. Provides a HIPAA-compliant audit trail linking each AI output to a verifiable agent identity.

The common pattern in all cases:

[Agent makes decision]
โ†“
piqrypt_stamp_event    โ† sign + chain
โ†“
[Agent executes action]
โ†“
piqrypt_export_audit   โ† portable proof, verifiable
                          without PiQrypt installed

๐Ÿ› ๏ธ Available Tools

1. piqrypt_stamp_event

Sign an AI decision with cryptographic proof.

Parameters:

  • agent_id (string, required): Agent identifier
  • payload (object, required): Decision data
  • previous_hash (string, optional): Previous event hash for chaining

Example:

const event = await mcp.call('piqrypt_stamp_event', {
  agent_id: 'trading_bot_v1',
  payload: {
    action: 'buy',
    symbol: 'AAPL',
    quantity: 100,
    price: 150.25
  }
});

Returns:

{
  "version": "AISS-1.0",
  "agent_id": "trading_bot_v1",
  "timestamp": 1739382400,
  "nonce": "uuid-...",
  "payload": { ... },
  "previous_hash": "sha256:...",
  "signature": "base64:..."
}

2. piqrypt_verify_chain

Verify integrity of event chain.

Parameters:

  • events (array, required): Events to verify

Example:

const result = await mcp.call('piqrypt_verify_chain', {
  events: [event1, event2, event3]
});

Returns:

{
  "valid": true,
  "events_count": 3,
  "chain_hash": "sha256:...",
  "errors": []
}

3. piqrypt_export_audit

Export audit trail for compliance.

Parameters:

  • agent_id (string, required): Agent to export
  • certified (boolean): Request PiQrypt certification
  • output_format (string): json or pqz

Example:

const audit = await mcp.call('piqrypt_export_audit', {
  agent_id: 'trading_bot_v1',
  certified: true,
  output_format: 'json'
});

4. piqrypt_search_events

Fast search via SQLite index.

Parameters:

  • event_type (string, optional): Filter by type
  • from_timestamp (number, optional): Start time
  • to_timestamp (number, optional): End time
  • limit (number): Max results (default: 100)

Example:

const trades = await mcp.call('piqrypt_search_events', {
  event_type: 'trade_executed',
  from_timestamp: 1739300000,
  limit: 50
});

๐Ÿ“Š Visualize your audit trail (free)

Every stamped event is visible in Vigil โ€” PiQrypt's local monitoring dashboard.

pip install piqrypt
piqrypt start --tier free
# โ†’ http://localhost:8421

Free tier includes: chain health, VRS risk score, 7-day history, CRITICAL alerts. Upgrade to Pro for 90-day history, TrustGate governance, and post-quantum signatures.


๐Ÿ”’ Security Model

Process Isolation

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  MCP Client (any MCP-compatible client)     โ”‚
โ”‚  โ†“ JSON-RPC over stdio              โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  MCP Server (TypeScript/Node.js)    โ”‚  โ† No crypto here
โ”‚  โ†“ subprocess call                  โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  Python Bridge (bridge.py)          โ”‚
โ”‚  โ†“ invokes CLI                      โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  PiQrypt CLI (Python)               โ”‚
โ”‚  โ†“ uses                             โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  Core Crypto (aiss package)         โ”‚  โ† All crypto here
โ”‚  โ€ข Ed25519 / Dilithium3             โ”‚
โ”‚  โ€ข RFC 8785 canonical JSON          โ”‚
โ”‚  โ€ข Hash chains                      โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Guarantees

โœ… Private keys never exposed to MCP layer
โœ… All crypto in Python (Ed25519, Dilithium3)
โœ… Same security as CLI (process isolation)
โœ… RFC AISS-1.1 compliant (identical output)
โœ… Input validation before subprocess call


๐Ÿ“š Examples

Trading Bot (n8n)

[Webhook: price alert] 
    โ†“
[AI Decision: buy/sell?]
    โ†“
[PiQrypt MCP: stamp decision]  โ† Audit trail
    โ†“
[Execute trade API]
    โ†“
[Database: store proof]

HR Automation

[Upload CV]
    โ†“
[AI Agent: evaluate candidate]
    โ†“
[PiQrypt MCP: stamp evaluation]  โ† GDPR compliance
    โ†“
[Email HR team]

๐Ÿงช Testing

# Build
npm run build

# Test bridge
python3 src/python/bridge.py stamp '{"agent_id":"test","payload":{"action":"test"}}'

# Test MCP server (manual)
node dist/index.js
# Then send MCP request via stdin

๐Ÿ“– Documentation

  • MCP Setup Guide
  • Tools Reference
  • n8n Integration
  • Security Model
  • RFC Compliance

๐Ÿค Contributing

We welcome contributions! See CONTRIBUTING.md.


๐Ÿ“„ License

MIT License - see LICENSE


๐Ÿ”— Links

  • PiQrypt Core: https://github.com/piqrypt/piqrypt
  • MCP Protocol: https://modelcontextprotocol.io
  • n8n: https://n8n.io
  • Documentation: https://docs.piqrypt.com

Built with โค๏ธ by PiQrypt Inc.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source Codenpm Package

Details

Published April 18, 2026
Version 1.5.2
0 installs
Local Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol ยท Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
3
Installs
7.1
Security
No ratings yet
Local

Git

Free

by Modelcontextprotocol ยท Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
3
Installs
6.8
Security
No ratings yet
Local

Toleno

Free

by Toleno ยท Developer Tools

Toleno Network MCP Server โ€” Manage your Toleno mining account with Claude AI using natural language.

114
Stars
396
Installs
10.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace ยท Developer Tools

Create, build, and publish Python MCP servers to PyPI โ€” conversationally.

-
Stars
52
Installs
10.0
Security
5.0
Local

MarkItDown

Free

by Microsoft ยท Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

89.9K
Stars
13
Installs
8.5
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace ยท Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm โ€” conversationally

-
Stars
13
Installs
10.0
Security
5.0
Local