Merge branch 'main' into add-instructions

This commit is contained in:
Cliff Hall
2025-06-02 10:52:38 -04:00
committed by GitHub
3 changed files with 26 additions and 42 deletions

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