From d778a7f5dc33b04e08b53fe83c25a855f4cf7293 Mon Sep 17 00:00:00 2001 From: go165 <196723798+go165@users.noreply.github.com> Date: Mon, 15 Jun 2026 19:27:25 +0800 Subject: [PATCH] docs: align client config examples with active servers --- README.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1a6fcb70fa..0bd7bd794c 100644 --- a/README.md +++ b/README.md @@ -116,22 +116,19 @@ Additional examples of using the Claude Desktop as an MCP client might look like "command": "uvx", "args": ["mcp-server-git", "--repository", "path/to/git/repo"] }, - "github": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-github"], - "env": { - "GITHUB_PERSONAL_ACCESS_TOKEN": "" - } + "fetch": { + "command": "uvx", + "args": ["mcp-server-fetch"] }, - "postgres": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"] + "time": { + "command": "uvx", + "args": ["mcp-server-time", "--local-timezone=America/New_York"] } } } ``` -On Windows, apply the same wrapper to each `npx`-based entry above by changing `"command"` to `"cmd"` and prepending `"/c", "npx"` to the existing `args`. Leave `uvx` entries unchanged. +On Windows, apply the same wrapper to each `npx`-based entry above by changing `"command"` to `"cmd"` and prepending `"/c", "npx"` to the existing `args`. Leave `uvx` entries such as `git`, `fetch`, and `time` unchanged. ## 🛠️ Creating Your Own Server