You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installation.mdx
+11-28Lines changed: 11 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,6 @@ description: Get started with everyrow. Install the Python SDK via pip, add the
7
7
8
8
Get an API key at [everyrow.io/api-key](https://everyrow.io/api-key) ($20 free credit included).
9
9
10
-
```bash
11
-
export EVERYROW_API_KEY=your_key_here
12
-
```
13
-
14
10
Select your platform and integration method below.
15
11
16
12
<InstallationTabs>
@@ -23,6 +19,13 @@ pip install everyrow
23
19
24
20
Requires Python 3.12+.
25
21
22
+
**Important:** be sure to supply your API key when running scripts:
23
+
24
+
```bash
25
+
export EVERYROW_API_KEY=sk-cho...
26
+
python3 example_script.py
27
+
```
28
+
26
29
**Quick example:**
27
30
28
31
```python
@@ -152,31 +155,11 @@ You can optionally configure Claude Code to show a [progress bar](/docs/progress
152
155
153
156
<TabContentagent="claude-desktop"type="mcp">
154
157
155
-
Download the latest `.mcpb` bundle from [GitHub Releases](https://github.com/futuresearch/everyrow-sdk/releases) and double-click to install. You'll be prompted for your API key during setup.
156
-
157
-
> **Note:** Works in Claude Desktop's **Chat** mode only (not Cowork mode due to a [known limitation](https://github.com/anthropics/claude-code/issues/20377)).
158
+
First, make sure you have [uv installed](https://docs.astral.sh/uv/).
158
159
159
-
**Manual installation:**
160
-
161
-
Add to your MCP config (requires [uv](https://docs.astral.sh/uv/)):
162
-
163
-
```json
164
-
{
165
-
"mcpServers": {
166
-
"everyrow": {
167
-
"command": "uvx",
168
-
"args": ["everyrow-mcp"],
169
-
"env": {
170
-
"EVERYROW_API_KEY": "sk-cho..."
171
-
}
172
-
}
173
-
}
174
-
}
175
-
```
160
+
Then, download the latest `.mcpb` bundle from [GitHub Releases](https://github.com/futuresearch/everyrow-sdk/releases) and double-click to install. You'll be prompted for your API key during setup.
After installing the bundle, you can use everyrow from Chat, Cowork and Code within Claude Desktop.
180
163
181
164
</TabContent>
182
165
@@ -365,6 +348,6 @@ Config file location:
365
348
366
349
## Dependencies
367
350
368
-
The MCP server requires **uv** (if using `uvx`) or **pip** (if installed directly). The Python SDK requires **Python 3.12+**.
351
+
The MCP server requires [**uv**](https://docs.astral.sh/uv/) (if using `uvx`) or [**pip**](https://pip.pypa.io/en/stable/) (if installed directly). The Python SDK requires **Python 3.12+**.
369
352
370
353
For the optional terminal progress bar, see the [jq dependency](/docs/progress-monitoring#status-line-progress-bar) in the progress monitoring guide.
Copy file name to clipboardExpand all lines: everyrow-mcp/README.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,7 @@ The server requires an everyrow API key. Get one at [everyrow.io/api-key](https:
12
12
13
13
### Claude Desktop
14
14
15
-
Download the latest `.mcpb` bundle from the [GitHub Releases](https://github.com/futuresearch/everyrow-sdk/releases) page and double-click to install in Claude Desktop. You'll be prompted to enter your everyrow API key during setup.
16
-
17
-
> **Note:** The MCPB bundle works in Claude Desktop's **Chat** mode. Due to a [known limitation](https://github.com/anthropics/claude-code/issues/20377), local MCP servers are not currently exposed in Cowork mode.
15
+
Download the latest `.mcpb` bundle from the [GitHub Releases](https://github.com/futuresearch/everyrow-sdk/releases) page and double-click to install in Claude Desktop. You'll be prompted to enter your everyrow API key during setup. After installing the bundle, you can use everyrow from Chat, Cowork and Code within Claude Desktop.
18
16
19
17
### Cursor
20
18
Set the environment variable in your terminal shell before opening cursor. You may need to re-open cursor from your shell after this. Alternatively, hardcode the api key within cursor settings instead of the hard-coded `${env:EVERYROW_API_KEY}`
0 commit comments