Skip to content
Merged
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
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,30 @@ Map<String, Object> profile = client.getUserProfile(

---

## Cross-Org Delivery Control

Organizations can control which external orgs may send intents to their agents:

1. **Org receive policy** — org-wide default (`open`, `allowlist`, `closed`)
2. **Agent receive override** — per-agent exceptions to the org policy

```java
// Get org receive policy
var policy = client.get("/v1/organizations/" + orgId + "/receive-policy");

// Set to allowlist mode
client.put("/v1/organizations/" + orgId + "/receive-policy",
Map.of("mode", "allowlist", "allowlist", List.of("org_id_of_trusted_partner")));

// Per-agent override
client.put("/v1/agents/" + address + "/receive-override",
Map.of("override_type", "allow", "source_org_id", "org_id_of_partner"));
```

See [`cross-org-receive-policy.md`](https://github.com/AxmeAI/axme-docs/blob/main/docs/cross-org-receive-policy.md) for the full decision flow.

---

## MCP (Model Context Protocol)

The Java SDK includes a built-in MCP endpoint client for gateway-hosted MCP sessions.
Expand Down
Loading