Merge pull request #1519 from olaservo/olaservo-patch-1

Update fetch Readme JSON snippets for installation to be complete JSON
This commit is contained in:
Tadas Antanavicius
2025-05-31 11:27:34 -07:00
committed by GitHub

View File

@@ -55,10 +55,12 @@ Add to your Claude settings:
<summary>Using uvx</summary>
```json
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}
```
@@ -68,10 +70,12 @@ Add to your Claude settings:
<summary>Using docker</summary>
```json
"mcpServers": {
"fetch": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/fetch"]
{
"mcpServers": {
"fetch": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/fetch"]
}
}
}
```
@@ -81,10 +85,12 @@ Add to your Claude settings:
<summary>Using pip installation</summary>
```json
"mcpServers": {
"fetch": {
"command": "python",
"args": ["-m", "mcp_server_fetch"]
{
"mcpServers": {
"fetch": {
"command": "python",
"args": ["-m", "mcp_server_fetch"]
}
}
}
```