Skip to content

Commit 3f4435d

Browse files
committed
Update README
1 parent c9b50d7 commit 3f4435d

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Thank you for your interest in contributing to the Model Context Protocol (MCP)
77
### 1. New Servers
88
Adding a new server is a valuable way to contribute. Before creating a new server:
99

10+
> *NOTE* We accept pull requests adding your server to the [README.md](./README.md). We generally **don't** accept servers into the repository.
11+
1012
- Check the [modelcontextprotocol.io](https://modelcontextprotocol.io) documentation
1113
- Ensure your server doesn't duplicate existing functionality
1214
- Consider whether your server would be generally useful to others

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MCP servers
22

3-
A collection of reference implementations and community-contributed servers for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP). This repository showcases the versatility and extensibility of MCP, demonstrating how it can be used to give Large Language Models (LLMs) secure, controlled access to tools and data sources.
3+
A collection of *reference implementations* for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP). This repository showcases the versatility and extensibility of MCP, demonstrating how it can be used to give Large Language Models (LLMs) secure, controlled access to tools and data sources.
44

55
Each MCP server is implemented with either the [Typescript MCP SDK](https://github.com/modelcontextprotocol/typescript-sdk) or [Python MCP SDK](https://github.com/modelcontextprotocol/python-sdk).
66

@@ -23,20 +23,32 @@ Each MCP server is implemented with either the [Typescript MCP SDK](https://gith
2323

2424
## 🌎 Community Servers
2525

26-
- **[Cloudflare](https://github.com/cloudflare/mcp-server-cloudflare)** - Deploy, configure & interrogate your resources on the Cloudflare developer platform (e.g. Workers/KV/R2/D1)
26+
There are many community developed and maintained servers.
27+
28+
> **Note:** Community servers are untested and should be used at your own risk. They are not affiliated with or endorsed by Anthropic.
29+
30+
- <img height="12" width="12" src="https://cdn.simpleicons.org/cloudflare" /> **[Cloudflare](https://github.com/cloudflare/mcp-server-cloudflare)** - Deploy, configure & interrogate your resources on the Cloudflare developer platform (e.g. Workers/KV/R2/D1)
2731
- **[Raygun](https://github.com/MindscapeHQ/mcp-server-raygun)** - Interact with your crash reporting and real using monitoring data on your Raygun account
32+
- **[MCP Installer](https://github.com/anaisbetts/mcp-installer)** - This server is a server that installs other MCP servers for you.
33+
34+
## 📚 Resources
35+
36+
- **[Awesome MCP Servers by punkpeye](https://github.com/punkpeye/awesome-mcp-servers)** - A curated list of MCP servers by **[Frank Fiegel](https://github.com/punkpeye)**
37+
- **[Awesome MCP Servers by wong2](https://github.com/wong2/awesome-mcp-servers)** - A curated list of MCP servers by **[wong2](https://github.com/wong2)**
38+
- **[Awesome MCP Servers by appcypher](https://github.com/appcypher/awesome-mcp-servers)** - A curated list of MCP servers by **[Stephen Akinyemi](https://github.com/appcypher)**
39+
- **[mcp-get](https://mcp-get.com)** - Command line tool for installing and managing MCP servers by **[Michael Latman](https://github.com/michaellatman)**
2840

2941
## 🚀 Getting Started
3042

3143
### Using MCP Servers in this Repository
32-
Typescript-based servers in this repository can be used directly with `npx`.
44+
Typescript-based servers in this repository can be used directly with `npx`.
3345

3446
For example, this will start the [Memory](src/memory) server:
3547
```sh
3648
npx -y @modelcontextprotocol/server-memory
3749
```
3850

39-
Python-based servers in this repository can be used directly with [`uvx`](https://docs.astral.sh/uv/concepts/tools/) or [`pip`](https://pypi.org/project/pip/). `uvx` is recommended for ease of use and setup.
51+
Python-based servers in this repository can be used directly with [`uvx`](https://docs.astral.sh/uv/concepts/tools/) or [`pip`](https://pypi.org/project/pip/). `uvx` is recommended for ease of use and setup.
4052

4153
For example, this will start the [Git](src/git) server:
4254
```sh

0 commit comments

Comments
 (0)