mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-17 23:53:24 +02:00
74 lines
2.8 KiB
Markdown
74 lines
2.8 KiB
Markdown
# MCP servers 
|
|
|
|
[](LICENSE)
|
|
|
|
A collection of reference implementations and community-contributed servers for the Model Context Protocol (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 external tools and data sources.
|
|
|
|
## 🌟 Featured Servers
|
|
|
|
- **[Filesystem](src/filesystem)** - Secure file operations with configurable access controls
|
|
- **[GitHub](src/github)** - Repository management, file operations, and GitHub API integration
|
|
- **[Google Drive](src/gdrive)** - File access and search capabilities for Google Drive
|
|
- **[PostgreSQL](src/postgres)** - Read-only database access with schema inspection
|
|
- **[Slack](src/slack)** - Channel management and messaging capabilities
|
|
- **[Memory](src/memory)** - Knowledge graph-based persistent memory system
|
|
- **[Puppeteer](src/puppeteer)** - Browser automation and web scraping
|
|
- **[Brave Search](src/brave-search)** - Web and local search using Brave's API
|
|
- **[Google Maps](src/google-maps)** - Location services, directions, and place details
|
|
|
|
## 🚀 Getting Started
|
|
|
|
### Installation
|
|
|
|
```bash
|
|
# Install all servers globally
|
|
npm install -g @modelcontextprotocol/servers
|
|
|
|
# Or install individual servers
|
|
npm install -g @modelcontextprotocol/server-github
|
|
npm install -g @modelcontextprotocol/server-filesystem
|
|
# etc...
|
|
```
|
|
|
|
### Usage
|
|
|
|
Each server can be run directly from the command line:
|
|
|
|
```bash
|
|
mcp-server-github
|
|
mcp-server-filesystem ~/allowed/path
|
|
mcp-server-postgres "postgresql://localhost/mydb"
|
|
```
|
|
|
|
## 🛠️ Creating Your Own Server
|
|
|
|
Interested in creating your own MCP server? Visit the official documentation at [modelcontextprotocol.io/introduction](https://modelcontextprotocol.io/introduction) for comprehensive guides, best practices, and technical details on implementing MCP servers.
|
|
|
|
## 🤝 Contributing
|
|
|
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for information about contributing to the MCP servers repository.
|
|
|
|
## 🔒 Security
|
|
|
|
See [SECURITY.md](SECURITY.md) for reporting security vulnerabilities.
|
|
|
|
## 📜 License
|
|
|
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
|
|
## 💬 Community
|
|
|
|
- [Discord](https://discord.gg/modelcontextprotocol)
|
|
- [GitHub Discussions](https://github.com/modelcontextprotocol/servers/discussions)
|
|
|
|
## ⭐ Support
|
|
|
|
If you find MCP servers useful, please consider:
|
|
- Starring the repository
|
|
- Contributing new servers or improvements
|
|
- Sharing your experience with the community
|
|
|
|
---
|
|
|
|
Managed by Anthropic, but built together with the community. The Model Context Protocol is open source and we encourage everyone to contribute their own servers and improvements!
|