Skip to content

Commit 70e19c4

Browse files
Migrate python servers to mcp namespace
1 parent 4904415 commit 70e19c4

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ A growing set of community-developed and maintained servers demonstrates various
8686
- **[Pinecone](https://github.com/sirmews/mcp-pinecone)** - MCP server for searching and uploading records to Pinecone. Allows for simple RAG features, leveraging Pinecone's Inference API.
8787
- **[HuggingFace Spaces](https://github.com/evalstate/mcp-hfspace)** - Server for using HuggingFace Spaces, supporting Open Source Image, Audio, Text Models and more. Claude Desktop mode for easy integration.
8888
- **[ChatSum](https://github.com/chatmcp/mcp-server-chatsum)** - Query and Summarize chat messages with LLM. by [mcpso](https://mcp.so)
89-
- **[Rememberizer AI](https://github.com/skydeckmcp/server-rememberizer)** - An MCP server designed for interacting with the Rememberizer data source, facilitating enhanced knowledge retrieval.
89+
- **[Rememberizer AI](https://github.com/skydeckai/mcp-server-rememberizer)** - An MCP server designed for interacting with the Rememberizer data source, facilitating enhanced knowledge retrieval.
9090
- **[FlightRadar24](https://github.com/sunsetcoder/flightradar24-mcp-server)** - A Claude Desktop MCP server that helps you track flights in real-time using Flightradar24 data.
9191
- **[X (Twitter)](https://github.com/vidhupv/x-mcp)** (by vidhupv) - Create, manage and publish X/Twitter posts directly through Claude chat.
9292
- **[X (Twitter)](https://github.com/EnesCinr/twitter-mcp)** (by EnesCinr) - Interact with twitter API. Post tweets and search for tweets by query.
@@ -119,7 +119,7 @@ Additional resources on MCP.
119119
- **[mcp-cli](https://github.com/wong2/mcp-cli)** - A CLI inspector for the Model Context Protocol by **[wong2](https://github.com/wong2)**
120120
- **[r/mcp](https://www.reddit.com/r/mcp)** – A Reddit community dedicated to MCP by **[Frank Fiegel](https://github.com/punkpeye)**
121121
- **[MCP X Community](https://x.com/i/communities/1861891349609603310)** – A X community for MCP by **[Xiaoyi](https://x.com/chxy)**
122-
- **[mcp-manager](https://github.com/zuemcp/manager)** - Simple Web UI to install and manage MCP servers for Claude Desktop by **[Zue](https://github.com/zueai)**
122+
- **[mcp-manager](https://github.com/zueai/mcp-manager)** - Simple Web UI to install and manage MCP servers for Claude Desktop by **[Zue](https://github.com/zueai)**
123123
- **[MCPHub](https://github.com/Jeamee/MCPHub-Desktop)** – An Open Source MacOS & Windows GUI Desktop app for discovering, installing and managing MCP servers by **[Jeamee](https://github.com/jeamee)**
124124

125125
## 🚀 Getting Started

src/fetch/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,19 @@ Add to your Claude settings:
6161
```
6262
</details>
6363

64+
<details>
65+
<summary>Using docker</summary>
66+
67+
```json
68+
"mcpServers": {
69+
"fetch": {
70+
"command": "docker",
71+
"args": ["run", "-i", "--rm", "mcp/fetch"]
72+
}
73+
}
74+
```
75+
</details>
76+
6477
<details>
6578
<summary>Using pip installation</summary>
6679

src/git/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,19 @@ Add this to your `claude_desktop_config.json`:
120120
```
121121
</details>
122122

123+
<details>
124+
<summary>Using docker</summary>
125+
126+
```json
127+
"mcpServers": {
128+
"git": {
129+
"command": "docker",
130+
"args": ["run", "--rm", "-i", "type=bind,src=/Users/slim,dst=/projects", "mcp/git"]
131+
}
132+
}
133+
```
134+
</details>
135+
123136
<details>
124137
<summary>Using pip installation</summary>
125138

src/sentry/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,22 @@ Add this to your `claude_desktop_config.json`:
6969
</details>
7070

7171
<details>
72+
73+
<details>
74+
<summary>Using docker</summary>
75+
76+
```json
77+
"mcpServers": {
78+
"sentry": {
79+
"command": "docker",
80+
"args": ["run", "-i", "--rm", "mcp/sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
81+
}
82+
}
83+
```
84+
</details>
85+
86+
<details>
87+
7288
<summary>Using pip installation</summary>
7389

7490
```json

0 commit comments

Comments
 (0)