From 55147744905548a40e6eed0d9755505e0c043c6e Mon Sep 17 00:00:00 2001 From: Ola Hungerford Date: Thu, 17 Apr 2025 19:52:45 -0700 Subject: [PATCH] Update fetch Readme JSON snippets for installation to be complete JSON --- src/fetch/README.md | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/src/fetch/README.md b/src/fetch/README.md index 01d99cacba..1d2f872b5f 100644 --- a/src/fetch/README.md +++ b/src/fetch/README.md @@ -52,10 +52,12 @@ Add to your Claude settings: Using uvx ```json -"mcpServers": { - "fetch": { - "command": "uvx", - "args": ["mcp-server-fetch"] +{ + "mcpServers": { + "fetch": { + "command": "uvx", + "args": ["mcp-server-fetch"] + } } } ``` @@ -65,10 +67,12 @@ Add to your Claude settings: Using docker ```json -"mcpServers": { - "fetch": { - "command": "docker", - "args": ["run", "-i", "--rm", "mcp/fetch"] +{ + "mcpServers": { + "fetch": { + "command": "docker", + "args": ["run", "-i", "--rm", "mcp/fetch"] + } } } ``` @@ -78,10 +82,12 @@ Add to your Claude settings: Using pip installation ```json -"mcpServers": { - "fetch": { - "command": "python", - "args": ["-m", "mcp_server_fetch"] +{ + "mcpServers": { + "fetch": { + "command": "python", + "args": ["-m", "mcp_server_fetch"] + } } } ```