From 9203a3c30fff701dc3f21340890d73dc9278e461 Mon Sep 17 00:00:00 2001 From: Joakim Westin Date: Tue, 24 Mar 2026 18:59:50 +0100 Subject: [PATCH] FIxes #28 - configure Zed editor with MCP --- README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d08ff3..6713962 100644 --- a/README.md +++ b/README.md @@ -122,20 +122,16 @@ Add this to your VS Code MCP config file. See [VS Code MCP docs](https://code.vi Add this to your Zed `settings.json`. See [Zed Context Server docs](https://zed.dev/docs/assistant/context-servers) for more info. ```json -{ - "context_servers": { +"context_servers": { "dokploy-mcp": { - "command": { - "path": "npx", - "args": ["-y", "@ahdev/dokploy-mcp"] - }, - "settings": { + "command": "npx", + "args": ["-y", "@ahdev/dokploy-mcp"], + "env": { "DOKPLOY_URL": "https://your-dokploy-server.com/api", "DOKPLOY_API_KEY": "your-dokploy-api-token" - } - } + }, + }, } -} ``` ### Install in Claude Desktop