From 048e41070def67b2922ed7c38b643001ad7fcd85 Mon Sep 17 00:00:00 2001 From: abhicris Date: Tue, 21 Apr 2026 06:20:11 +0530 Subject: [PATCH] docs(git,time): fix invalid JSON in Zed uvx config examples The "Using uvx" Zed configuration snippets in src/git/README.md and src/time/README.md wrapped an object-style key-value entry in square brackets, producing invalid JSON. Switch to curly braces so the example parses and matches the adjacent "Using pip" snippets in the same files. Co-Authored-By: Claude Opus 4.7 --- src/git/README.md | 4 ++-- src/time/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/git/README.md b/src/git/README.md index c9ec3140be..d21dda8465 100644 --- a/src/git/README.md +++ b/src/git/README.md @@ -222,14 +222,14 @@ Add to your Zed settings.json: Using uvx ```json -"context_servers": [ +"context_servers": { "mcp-server-git": { "command": { "path": "uvx", "args": ["mcp-server-git"] } } -], +}, ``` diff --git a/src/time/README.md b/src/time/README.md index 51107f51de..2d885026e9 100644 --- a/src/time/README.md +++ b/src/time/README.md @@ -100,12 +100,12 @@ Add to your Zed settings.json: Using uvx ```json -"context_servers": [ +"context_servers": { "mcp-server-time": { "command": "uvx", "args": ["mcp-server-time"] } -], +}, ```