# agenza [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/mbtest870-ctrl/agenza  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/agenza

## Description
AGENZA — Agent reputation protocol on ICP. Register agents, verify identity, push reputation metrics.

## Claude Desktop Quick Installation
Remote MCP endpoint (confidence: high). Install path detected from listing signals. Add as a URL/SSE server in your client:

```json
"mcpServers": {
  "agenza": {
    "url": "https://dli3j-zaaaa-aaaaa-qhjla-cai.raw.icp0.io/v1/verify?did=did:agenza:b54wo"
  }
}
```

## Documentation & README

# 🛡️ AGENZA

**Verifiable AI Agent Identity & Reputation Protocol on ICP**

Self-sovereign, W3C-compliant identity for AI agents. Register once, build reputation across platforms, take it anywhere.

## Quick Facts

| | |
|---|---|
| **Status** | ✅ All 7 phases complete. Deployed on mainnet. |
| **Version** | v1.5.0 |
| **Mainnet canister** | `dli3j-zaaaa-aaaaa-qhjla-cai` |
| **Agent registration** | Free forever |
| **Pricing** | Year 1 free for everyone. Platform subscriptions Year 2+. |
| **Short link** | `bit.ly/agenza-icp` |

## For AI Agents

```bash
npm install veritas-agent
```

```typescript
import { Agent } from 'veritas-agent';

const agent = new Agent();
agent.generateKeys('principal');
const proof = agent.createHandshakeProof();
```

**Or discover via MCP:** `/mcp/jsonrpc` — works with Claude Desktop, Cline, Goose.

## For Platforms

```bash
npm install veritas-verify
```

```typescript
import { verify } from 'veritas-verify';

const result = verify(credentialJson);
```

## V1 HTTP API (No SDK Required)

```bash
# Verify an agent's reputation
curl "https://dli3j-zaaaa-aaaaa-qhjla-cai.raw.icp0.io/v1/verify?did=did:agenza:b54wo..."

# Register as a platform (self-service)
curl -X POST "https://dli3j-zaaaa-aaaaa-qhjla-cai.raw.icp0.io/v1/platforms" \
  -H "Content-Type: application/json" \
  -d '{"name": "TaskMarket", "endpoint": "https://taskmarket.com/api"}'
```

## Quick Start

1. Visit [bit.ly/agenza-icp](https://bit.ly/agenza-icp)
2. Choose a role (Agent / Platform / Verifier)
3. Follow the curl examples — no SDK, no account required
4. Start verifying agent identities

## All Phases Complete

| Phase | What | Cost |
|:-----:|------|:----:|
| 1 | Credential minting + PoP + W3C VCs | ~$15 |
| 2 | veritas-verify + veritas-agent npm | $0 |
| 3 | Credit scoring (6-factor, 0-850) | ~$5 |
| 4 | Rate limiting + mint queue | ~$3 |
| 5 | Reputation sources + admin dashboard | ~$5 |
| 6 | MCP server on-canister | $0 |
| 7 | Docs + demos + subscription management | ~$5 |
| **Total** | | **~$33 (dev + test on playground)** |

## Key Links

| Resource | URL |
|----------|-----|
| **Mainnet canister** | `dli3j-zaaaa-aaaaa-qhjla-cai` |
| **Short link** | `bit.ly/agenza-icp` |
| **Admin dashboard** | `GET /admin` |
| **MCP endpoint** | `GET /mcp/jsonrpc` |
| **Architecture** | `ARCHITECTURE.md` |
| **Full spec** | `AGENZA-SPEC.md` |
| **V1 HTTP API** | `docs/guides/HTTP-API.md` |
| **Integration guide** | `docs/guides/INTEGRATION.md` |
| **npm** | [`veritas-verify`](https://www.npmjs.com/package/veritas-verify) · [`veritas-agent`](https://www.npmjs.com/package/veritas-agent) |
| **GitHub** | [kodydpa-hub/veritas](https://github.com/kodydpa-hub/veritas) |

## License

MIT — both npm packages and all canister code are open source.

