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"]
+ }
}
}
```