docs: fix MCP install commands — use uv, not bare pip

The standard install already includes MCP via .[all]. For users who
need to add it separately, the correct command is:
  cd ~/.hermes/hermes-agent && uv pip install -e ".[mcp]"

The venv is created by uv, so bare 'pip' isn't available. All four
occurrences across 3 docs pages updated.
This commit is contained in:
Test 2026-03-18 03:14:58 -07:00
parent 5c4c4b8b7d
commit a9c405fac9
3 changed files with 14 additions and 6 deletions

View file

@ -20,10 +20,11 @@ If you have ever wanted Hermes to use a tool that already exists somewhere else,
## Quick start
1. Install MCP support:
1. Install MCP support (already included if you used the standard install script):
```bash
pip install hermes-agent[mcp]
cd ~/.hermes/hermes-agent
uv pip install -e ".[mcp]"
```
2. Add an MCP server to `~/.hermes/config.yaml`:
@ -374,7 +375,9 @@ Inspect the project root and explain the directory layout.
Check:
```bash
pip install hermes-agent[mcp]
# Verify MCP deps are installed (already included in standard install)
cd ~/.hermes/hermes-agent && uv pip install -e ".[mcp]"
node --version
npx --version
```