Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ GitHub provides a "Cite this repository" button in the sidebar (powered by [`CIT
```bibtex
@misc{adp2026,
title = {Agent Decision Protocol: An Open Governance Framework for Autonomous AI Agents},
author = {Bromberger, Florian},
author = {Brobst, Florian},
year = {2026},
url = {https://github.com/OpenAgentGovernance/agent-decision-protocol},
note = {Version 0.3.0}
Expand Down
3 changes: 2 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ This security policy covers:

| Version | Supported |
|---------|-----------|
| 0.1.x | ✅ Current |
| 0.3.x | ✅ Current |
| < 0.3 | ❌ Unsupported |

## Security Considerations in ADP

Expand Down
13 changes: 12 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The `src/` directory contains a complete TypeScript SDK:
| `src/core/` | Core logic: `classify()`, `authorize()`, `evaluatePolicy()`, `generateTraceId()`, `hashTrace()`, `verifyChain()` |
| `src/validators/` | AJV-based schema validators for all document types |
| `src/builders/` | Fluent API builders: `TraceEventBuilder`, `PolicyBuilder`, `AgentRegistryBuilder` |
| `src/__tests__/` | 60 tests covering all matrix cells, overrides, and edge cases |
| `src/__tests__/` | 90 tests covering all matrix cells, overrides, edge cases, and the MCP server |

### Usage

Expand All @@ -46,6 +46,17 @@ import {
} from '@adp/core';
```

## MCP Server (v0.3)

An MCP (Model Context Protocol) server wraps the SDK so any MCP-compatible AI assistant can call ADP governance directly. Run it with `npx adp-mcp` (or `npm run mcp:dev`).

| Surface | Items |
|---------|-------|
| Tools (8) | `adp_classify`, `adp_authorize`, `adp_evaluate_policy`, `adp_log_trace`, `adp_validate`, `adp_register_agent`, `adp_add_policy`, `adp_verify_chain` |
| Resources (5) | `adp://registry`, `adp://policies`, `adp://traces`, `adp://matrix`, `adp://specs/{name}` |

Inputs are validated with Zod; session state lives in an in-memory store with SHA-256 hash-chained traces. See the [main README](../README.md) for Claude Desktop setup.

## Examples

See the [examples/](../examples/) directory for schema-validated integration examples.
Expand Down
Loading