From f106ea7641c585d31ff9703b270d7f39d602f8ec Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Mon, 30 Jun 2025 10:42:38 -0300 Subject: [PATCH] docs: Update custom MCP format template (#33649) To match the new format added in https://github.com/zed-industries/zed/pull/33539. Release Notes: - N/A --- docs/src/ai/mcp.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/src/ai/mcp.md b/docs/src/ai/mcp.md index 8fbea0fef1..202b141022 100644 --- a/docs/src/ai/mcp.md +++ b/docs/src/ai/mcp.md @@ -40,13 +40,11 @@ You can connect them by adding their commands directly to your `settings.json`, ```json { "context_servers": { - "some-context-server": { + "your-mcp-server": { "source": "custom", - "command": { - "path": "some-command", - "args": ["arg-1", "arg-2"], - "env": {} - } + "command": "some-command", + "args": ["arg-1", "arg-2"], + "env": {} } } }