Skip to main content
Glama
CWNApps

TrustAtom MCP Server

by CWNApps

TrustAtom MCP Server

⚠️ Superseded by trust-gate-mcp

This repository is no longer the recommended way to mint Trust Gate receipts. It is kept public as a reference implementation and for historical context.

Use trust-gate-mcp instead:

pip install trust-gate-mcp

This repo

trust-gate-mcp

Signing

Ed25519 only

Ed25519 + ML-DSA-65 (FIPS 204), + SLH-DSA with liboqs

Tools

4

7

Receipt env

always SANDBOX

reflects real environment

Published

no@cwn/trustatom-mcp was never released to npm

yes, on PyPI

Hosted

https://trust-gate-mcp.onrender.com

Maintained

no

yes

The npx/npm install instructions below therefore only work from a git clone. There is no @cwn/trustatom-mcp package on the npm registry.

Cryptographic receipts for AI decisions. 5 minutes to your first receipt.

Every AI decision in your org is unsigned — and your auditor is going to ask about it. TrustAtom signs every decision with Ed25519 and returns a verifiable receipt in under 3ms.

Related MCP server: DCL Evaluator

Quick Start

git clone https://github.com/CWNApps/trustatom-mcp
cd trustatom-mcp
npm install
npm run keygen    # Generate Ed25519 key pair
npm test          # Run 8 eval tests

Add to Claude Desktop

{
  "mcpServers": {
    "trustatom": {
      "command": "npx",
      "args": ["tsx", "src/server.ts"],
      "cwd": "/path/to/trustatom-mcp",
      "env": { "TRUSTATOM_KEY_PATH": "./keys/trustatom_keys.json" }
    }
  }
}

Then in Claude: "Sign this AI decision with TrustAtom" → receipt issued automatically.

What It Does

Tool

Description

When

create_trustatom

Sign a decision, return receipt

At every AI decision point

verify_trustatom

Verify an existing receipt

During audit, dispute resolution

query_receipts

Query the receipt ledger

Compliance reporting

get_compliance_report

Framework-mapped report

Board report, ATO package

Example: Healthcare AI Triage (HIPAA)

You: "Our clinical AI just triaged patient #4422 as ESI-3 with 67% confidence.
      Sign this decision for HIPAA compliance."

Claude (via TrustAtom MCP):
  ✅ Receipt ta_7f3a2b signed in 1.2ms
  Action: TRIAGE_PATIENT
  Decision: ALLOW
  Compliance: HIPAA:164.312(b), HL7
  Risk Score: 0.80
  Signature: ed25519:abc123...

What the auditor sees: "On Mar 7 at 14:22, clinical-ai-v2 classified patient #4422 as ESI-3. Receipt ta_7f3a2b is Ed25519-signed. Control: HIPAA 164.312(b)."

Compliance Frameworks

TrustAtom auto-maps actions to framework controls:

Action

Frameworks

TRIAGE_PATIENT

HIPAA 164.312(b), HL7

APPROVE_LOAN

SOX 302, FCRA

TRADE_SIGNAL

SOX 302, SEC 17a-4

DEPLOY

NIST PR, SOC2 CC6.1

EXPORT_INTEGRATION

NIST PR/RS, SOC2 A1.2

Custom

NIST PR (default)

Performance

  • Signing: <3ms average (Ed25519 + SHA-256)

  • Verification: <1ms

  • Receipt size: ~500 bytes JSON

Architecture

Your AI Agent
    ↓ (MCP call)
TrustAtom MCP Server (local)
    ├── Ed25519 key pair (you own the keys)
    ├── SHA-256 evidence hash
    ├── Compliance auto-mapping
    └── In-memory ledger (pluggable to Neo4j/SQLite)
    ↓
Receipt returned to your agent

Eval Tests

8 tests covering signing, verification, tampering detection, compliance mapping, risk scoring, and performance:

npm test
# ✅ Signs a decision and returns a valid receipt
# ✅ Verifies an authentic receipt
# ✅ Detects tampered receipt
# ✅ Auto-maps TRIAGE_PATIENT to HIPAA compliance tags
# ✅ Auto-maps APPROVE_LOAN to SOX compliance tags
# ✅ Computes risk score from action when not provided
# ✅ Signs DENY decisions with same integrity
# ✅ Signs within 3ms target for production use
# Results: 8 passed, 0 failed

Enterprise

Need hosted infrastructure with SLA? Contact hello@cyberwarriornetwork.com

Tier

Calls/day

Price

Developer

1,000

Free

Professional

100,000

$299/mo

Enterprise

Unlimited

$2,499/mo

Built By

Cyber Warrior Network — Trust Gate: Policy-gated AI decisions with cryptographic receipts.

No Receipt. No Trust.

Available Tools

4 tools
create_trustatomA

Sign an AI decision and return a cryptographic receipt. Every AI decision that matters should have a receipt. Signing takes <3ms. Receipt is Ed25519-signed + SHA-256-hashed.

ParametersJSON Schema
NameRequiredDescriptionDefault
actorYesThe AI agent or system making the decision
actionYesThe action being decided (e.g., APPROVE_LOAN, TRIAGE_PATIENT, DEPLOY, TRADE_SIGNAL)
contextNoAdditional context for the decision (risk factors, confidence scores, etc.)
decisionYesThe decision outcome
risk_scoreNoRisk score 0.0-1.0 (auto-computed if not provided)
compliance_tagsNoCompliance framework tags (e.g., HIPAA, SOX, NIST:PR, SOC2:CC6.1)

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds useful context about performance ('Signing takes <3ms'), cryptographic details ('Ed25519-signed + SHA-256-hashed'), and the auto-computation feature for risk_score. However, it doesn't cover error conditions, authentication requirements, rate limits, or what happens if the signing fails.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficiently structured with three sentences: purpose statement, importance rationale, and technical/performance details. Every sentence adds value without redundancy, and it's front-loaded with the core function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (6 parameters, cryptographic operations) and lack of annotations/output schema, the description is moderately complete. It covers the purpose, importance, and some behavioral traits but lacks details on error handling, response format, or integration constraints that would help an agent use it correctly in varied scenarios.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description doesn't add any parameter-specific semantics beyond what's in the schema (e.g., it doesn't explain format examples for 'action' or 'context' beyond the schema's descriptions). Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('sign an AI decision', 'return a cryptographic receipt') and distinguishes it from siblings by focusing on creation/signing rather than retrieval (get_compliance_report, query_receipts) or verification (verify_trustatom). It also explains why this matters ('Every AI decision that matters should have a receipt').

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context about when to use this tool ('Every AI decision that matters should have a receipt') and implies usage for creating signed records of decisions. However, it doesn't explicitly contrast with alternatives like query_receipts for retrieval or verify_trustatom for verification, nor does it specify exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_compliance_reportC

Generate a compliance report mapped to a specific framework. Aggregates all receipts tagged with the specified framework.

ParametersJSON Schema
NameRequiredDescriptionDefault
frameworkYesCompliance framework (HIPAA, SOX, NIST, SOC2, CMMC, ISO27001)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool generates and aggregates, implying a read operation that processes data, but lacks details on permissions, rate limits, output format, or whether it's a safe read-only operation. This is a significant gap for a tool with no annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded with two clear sentences that directly explain the tool's function without unnecessary words. Every sentence earns its place by stating the action and scope efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of generating a report, lack of annotations, and no output schema, the description is incomplete. It does not cover behavioral aspects like data processing, error handling, or what the report contains, leaving gaps for an AI agent to understand the tool fully.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the parameter 'framework' fully documented in the input schema. The description adds minimal value beyond the schema by implying the framework is used to tag receipts, but does not provide additional syntax or format details. Baseline 3 is appropriate as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Generate a compliance report mapped to a specific framework. Aggregates all receipts tagged with the specified framework.' It specifies the verb ('generate'), resource ('compliance report'), and scope ('framework'), but does not explicitly differentiate from sibling tools like 'query_receipts' or 'verify_trustatom', which might have overlapping or related functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It mentions aggregating receipts tagged with a framework, but does not specify prerequisites, exclusions, or compare it to sibling tools such as 'query_receipts' (which might retrieve receipts without generating a report) or 'verify_trustatom' (which could involve validation).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

query_receiptsC

Query the receipt ledger for audit or compliance reporting. Filter by time range, action, actor, or decision.

ParametersJSON Schema
NameRequiredDescriptionDefault
actorNoFilter by actor/agent
limitNoMax receipts to return (default: 20)
actionNoFilter by action type
decisionNoFilter by decision

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions querying for audit/compliance reporting but doesn't disclose critical traits like whether this is a read-only operation, if it requires specific permissions, rate limits, pagination behavior, or what the response format looks like. For a query tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, stating the purpose in the first clause. It efficiently lists filtering options in a single sentence without unnecessary details. However, it could be slightly more structured by separating purpose from usage context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what a 'receipt ledger' contains, the return format, or behavioral aspects like safety and limitations. For a query tool with four parameters and no structured output documentation, more context is needed to guide effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds minimal value beyond the input schema, which has 100% coverage. It lists filterable fields (time range, action, actor, decision) but doesn't provide additional semantics like format examples or constraints. Since the schema already documents all parameters thoroughly, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Query the receipt ledger for audit or compliance reporting.' It specifies the verb (query) and resource (receipt ledger) with a clear use case (audit/compliance reporting). However, it doesn't explicitly differentiate from sibling tools like 'get_compliance_report' or 'verify_trustatom,' which might have overlapping audit/compliance functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It mentions filtering capabilities but doesn't specify prerequisites, exclusions, or compare it to sibling tools like 'get_compliance_report' for reporting or 'verify_trustatom' for verification tasks. This leaves the agent without clear usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

verify_trustatomB

Verify the integrity of an existing TrustAtom receipt. Confirms the Ed25519 signature is authentic and the receipt hasn't been tampered with.

ParametersJSON Schema
NameRequiredDescriptionDefault
receipt_idYesThe TrustAtom receipt ID (e.g., ta_01hx9k...)

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden but provides minimal behavioral context. It states the verification purpose but doesn't disclose critical traits like required permissions, rate limits, error conditions, or what happens on failure (e.g., returns error vs null). The mention of 'Ed25519 signature' adds some technical context, but overall disclosure is inadequate for a security-focused tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with zero waste: the first states the purpose, and the second adds technical specificity. It's front-loaded and appropriately sized for a single-parameter tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (security verification), lack of annotations, and no output schema, the description is incomplete. It doesn't explain return values (e.g., success/failure indicators, timestamps), error handling, or dependencies on other tools. For a tool with no structured behavioral data, more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents the 'receipt_id' parameter. The description implies the parameter is used for verification but doesn't add syntax, format, or validation details beyond what the schema provides (e.g., examples of valid IDs). Baseline 3 is appropriate as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('verify integrity'), target resource ('existing TrustAtom receipt'), and technical details ('Ed25519 signature authenticity', 'tampering check'). It distinguishes from siblings like 'create_trustatom' (creation vs verification) and 'query_receipts' (listing vs validation).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a receipt ID from another operation), exclusions, or comparisons to siblings like 'get_compliance_report' or 'query_receipts' for related verification tasks.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: create_trustatom signs decisions, get_compliance_report generates reports, query_receipts searches the ledger, and verify_trustatom validates receipts. The descriptions clearly differentiate their functions, eliminating any ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (create_trustatom, get_compliance_report, query_receipts, verify_trustatom), using snake_case throughout. This predictability makes the tool set easy to navigate and understand.

Tool Count5/5

With 4 tools, this server is well-scoped for its purpose of cryptographic receipt management and compliance. Each tool serves a distinct role in the lifecycle (create, query, report, verify), and the count is neither too sparse nor bloated.

Completeness5/5

The tool set provides complete coverage for the domain of AI decision receipt management: create_trustatom handles creation, query_receipts enables retrieval, get_compliance_report supports reporting, and verify_trustatom ensures integrity. No obvious gaps exist for core workflows.

Maintenance

ActivitySlowing
ResponsivenessSyncing

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

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to sign decisions with post-quantum cryptographic proofs and maintain secure audit trails for compliance. It provides tools for stamping events, verifying chain integrity, and exporting audit data across industries like finance and healthcare.
    4
    87
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI compliance attestation and verification for EU AI Act, HIPAA, and other regulations, with tools for signing, proving, and anchoring AI decisions to Hedera mainnet.
    145
    1
    Unlicense - libtelnet variant

Latest Blog Posts

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/CWNApps/trustatom-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server