New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ktmcp-cli/authentiq

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ktmcp-cli/authentiq

Production-ready CLI for Authentiq Identity API - Kill The MCP

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

"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/authentiq

Configuration

authentiq config set token YOUR_BEARER_TOKEN

Usage

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 --json

License

MIT

Keywords

authentiq

FAQs

Package last updated on 19 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts