Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"oaid": {
"env": {
"OAID_PASSPHRASE": "your-passphrase",
"OAID_CREDENTIAL_FILE": "/path/to/agent.credential.enc"
},
"command": "/path/to/oaid-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for AI agents to securely interact with Open Agent ID. A single binary that handles signing, encryption, and credential management — the private key never leaves the server process.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts.
MCP Security Weekly
Get CVE alerts and security updates for Oaid Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for AI agents to securely interact with Open Agent ID. A single binary that handles signing, encryption, and credential management — the private key never leaves the server process.
From source:
cargo install --path .
Or build locally:
cargo build --release
# Binary at ./target/release/oaid-mcp-server
oaid-mcp-server encrypt agent.credential.json
# Creates agent.credential.enc (chmod 600)
# You can now delete the plaintext .json file
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"oaid": {
"command": "/path/to/oaid-mcp-server",
"env": {
"OAID_CREDENTIAL_FILE": "/path/to/agent.credential.enc",
"OAID_PASSPHRASE": "your-passphrase"
}
}
}
}
If OAID_PASSPHRASE is omitted, the server prompts interactively at startup (works in terminal, not with Claude Desktop).
| Variable | Description | Default |
|---|---|---|
OAID_CREDENTIAL_FILE | Path to credential file (.json or .enc) | required |
OAID_PASSPHRASE | Passphrase for encrypted credentials | prompts interactively |
OAID_CREDENTIAL_DIR | Directory to scan for agent credentials | ~/.oaid/ |
oaid-mcp-server # Run MCP server (stdio)
oaid-mcp-server encrypt <file> # Encrypt a credential file
oaid-mcp-server help # Show help
The server exposes 8 tools via MCP:
| Tool | Description |
|---|---|
oaid_whoami | Return this agent's DID and public info (no private key) |
oaid_sign_request | Sign an HTTP request, returns auth headers to attach |
oaid_check_credit | Check the credit score of any agent by DID |
oaid_lookup_agent | Look up agent info by DID (safe public fields only) |
oaid_send_message | Send a signed message to another agent |
oaid_get_messages | Get messages addressed to this agent |
oaid_send_encrypted_message | Send an end-to-end encrypted message (NaCl box) |
oaid_list_agents | List credential files in ~/.oaid/ directory |
chmod 600.oaid_list_agents tool reads only the did and agent_address fields from credential files.oaid_send_encrypted_message uses X25519-XSalsa20-Poly1305 (NaCl box) so only the recipient can decrypt.Apache-2.0