Learn how to use Passkey for MCP identity management
https://cimd.v2n2x.com/clients/<client_id>.jsonpip install passkey-sdk
from passkey import PasskeyClient
client = PasskeyClient(client_id="<your_client_id>")
token = await client.authorize_mcp_server("https://mcp.example.com")npm install passkey-sdk
import { PasskeyClient } from 'passkey-sdk';
const client = new PasskeyClient({ clientId: '<your_client_id>' });
const token = await client.authorizeMcpServer('https://mcp.example.com');GEThttps://cimd.v2n2x.com/clients/<client_id>.jsonFetch CIMD document (public)
GEThttps://api.v2n2x.com/keys/<client_id>/jwks.jsonFetch JWKS public keys (public)
POSThttps://api.v2n2x.com/oauth/relayStart OAuth relay flow
GEThttps://api.v2n2x.com/oauth/code/<state>Poll for authorization code (25s long-poll)
Full API docs available in the dashboard after sign-in.