Skip to main content
Glama
CSOAI-ORG

Trust Chain MCP

MCP Scorecard: 90/100

Trust Chain MCP

MEOK AI Labs EU AI Act License PyPI mcp-name: io.github.CSOAI-ORG/trust-chain-mcp

Trust Chain

PyPI Python

By MEOK AI Labs — Trust chain and attestation management by MEOK AI Labs.

Trust chain and attestation management by MEOK AI Labs

Trust chain and attestation management by MEOK AI Labs.


šŸš€ Quick Start

Related MCP server: TrustAtom MCP Server

Quick Install

Client

Install

Claude Desktop

Install in Claude

Cursor

Install in Cursor

VS Code

Install in VS Code

Windsurf

Install in Windsurf

Docker

docker run -p 8000:8000 trust-chain-mcp

pip

pip install trust-chain-mcp

Installation

# Install via pip
pip install trust_chain_mcp

# Or install via Smithery
npx -y @smithery/cli@latest install trust-chain-mcp --client claude

✨ Features

  • MCP protocol compliant

  • Easy installation

  • Well-documented API

  • Production-ready

  • Active maintenance

šŸ“– Documentation

šŸ›”ļø Compliance

This MCP server is built with EU AI Act compliance built-in:

  • āœ… Article 9 — Risk Management System

  • āœ… Article 13 — Transparency & Instructions for Use

  • āœ… Article 15 — Bias Detection & Testing

  • āœ… Article 26 — FRIA Support (where applicable)

  • āœ… Article 50 — AI Content Watermarking (where applicable)

Need help getting compliant? Book a free 15-min diagnostic →

šŸ¢ Enterprise

Need custom development, SLA guarantees, or white-label deployment?

  • Pro: $99/mo — Full MCP suite + EU AI Act tracking

  • Enterprise: $499/mo — Custom dev + SLA + Dedicated support

View Pricing → | Contact Sales →

šŸ¤ Part of the MEOK Ecosystem

This server is part of the MEOK AI Labs ecosystem — 300+ MCP servers for sovereign AI governance.

Domain

Purpose

councilof.ai

EU AI Act compliance marketplace

safetyof.ai

AI safety & monitoring

meok.ai

Sovereign AI platform

cobolbridge.ai

Legacy modernization

šŸ“œ License

MIT Ā© CSOAI-ORG


License

MIT — MEOK AI Labs


Pairs with MEOK Governance Suite

Build something that touches users? You need compliance. MEOK ships 38 governance MCPs that drop in alongside this tool — EU AI Act, DORA, NIS2, CRA, GDPR, ISO 42001, FDA SaMD, MDR, Basel, MiFID II, MiCA, COPPA, and more.

# One-shot install of the governance pack
npx meok-setup --pack governance

Free tier: 10 calls/day per MCP. Pro tier (Ā£79/mo): unlimited + cryptographically signed compliance attestations your auditor verifies independently.

→ Full catalogue: councilof.ai/catalogue → MEOK AI Labs: meok.ai

šŸ’ø Try MEOK in 30 seconds — instant buy ladder

Tier

Price

What you get

Stripe

Smoke test

Ā£1

Signed sample MCP-Hardening report + Article 50 PDF

https://buy.stripe.com/5kQ6oJ0xS3ce8sl7ew8k91j

Quick Kit

Ā£9

EU AI Act Article 50 implementation guide (C2PA + EU-Icon)

https://buy.stripe.com/5kQ6oJ0xS3ce8sl7ew8k91j

Founder Call

Ā£29

30-min 1-on-1 with the founder

https://buy.stripe.com/5kQ6oJ0xS3ce8sl7ew8k91j

Refundable. UK Stripe — VAT-clean. Builds on the 81-MCP MEOK fleet. Verify any signed report at https://meok.ai/verify.

Configuration

Add to your claude_desktop_config.json (Claude Desktop) or your MCP client config:

{
  "mcpServers": {
    "trust-chain-mcp": {
      "command": "uvx",
      "args": ["trust-chain-mcp"]
    }
  }
}

Or: pip install trust-chain-mcp then run the trust-chain-mcp command (stdio transport).

Examples

Once configured, ask your assistant, for example:

  • "Use create_trust_anchor to …"

  • "Use verify_chain to …"

  • "Use add_attestation to …"

Available Tools

5 tools
add_attestationC

Add an attestation (claim) to an existing trust anchor.

ParametersJSON Schema
NameRequiredDescriptionDefault
anchor_idYes
attester_idYes
claimYes
confidenceNo
evidenceNo
api_keyNo

TDQS

C2.7/5.0
Behavior2/5

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

The description indicates a mutation (add), but provides no further behavioral details. With no annotations present, the description should disclose side effects, permissions, idempotency, or error conditions. It lacks context such as whether the attestation overwrites duplicates, whether the anchor is modified, or any auth requirements.

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 a single concise sentence that front-loads the core action. It is not overly verbose, but it sacrifices informativeness for brevity. A slightly longer description with parameter hints would be more useful while still being concise.

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

Completeness1/5

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

Given the tool has 6 parameters with no schema descriptions, no annotations, and no output schema, the description is severely incomplete. It does not explain parameter usage, return value, or behavior beyond the basic action. The agent cannot infer correct usage from this alone.

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

Parameters1/5

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

The input schema has 0% description coverage, and the tool description adds no meaning to the parameters. Parameters like confidence, evidence, and api_key remain unexplained. The description fails to compensate for the missing schema descriptions, leaving the agent guessing their purpose and format.

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 action: add an attestation (claim) to an existing trust anchor. It uses a specific verb and resource, distinguishing it from sibling tools like create_trust_anchor which creates a new anchor, and revoke_trust which revokes trust.

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. There is no mention of prerequisites (e.g., anchor must exist) or when not to use it. The description implies the anchor must exist but does not state this explicitly or suggest checking with other tools.

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

create_trust_anchorC

Create a new trust anchor (root of trust) for an entity.

ParametersJSON Schema
NameRequiredDescriptionDefault
entity_idYes
entity_nameYes
trust_levelNo
metadataNo
api_keyNo

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description must carry the full burden of behavioral disclosure. It only states 'create' with no details on side effects, idempotency, permissions required, or what happens on duplicate entity_id. For a mutation tool, this is insufficient.

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

Conciseness3/5

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

The description is a single sentence, which is appropriately concise, but it sacrifices informativeness. It could incorporate key parameter details without becoming verbose.

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 tool's complexity (5 parameters, nested objects, no output schema), the description is incomplete. It fails to explain what a trust anchor is, how parameters interact, or what the return value is, leaving the agent without critical context.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not mention any of the 5 parameters (entity_id, entity_name, trust_level, metadata, api_key). The agent gets no help understanding the meaning, defaults, or constraints of these parameters.

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 action ('create') and the resource ('trust anchor'), adding domain context ('root of trust for an entity'). However, it does not differentiate from sibling tools like add_attestation, which might also create related entities.

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 (e.g., revoke_trust, verify_chain). There is no mention of prerequisites, scenarios, or when not to use it.

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

get_trust_scoreC

Calculate a composite trust score for an anchor based on its attestations.

ParametersJSON Schema
NameRequiredDescriptionDefault
anchor_idYes
api_keyNo

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It only states that the tool calculates a score, without mentioning whether it is read-only, authorization needs (api_key is optional but not explained), or any side effects.

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 a single sentence with no waste. However, it is extremely minimal and could benefit from more structure, such as separating purpose from usage notes.

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, an output schema, and the presence of sibling tools, the description is incomplete. It does not explain what the trust score output looks like, nor any preconditions or behavior beyond the basic calculation.

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

Parameters1/5

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

Schema description coverage is 0%, and the description adds no meaning beyond the schema. It does not explain the role of 'anchor_id' or 'api_key', leaving the agent without guidance on how to supply parameters correctly.

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 uses a specific verb 'Calculate' and clearly identifies the resource 'composite trust score for an anchor based on its attestations.' This distinguishes it from sibling tools like add_attestation, create_trust_anchor, revoke_trust, and verify_chain, which have different purposes.

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 given on when to use this tool versus alternatives. There is no mention of prerequisites, when-not to use, or context that helps an agent decide between this and siblings like verify_chain.

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

revoke_trustC

Revoke a trust anchor or attestation. This invalidates the chain.

ParametersJSON Schema
NameRequiredDescriptionDefault
target_idYes
reasonYes
revoked_byYes
api_keyNo

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description must disclose all behavioral traits. It mentions 'invalidates the chain,' hinting at a destructive action, but omits details like required permissions, reversibility, rate limits, or side effects. The disclosure is minimal.

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

Conciseness3/5

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

The description is a single sentence with no unnecessary wording, but it is too short to be informative. While concise, it sacrifices essential details, making it minimally acceptable.

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

Completeness1/5

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

Given 4 parameters (3 required), no output schema, and no annotations, the description is severely incomplete. It fails to explain key concepts (trust anchor, attestation, chain), the revocation process, or how parameters relate to each other, leaving the agent ill-equipped to use the tool correctly.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not explain any of the four parameters (target_id, reason, revoked_by, api_key). The parameter names alone are unclear (e.g., 'target_id' could refer to an anchor or attestation), so the agent gets no assistance in filling them correctly.

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 states 'Revoke a trust anchor or attestation' and indicates the effect 'invalidates the chain.' The verb and resource are clear, but it does not differentiate from sibling tools like add_attestation or create_trust_anchor, which may also involve trust operations.

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 (e.g., get_trust_score, verify_chain). There are no preconditions, warnings, or exclusions mentioned, leaving the agent without context for appropriate invocation.

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

verify_chainC

Verify the integrity of a trust chain by validating all attestations.

ParametersJSON Schema
NameRequiredDescriptionDefault
anchor_idYes
api_keyNo

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description must disclose behavioral traits. It states it validates attestations, but does not reveal whether the tool is read-only, what happens on invalid chains, or any side effects. Minimal transparency.

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

Conciseness3/5

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

The description is a single, front-loaded sentence, which is concise. However, it is under-specified; conciseness should not come at the expense of useful content.

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 low complexity (2 parameters, no output schema), the description should cover return value and parameter roles. It fails to do so, leaving the agent with insufficient information.

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

Parameters1/5

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

Schema description coverage is 0%, yet the description provides no information about the parameters (anchor_id, api_key). The agent gets no help understanding what these mean or how to use them.

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: 'Verify the integrity of a trust chain by validating all attestations.' It uses a specific verb and resource, and distinguishes from sibling tools like add_attestation or revoke_trust, which have different purposes.

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 on when to use this tool versus its siblings. It does not mention prerequisites, contexts where verification is appropriate, or when not to use it.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv1.0.0
    • First observedadd_attestation
    • First observedcreate_trust_anchor
    • First observedget_trust_score
    • First observedrevoke_trust
    • First observedverify_chain

TDQS

B3.2/5.0
Disambiguation5/5

Each tool has a distinct and clear purpose: creating a trust anchor, adding attestations, computing trust score, revoking trust, and verifying the chain. No two tools overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, such as 'create_trust_anchor' and 'verify_chain'. The naming is predictable and uniform.

Tool Count5/5

With 5 tools, the server is well-scoped for the domain of trust chain management. Each tool covers a fundamental operation without redundancy or excessive granularity.

Completeness4/5

The set covers core CRUD and lifecycle operations for trust anchors and attestations, including creation, attestation, scoring, revocation, and verification. However, it lacks list/read endpoints to retrieve existing anchors or attestations, which could be a minor gap in some workflows.

Maintenance

ActivityMaintained
ResponsivenessSyncing

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
    A
    quality
    B
    maintenance
    Provides cryptographic signing and verification for AI decisions to generate verifiable, Ed25519-signed receipts for compliance and auditing. It automatically maps AI actions to regulatory frameworks like HIPAA and SOX with high-performance, sub-3ms signing.
    4
    MIT

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/CSOAI-ORG/trust-chain-mcp'

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