@ktmcp-cli/authentiq
v1.0.0
Published
Production-ready CLI for Authentiq Identity API - Kill The MCP
Maintainers
Readme
"Six months ago, everyone was talking about MCPs. And I was like, screw MCPs. Every MCP would be better as a CLI."
— Peter Steinberger, Founder of OpenClaw Watch on YouTube (~2:39:00) | Lex Fridman Podcast #491
Authentiq CLI
Production-ready CLI for the Authentiq Identity API. Manage sessions, keys, and scopes directly from your terminal.
Installation
npm install -g @ktmcp-cli/authentiqConfiguration
authentiq config set token YOUR_BEARER_TOKENUsage
Sessions
# List all sessions
authentiq sessions list
# Create a new session
authentiq sessions create --scope "openid email"
authentiq sessions create --scope "openid profile" --callback https://example.com/callback
# Get session details
authentiq sessions get <session-id>
# Delete a session
authentiq sessions delete <session-id>Keys
# Register a public key (JWK format)
authentiq keys register --key '{"kty":"EC","crv":"P-256","x":"...","y":"..."}'
# Get key details
authentiq keys get <pk>
# Update a key
authentiq keys update <pk> --data '{"status":"active"}'
# Revoke a key
authentiq keys revoke <pk>Scopes
# List available scopes
authentiq scopes list
# Get scope details
authentiq scopes get openid
# Request additional scopes
authentiq scopes request --data '{"scope":"email"}'JSON Output
All commands support --json for machine-readable output:
authentiq sessions list --json
authentiq sessions get <id> --json
authentiq scopes list --jsonLicense
MIT
