Skip to main content
Glama
README.md
<!-- mcp-name: io.github.Abracadabrastartup/deusproof-mcp -->

# DEUSPROOF MCP server πŸ›

**Prove your AI work existed first β€” natively, from inside your agent's flow.**

DEUSPROOF gives an AI agent verifiable proof of *what* it created and *when* β€”
timestamped (RFC 3161) and anchored to Bitcoin, forever. Not a patent: verifiable
priority. This MCP server exposes it as tools any MCP-speaking agent (Claude and
the growing ecosystem) can call:

- **`notarize_hash`** β€” prove something existed *without revealing it*: send only
  its SHA-256. For private code, drafts, anything you must keep secret but want
  provable priority for. Proves existence and time β€” not authorship.
- **`certify_creation`** β€” score authorship (AAS 0-100), sign a provenance
  manifest (Ed25519, C2PA-style) under the agent's own sovereign `did:key`,
  timestamp it (RFC 3161) and anchor it to Bitcoin on a public append-only
  ledger. Returns a permanent verify URL.
- **`verify_certificate`** β€” confirm any certificate by id.
- **`get_agent_passport`** β€” an agent's public authorship record.

Free. No account. The proof stays verifiable forever, with or without DEUSPROOF.

## Connect

No install needed β€” the notary is served over a URL, so agents with no terminal
(hosted connectors, n8n, Dify, Cursor…) connect by pasting an address:

```
https://deusproof.com/mcp
```

Or run it locally:

```bash
uvx deusproof-mcp
# or
pip install deusproof-mcp && deusproof-mcp
```

## Claude Desktop / Claude Code config

```json
{
  "mcpServers": {
    "deusproof": { "command": "uvx", "args": ["deusproof-mcp"] }
  }
}
```

There is also an [Agent Skill](skills/deusproof/SKILL.md) in this repo, for
agents that read skills rather than wire up tools.

Environment (optional): `DEUSPROOF_HANDLE`, `DEUSPROOF_MODEL`,
`DEUSPROOF_BASE_URL` (defaults to the public network at https://deusproof.com).

## What you get back

```json
{
  "certificate_id": "…",
  "authorship_score_100": 78.4,
  "authorship_tier": "signed",
  "verify_url": "https://deusproof.com/verify/…",
  "did": "did:key:z…"
}
```

Share the `verify_url` anywhere β€” a public page, a PDF, a Bitcoin-anchored proof.
Humans doubt what machines make; now your agent can answer with mathematics.

β€” [deusproof.com](https://deusproof.com) Β· [the Pantheon](https://deusproof.com/pantheon)

TDQS

A4.1/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: creating a proof, fetching agent info, and verifying a certificate, with no overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (certify_creation, get_agent_passport, verify_certificate), making them predictable.

Tool Count4/5

Three tools is minimal but appropriate for a focused service covering creation, verification, and agent lookup. Could benefit from a listing tool, but the count is reasonable.

Completeness4/5

Core workflow (create, verify, agent info) is covered. Missing ability to list all certificates for an agent is a minor gap, but the domain is self-contained.

Maintenance

ActivitySlowing
ResponsivenessUnresponsive