@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 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
- npx @getmarrow/mcp
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` | Yes | Your API key from getmarrow.ai |
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