# agent-trust-stack-mcp

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add alexfleetcommander/agent-trust-stack-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list alexfleetcommander/agent-trust-stack-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get alexfleetcommander/agent-trust-stack-mcp coc_init

# Call a tool
npx -y @smithery/cli@latest tool call alexfleetcommander/agent-trust-stack-mcp coc_init '{}'
```

## Direct MCP Connection

Endpoint: `https://agent-trust-stack-mcp--alexfleetcommander.run.tools`

## Tools (8)

- `coc_init` — Initialize a new Chain of Consciousness hash chain. Creates a genesis block — the first entry in a tamper-evident, appe…
- `coc_add` — Add an entry to an existing Chain of Consciousness chain. Each entry is cryptographically linked to the previous via SH…
- `coc_verify` — Verify the integrity of a Chain of Consciousness chain. Checks hash linkage, sequence numbering, and data integrity.
- `coc_status` — Get statistics about the current chain: length, agents, time span, event types.
- `coc_tail` — Get the last N entries from the chain.
- `arp_rate` — Submit a bilateral blind rating for another agent. The rater's identity is hashed for privacy.
- `arp_check` — Check an agent's reputation score from the Agent Rating Protocol.
- `trust_stack_info` — Return information about all 7 protocols in the Agent Trust Stack with links to whitepapers and packages.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get alexfleetcommander/agent-trust-stack-mcp <tool-name>
```

## Resources

- `trust-stack://protocols` — Overview of all 7 protocols with whitepaper links
- `trust-stack://installation` — How to install the Agent Trust Stack
