diff --git a/docs/quickstart.md b/docs/quickstart.md index e26563d..401b7d5 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -50,6 +50,7 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel) { "agent_servers": { "Echo Agent (Python)": { + "type": "custom", "command": "/abs/path/to/python", "args": [ "/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py" @@ -59,6 +60,21 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel) } ``` +Or, if using `uv`: + +```json +{ + "agent_servers": { + "type": "custom", + "command": "uv", + "args": [ + "run", + "/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py" + ], + } +} +``` + Open the Agents panel and start the session. Each message you send should be echoed back via streamed `session/update` notifications. ### Other clients