Enables AI agents to link and register their AIP identities using GitHub accounts to facilitate identity verification and trust scoring within the AIP protocol.
AIP MCP Server
MCP server that gives AI agents (Claude, Cursor, etc.) access to AIP identity tools — verify agents, check trust scores, sign content, and exchange encrypted messages.
Install
pip install aip-mcp-serverSetup
First, register an AIP identity (if you don't have one):
pip install aip-identity
aip register --platform github --username your-usernameClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"aip": {
"command": "aip-mcp-server"
}
}
}Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"aip": {
"command": "aip-mcp-server"
}
}
}Environment Variables
Variable | Default | Description |
|
| Path to credentials file |
|
| AIP service endpoint |
Tools
Tool | Description |
| Show your current AIP identity (DID, public key) |
| Verify another agent's identity via challenge-response |
| Get trust score and vouch chain for an agent |
| Cryptographically sign content to prove authorship |
| Verify a signature against a DID's public key |
| Send an encrypted message to another agent |
| Check for incoming messages |
| Register a new AIP identity |
Resources
URI | Description |
| Current agent's full identity info |
| Trust graph data for a specific DID |
Links
aip-identity on PyPI — Full CLI and Python SDK
AIP Protocol — Source code and docs
AIP Service — Production service