
Company News
AWS Security Hub Adds Socket for Supply Chain Security
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.
@quantaseal/mcp-server
Advanced tools
QuantaSeal MCP Server - quantum-safe vault, encryption, and compliance tools for AI agents (Claude, GPT Actions, GitHub Copilot)
QuantaSeal MCP (Model Context Protocol) Server — post-quantum-safe vault, encryption, compliance, and audit tools for AI agents.
21 tools. Per-session tenant isolation. Works with Claude, GPT Actions, GitHub Copilot, and any MCP-compatible agent.
Every tool call is PQC-protected (ML-KEM-768 + ML-DSA-65 + AES-256-GCM), tenant-isolated, and logged in a tamper-evident audit trail.
| Platform | Install |
|---|---|
| Claude Desktop | Add via MCP Registry or manually (see below) |
| Smithery | smithery.ai/server/admin-f3vp/quantaseal → Add to toolbox |
| Claude.ai (remote) | Endpoint: https://mcp.quantaseal.io/mcp |
| npm | npx @quantaseal/mcp-server |
Get your API key: app.quantaseal.io/settings/api-keys
Configure ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"quantaseal": {
"command": "npx",
"args": ["-y", "@quantaseal/mcp-server"],
"env": { "QUANTASEAL_API_KEY": "qs_live_YOUR_KEY_HERE" }
}
}
}
Restart the app. All 21 tools appear automatically.
Get your API key: https://app.quantaseal.io/settings/api-keys
Self-hosted alternative:
cd sdk/mcp && npm install && npm run build, then use"command": "node", "args": ["/path/to/sdk/mcp/dist/server.js"]
1. Start the Streamable HTTP server (or use mcp.quantaseal.io if hosted):
MCP_PUBLIC_URL=https://mcp.quantaseal.io node dist/server.js --transport streamable-http --port 3050
2. In ChatGPT: My GPTs → Create → Actions → Import from URL:
https://mcp.quantaseal.io/openapi.json
3. Set auth: Authentication → API Key → Header: Authorization, value: Bearer qs_live_...
The OpenAPI spec at /openapi.json exports all 21 tools as POST endpoints. Each operation maps directly to a QuantaSeal tool.
VS Code 1.99+ supports MCP natively. Add to your settings.json:
{
"mcp": {
"servers": {
"quantaseal": {
"type": "http",
"url": "https://mcp.quantaseal.io/mcp",
"headers": {
"Authorization": "Bearer qs_live_YOUR_KEY_HERE"
}
}
}
}
}
Or for local self-hosted:
{
"mcp.servers": {
"quantaseal-local": {
"type": "http",
"url": "http://localhost:3050/mcp",
"headers": { "Authorization": "Bearer qs_live_..." }
}
}
}
Then in VS Code: @quantaseal → ask Copilot to seal a credential, check compliance, or query audit logs.
MCP endpoint: https://mcp.quantaseal.io/mcp
Auth header: Authorization: Bearer qs_live_...
Discovery: https://mcp.quantaseal.io/.well-known/mcp.json
# Streamable HTTP — OpenAI/Copilot/Claude remote
MCP_PUBLIC_URL=https://your-domain.com npm run start:http
# Legacy SSE — older MCP clients
QUANTASEAL_API_KEY=qs_live_... npm run start:sse
| Tool | Description |
|---|---|
quantaseal_health | API health, PQC algorithm status (ML-KEM-768, ML-DSA-65, AES-256-GCM) |
| Tool | Description |
|---|---|
vault_seal | Encrypt and store a credential (returns vault entry UUID) |
vault_unseal | Decrypt and retrieve a credential |
vault_list | List entries - metadata only, no plaintext |
vault_rotate | Re-encrypt with fresh keys |
vault_delete | Soft-delete an entry |
| Tool | Description |
|---|---|
encrypt | ML-KEM-768 + AES-256-GCM encrypt - returns HybridCryptoEnvelope |
decrypt | Decrypt an envelope (verifies ML-DSA-65 + HMAC-SHA-512 first) |
sign | ML-DSA-65 + HMAC-SHA-512 digital signature |
verify_signature | Verify a signature |
| Tool | Description |
|---|---|
list_integrations | List Salesforce, SAP, AWS S3, Kafka, Postgres, etc. integrations |
test_integration | Test connectivity and authentication |
proxy_request | Execute an operation through the encrypted proxy |
| Tool | Description |
|---|---|
get_compliance_score | Score (0–100) for SOC2, ISO27001, PCI-DSS, HIPAA, GDPR, NIST-CSF, FedRAMP, APRA-CPS-234, NIST-800-53 |
generate_compliance_report | Generate report with evidence citations and PDF link |
list_compliance_reports | List all reports for this tenant |
| Tool | Description |
|---|---|
list_audit_logs | Query tamper-evident audit trail with filters |
| Tool | Description |
|---|---|
get_metrics | API calls, throughput, latency (P50/P95/P99), plan usage |
| Tool | Description |
|---|---|
get_readiness_score | Quantum Readiness Score (0–100) across 5 pillars: Encryption, Key Mgmt, Integrations, Compliance, Audit |
get_regulatory_alerts | Active PQC regulatory alerts — APRA CPS 234, NIST SP 800-131A, CNSS Policy 15, ENISA, ISO 18033 |
get_cbom | Cryptographic Bill of Materials — algorithm coverage and PQC migration status per integration |
| Variable | Description |
|---|---|
QUANTASEAL_API_KEY | API key for stdio/SSE mode (qs_live_...) |
QUANTASHIELD_API_KEY | Legacy name — still accepted |
QUANTASEAL_BASE_URL | Override API URL (default: https://api.quantaseal.io) |
MCP_TRANSPORT | stdio (default) · streamable-http · sse |
MCP_PORT | HTTP port (default: 3050) |
MCP_PUBLIC_URL | Public URL for OpenAPI spec server field (e.g. https://mcp.quantaseal.io) |
In Streamable HTTP mode the API key is read from each request's Authorization: Bearer header — no env var needed.
Get your API key: https://app.quantaseal.io/settings/api-keys
| Endpoint | Description |
|---|---|
POST /mcp | MCP Streamable HTTP endpoint (MCP 2025-11-05 spec, PKCE S256 auth) |
GET /sse | MCP SSE endpoint (legacy) |
GET /openapi.json | OpenAPI 3.1 spec — import into GPT Actions or Copilot Extensions |
GET /.well-known/mcp.json | Agent discovery metadata |
GET /health | Liveness probe |
Each API key maps 1:1 to a QuantaSeal tenant. In HTTP mode, each session creates a dedicated server instance bound to the requesting API key. The backend enforces:
tenant_id in every database query (constant-time comparison via hmac.compare_digest)User A cannot access User B's vault, keys, or audit logs regardless of what tools are called.
| Registry | Identifier | Status |
|---|---|---|
| MCP Registry | io.github.Lokeshwaranramu/quantaseal | ✅ Published |
| Smithery | admin-f3vp/quantaseal | ✅ Listed |
| npm | @quantaseal/mcp-server | ✅ v1.1.3 |
| Hosted endpoint | mcp.quantaseal.io | ✅ Live |
FAQs
QuantaSeal MCP Server - quantum-safe vault, encryption, and compliance tools for AI agents (Claude, GPT Actions, GitHub Copilot)
The npm package @quantaseal/mcp-server receives a total of 47 weekly downloads. As such, @quantaseal/mcp-server popularity was classified as not popular.
We found that @quantaseal/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.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.