hive-intelligence 0.4.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,20 @@ This gives you two commands:
|
|
|
15
15
|
| `hive-intelligence` | MCP stdio server for AI clients (Claude Desktop, Cursor, VS Code, etc.) |
|
|
16
16
|
| `hive` | CLI tool for terminal usage |
|
|
17
17
|
|
|
18
|
+
> **Note:** `hive-intelligence` is an MCP stdio server — running it directly opens a stdio transport that waits for JSON-RPC messages. It is not interactive and does not accept subcommands. For terminal usage, use the `hive` CLI.
|
|
19
|
+
|
|
20
|
+
### Run without installing
|
|
21
|
+
|
|
22
|
+
The CLI is a separate bin in the same package, so with `npx` you must select it explicitly via `-p`:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Run the CLI via npx (note: -p selects the package, `hive` is the bin)
|
|
26
|
+
HIVE_API_KEY=hive_live_... npx -y -p hive-intelligence hive --help
|
|
27
|
+
HIVE_API_KEY=hive_live_... npx -y -p hive-intelligence hive market price --ids bitcoin --vs usd
|
|
28
|
+
|
|
29
|
+
# Plain `npx -y hive-intelligence` launches the MCP stdio server, not the CLI.
|
|
30
|
+
```
|
|
31
|
+
|
|
18
32
|
## API Key
|
|
19
33
|
|
|
20
34
|
An API key is required. Get one at [hiveintelligence.xyz](https://hiveintelligence.xyz) and set it as an environment variable:
|
|
@@ -108,7 +122,7 @@ More details: https://hiveintelligence.xyz/crypto-mcp
|
|
|
108
122
|
|
|
109
123
|
## CLI Usage
|
|
110
124
|
|
|
111
|
-
The `hive` CLI is a lightweight client that talks to the Hive API.
|
|
125
|
+
The `hive` CLI is a lightweight client that talks to the Hive API. Set `HIVE_API_KEY` (or run `hive auth login`) before making calls.
|
|
112
126
|
|
|
113
127
|
```bash
|
|
114
128
|
# Get Bitcoin price
|