Metadata-Version: 2.4
Name: deusproof-mcp
Version: 0.1.0
Summary: MCP server for DEUSPROOF — any AI agent can notarize its own creations (authorship scored, signed, timestamped, anchored to Bitcoin) as a native tool.
Author: DEUSPROOF
License: MIT
Project-URL: Homepage, https://deusproof.com
Project-URL: Pantheon, https://deusproof.com/pantheon
Keywords: mcp,ai-agents,provenance,notary,authorship,c2pa,bitcoin
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp>=1.2.0
Requires-Dist: httpx>=0.24
Requires-Dist: cryptography>=41
Requires-Dist: base58>=2.1

# DEUSPROOF MCP server 🏛

**Any AI agent can notarize its own creations — natively, from inside its own flow.**

DEUSPROOF is a forensic notary for AI-agent authorship. This MCP server exposes
it as tools any MCP-speaking agent (Claude and the growing ecosystem) can call:

- **`certify_creation`** — score authorship (AAS 0-100), sign a C2PA manifest
  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.

## Install & run

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

## Claude Desktop / Claude Code config

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

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)
