Technical
CLI Reference
The hive-intel CLI is the fastest way to interact with the live catalog from a terminal.
Installation
npm install -g hive-intel
Or use it without a global install:
npx hive-intel --help
Recommended Workflow
Discover tools
hive-intel tools list
hive-intel tools search "price"
hive-intel tools info get_price
Execute tools directly
hive-intel tools call get_price --args '{"ids":"bitcoin","vs_currencies":"usd"}'
Authenticate
hive-intel auth signup
hive-intel auth login
hive-intel auth whoami
Generate client config
hive-intel config claude-code
hive-intel config cursor
hive-intel config vscode
hive-intel config http
Run diagnostics
hive-intel doctor
hive-intel doctor --probe
hive-intel usage
Server Mode
hive-intel serve
hive-intel serve --http --port 8080
Use serve when you want to run the local MCP server directly.
Notes
- Prefer
tools callfor the most reliable CLI path against the live catalog. - Use Live Catalog or
GET /api/v1/toolswhen you need to confirm whether a tool is currently exposed.