@getmarrow/mcp 3.0.6 → 3.0.8
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 +7 -6
- package/dist/cli.js +242 -248
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +74 -29
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,7 +120,11 @@ That gives agents an actual memory discipline:
|
|
|
120
120
|
Run it directly with `npx`:
|
|
121
121
|
|
|
122
122
|
```bash
|
|
123
|
-
|
|
123
|
+
# Option 1: Pass API key via CLI flag
|
|
124
|
+
npx @getmarrow/mcp --key mrw_your_api_key
|
|
125
|
+
|
|
126
|
+
# Option 2: Use environment variable
|
|
127
|
+
MARROW_API_KEY=mrw_your_api_key npx @getmarrow/mcp
|
|
124
128
|
```
|
|
125
129
|
|
|
126
130
|
Or register it in your MCP client config.
|
|
@@ -206,10 +210,7 @@ Check Marrow platform health and status.
|
|
|
206
210
|
"mcpServers": {
|
|
207
211
|
"marrow": {
|
|
208
212
|
"command": "npx",
|
|
209
|
-
"args": ["@getmarrow/mcp"]
|
|
210
|
-
"env": {
|
|
211
|
-
"MARROW_API_KEY": "mrw_your_api_key"
|
|
212
|
-
}
|
|
213
|
+
"args": ["@getmarrow/mcp", "--key", "mrw_your_api_key"]
|
|
213
214
|
}
|
|
214
215
|
}
|
|
215
216
|
}
|
|
@@ -221,7 +222,7 @@ Check Marrow platform health and status.
|
|
|
221
222
|
|
|
222
223
|
| Variable | Required | Description |
|
|
223
224
|
|----------|----------|-------------|
|
|
224
|
-
| `MARROW_API_KEY` |
|
|
225
|
+
| `MARROW_API_KEY` | No* | Your API key from getmarrow.ai (or use `--key` flag) |
|
|
225
226
|
| `MARROW_BASE_URL` | No | Custom API URL (default: `https://api.getmarrow.ai`) |
|
|
226
227
|
| `MARROW_SESSION_ID` | No | Session identifier for multi-agent setups |
|
|
227
228
|
|