
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@ktmcp-cli/authentiq
Advanced tools
"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
Production-ready CLI for the Authentiq Identity API. Manage sessions, keys, and scopes directly from your terminal.
npm install -g @ktmcp-cli/authentiq
authentiq config set token YOUR_BEARER_TOKEN
# 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>
# 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>
# List available scopes
authentiq scopes list
# Get scope details
authentiq scopes get openid
# Request additional scopes
authentiq scopes request --data '{"scope":"email"}'
All commands support --json for machine-readable output:
authentiq sessions list --json
authentiq sessions get <id> --json
authentiq scopes list --json
MIT
FAQs
Production-ready CLI for Authentiq Identity API - Kill The MCP
We found that @ktmcp-cli/authentiq demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.