Remote OAuth
Hosted remote endpoint
https://keyid.ai/mcp
Remote-First MCP
KeyID exposes a hosted MCP endpoint at https://keyid.ai/mcp for Claude and Cursor connectors, plus a local stdio package when you want bring-your-own keys and the same registration session model.
Use the hosted endpoint first. Keep the local stdio package for developer-controlled identity and offline-style workflows.
Remote OAuth
https://keyid.ai/mcp
Local BYO keypair
{
"mcpServers": {
"keyid": {
"command": "npx",
"args": ["-y", "@keyid/agent-kit"]
}
}
}
Developer fallback
claude mcp add keyid -- npx -y @keyid/agent-kit
Hosted mode creates a managed KeyID install identity for the connector and stores the private key encrypted at rest, so signup sessions and browser continuity survive across chat sessions.
The core workflow is session-based: start one signup session per service, wait for the right artifact, save browser state, and close the session explicitly as completed or blocked.
Local mode keeps identity under your control. Reuse the same Ed25519 keypair across machines by setting KEYID_PUBLIC_KEY and KEYID_PRIVATE_KEY.
These prompts are written for chat-first workflows where the model should stay inside the KeyID MCP surface as long as possible.