Skip to content

Commit

Permalink
Migrate python servers to mcp namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
slimslenderslacks committed Dec 19, 2024
1 parent 6accceb commit 2c14f4a
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/fetch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,19 @@ Add to your Claude settings:
```
</details>

<details>
<summary>Using docker</summary>

```json
"mcpServers": {
"fetch": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/fetch"]
}
}
```
</details>

<details>
<summary>Using pip installation</summary>

Expand Down
13 changes: 13 additions & 0 deletions src/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,19 @@ Add this to your `claude_desktop_config.json`:
```
</details>

<details>
<summary>Using docker</summary>

```json
"mcpServers": {
"git": {
"command": "docker",
"args": ["run", "--rm", "-i", "type=bind,src=/Users/slim,dst=/projects", "mcp/git"]
}
}
```
</details>

<details>
<summary>Using pip installation</summary>

Expand Down
16 changes: 16 additions & 0 deletions src/sentry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,22 @@ Add this to your `claude_desktop_config.json`:
</details>

<details>

<details>
<summary>Using docker</summary>

```json
"mcpServers": {
"sentry": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
}
}
```
</details>

<details>

<summary>Using pip installation</summary>

```json
Expand Down

0 comments on commit 2c14f4a

Please sign in to comment.