"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
⚠️ Unofficial CLI - Not officially sponsored or affiliated with Geneea NLP.
Production-ready CLI for Geneea - natural language processing and text analysis for sentiment, entities, and topics.
- Text Analysis — Analyze text for sentiment and meaning
- Entity Recognition — Extract entities from text
- Topic Detection — Identify topics and themes
- Sentiment Analysis — Determine text sentiment
- JSON output — All commands support --json for scripting
npm install -g @ktmcp-cli/geneea# Configure API key
geneea config set --api-key YOUR_API_KEY
# Show configuration
geneea config show
# Get info
geneea info
# List resources
geneea list
# Get a specific resource
geneea get <id>geneea config set --api-key <key>
geneea config set --base-url <url>
geneea config showgeneea info
geneea info --jsongeneea list
geneea list --json
geneea get <id>
geneea get <id> --jsonAll commands support --json for structured output:
geneea list --json | jq '.'
geneea info --json | jq '.version'No server to run. No protocol overhead. Just install and go.
- Simpler — Just a binary you call directly
- Composable — Pipe to
jq,grep,awk - Scriptable — Works in cron jobs, CI/CD, shell scripts
MIT — Part of the Kill The MCP project.