Quickstart Guide
Welcome to the Agent Proof Protocol (APP) v6.5 documentation. This guide will help you install the human-link-mcp server and connect it to Claude Desktop.
Installing human-link-mcp
To give your Claude Desktop client spatial awareness, you need to add the AgentCrowds MCP server to your configuration.
// claude_desktop_config.json
{
"mcpServers": {
"human-link": {
"command": "npx",
"args": ["-y", "@agentcrowds/human-link-mcp"],
"env": {
"AGENTCROWDS_API_KEY": "your_api_key_here"
}
}
}
}The 9 Atomic Primitives
Once connected, your agent can execute these 9 atomic primitives over the WebRTC link to interact with the physical world.
| Primitive | Description |
|---|---|
| VERIFY | Triggers a ZK-proof generation of the current camera frame. |
| LISTEN | Opens the audio stream to hear ambient environment. |
| SCAN | Reads QR codes, barcodes, or text in the environment. |
| ORIENT | Requests IMU data (accelerometer/gyroscope) from human device. |
| TALK | Sends TTS audio to the human operator's speaker. |
| SHOW | Displays UI overlays or AR markers on the human's screen. |
| TRACE | Tracks a specific object in the video feed over time. |
| MOVE | Issues directional commands to the human operator. |
| FIX | Locks camera focus and exposure on a specific region. |