docs: Update custom MCP format template (#33649)

Danilo Leal created

To match the new format added in
https://github.com/zed-industries/zed/pull/33539.

Release Notes:

- N/A

Change summary

docs/src/ai/mcp.md | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)

Detailed changes

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": {}
     }
   }
 }