Skip to content

Commit f21c431

Browse files
julienldclaude
andcommitted
docs: add uvx cache troubleshooting to FAQ
Add troubleshooting section for stale uvx cache causing old versions or missing tools. Documents `uv cache clean` and `--refresh` flag. Fixes #464 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 79a1456 commit f21c431

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

docs/FAQ.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,27 @@ source ~/.zshrc
149149
2. **Subsequent requests** - Should be faster (packages cached)
150150
3. **Alternative** - Use Docker for consistent performance
151151

152+
### Tools are missing or using old version
153+
154+
If you're seeing fewer tools than expected or outdated behavior, `uvx` may be using a cached old version.
155+
156+
**Solution:**
157+
158+
```bash
159+
# Clear the uv cache
160+
uv cache clean
161+
162+
# Force refresh to latest version
163+
uvx --refresh ha-mcp@latest
164+
```
165+
166+
**Verify the version:**
167+
```bash
168+
uvx ha-mcp@latest --version
169+
```
170+
171+
The version should match the [latest release](https://github.com/homeassistant-ai/ha-mcp/releases/latest) (currently 6.x). If you see version 3.x or older, the cache needs clearing.
172+
152173
---
153174

154175
## OAuth Troubleshooting

0 commit comments

Comments
 (0)