Skip to content

Commit b352721

Browse files
docs: add UV_HTTP_TIMEOUT to default uvx config (#305)
Move UV_HTTP_TIMEOUT=300 into the main uvx config example so it's the default, not an optional troubleshooting step. Fix grammar in the troubleshooting note. Co-authored-by: Daniel Sticker <sticker@ngenn.net>
1 parent fedcfdc commit b352721

1 file changed

Lines changed: 3 additions & 13 deletions

File tree

README.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ What has Anthropic been posting about recently? https://www.linkedin.com/company
7373
"mcpServers": {
7474
"linkedin": {
7575
"command": "uvx",
76-
"args": ["linkedin-scraper-mcp"]
76+
"args": ["linkedin-scraper-mcp"],
77+
"env": { "UV_HTTP_TIMEOUT": "300" }
7778
}
7879
}
7980
}
@@ -147,18 +148,7 @@ parallel. Use `--log-level DEBUG` to see scraper lock wait/acquire/release logs.
147148

148149
- Ensure you have uv installed: `curl -LsSf https://astral.sh/uv/install.sh | sh`
149150
- Check uv version: `uv --version` (should be 0.4.0 or higher)
150-
- First-time `uvx` runs download all Python dependencies. On slow connections, uv's default 30s timeout may fail. Increase it with `UV_HTTP_TIMEOUT=300`:
151-
```json
152-
{
153-
"mcpServers": {
154-
"linkedin": {
155-
"command": "uvx",
156-
"args": ["linkedin-scraper-mcp"],
157-
"env": { "UV_HTTP_TIMEOUT": "300" }
158-
}
159-
}
160-
}
161-
```
151+
- On first run, `uvx` downloads all Python dependencies. On slow connections, uv's default 30s HTTP timeout may be too short. The recommended config above already sets `UV_HTTP_TIMEOUT=300` (seconds) to avoid this.
162152

163153
**Session issues:**
164154

0 commit comments

Comments
 (0)