Discover Awesome MCP Servers
Extend your agent with 28,331 capabilities via MCP servers.
- All28,331
- Developer Tools3,867
- Search1,714
- Research & Data1,557
- AI Integration Systems229
- Cloud Platforms219
- Data & App Analysis181
- Database Interaction177
- Remote Shell Execution165
- Browser Automation147
- Databases145
- Communication137
- AI Content Generation127
- OS Automation120
- Programming Docs Access109
- Content Fetching108
- Note Taking97
- File Systems96
- Version Control93
- Finance91
- Knowledge & Memory90
- Monitoring79
- Security71
- Image & Video Processing69
- Digital Note Management66
- AI Memory Systems62
- Advanced AI Reasoning59
- Git Management Tools58
- Cloud Storage51
- Entertainment & Media43
- Virtualization42
- Location Services35
- Web Automation & Stealth32
- Media Content Processing32
- Calendar Management26
- Ecommerce & Retail18
- Speech Processing18
- Customer Data Platforms16
- Travel & Transportation14
- Education & Learning Tools13
- Home Automation & IoT13
- Web Search Integration12
- Health & Wellness10
- Customer Support10
- Marketing9
- Games & Gamification8
- Google Cloud Integrations7
- Art & Culture4
- Language Translation3
- Legal & Compliance2
MCP Planes Server
Placeholder Image Generator
Generates customizable placeholder images with configurable dimensions, colors, and text using HTML5 Canvas. Supports multiple formats (PNG/JPEG) with automatic text scaling and contrast detection.
BusyBee
Autonomous TDD coding agent that converts specifications into feature lists and implements them using test-driven development with pause/resume capabilities, live progress monitoring, and automatic git commits.
OrgFlow MCP
Enables comprehensive organizational data management including employee tracking, team coordination, project management, asset oversight, and performance monitoring. Provides a centralized system for managing all aspects of organizational operations through natural language interactions.
Cloud SQL Admin MCP Server
An MCP Server that enables interaction with Google Cloud SQL Admin API, allowing users to manage Cloud SQL database instances through natural language commands.
MongoDB MCP Server
Một máy chủ Giao thức Bối cảnh Mô hình (MCP) cho phép các LLM tương tác trực tiếp với cơ sở dữ liệu MongoDB. Truy vấn các bộ sưu tập, kiểm tra lược đồ và quản lý dữ liệu một cách liền mạch thông qua ngôn ngữ tự nhiên.
SecureCode
Secrets vault for Claude Code. Encrypt API keys, tokens and passwords with AES-256. Full audit logs, MCP access rules, and zero-knowledge mode. Secrets never appear in chat.
SqlAugur
SQL Server MCP server with AST-based query validation, read-only safety, schema exploration, ER diagram generation, and DBA toolkit integration (First Responder Kit, DarlingData, sp_WhoIsActive).
YantrikDB MCP
Cognitive memory for AI agents. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.
ui-ticket-mcp
Human-to-AI code review bridge. Annotate UI elements in the browser with review comments, and AI agents read the feedback via MCP to fix code automatically — with full element context (CSS selector, styles, DOM path, accessibility info). 10 MCP tools, framework-agnostic Web Component, zero-config install via uvx.
claude-senator-mcp
An MCP server that enables inter-Claude communication and context sharing for seamless collaboration and conversation forking between multiple AI instances. It uses a smart pointer architecture to efficiently share project data and conversation history without interrupting ongoing tasks.
mcp-opnsense
Slim OPNsense MCP Server — 62 tools for managing firewall infrastructure via the OPNsense REST API. Covers DNS/Unbound, Firewall rules, Diagnostics, Interfaces, DHCP (ISC + Kea), System/Backups, ACME/Let's Encrypt, and Firmware. No SSH, no shell, API-only with 3 runtime dependencies. AGPL-3.0 + Commercial dual-licensed.
Structured-Argumentation
A group of model context protocol servers provide cognitive enhancement tools for large language models.
Markdownify MCP Server
Converts various file types (PDF, images, audio, DOCX, XLSX, PPTX) and web content (YouTube videos, web pages, Bing search results) into Markdown format for easy reading and sharing.
Simple Timer MCP Server
An MCP server that provides interval timing functionality using token-based time tracking, allowing users to start timers with unique identifiers and check elapsed time in milliseconds or human-readable format.
qdrant-mcp-local
Đây là một cấu hình Docker Compose đơn giản để dễ dàng khởi chạy Qdrant và MCP-server-qdrant trong môi trường cục bộ: ```yaml version: "3.9" services: qdrant: image: qdrant/qdrant:latest ports: - "6333:6333" # API port - "6334:6334" # gRPC port volumes: - qdrant_data:/qdrant/storage restart: unless-stopped mcp-server-qdrant: image: your-mcp-server-qdrant-image:latest # Thay thế bằng image của bạn ports: - "8000:8000" # Thay đổi nếu cần thiết environment: QDRANT_HOST: qdrant QDRANT_PORT: 6333 # Thêm các biến môi trường khác cần thiết cho MCP-server-qdrant của bạn depends_on: - qdrant restart: unless-stopped volumes: qdrant_data: ``` **Giải thích:** * **`version: "3.9"`**: Chỉ định phiên bản của Docker Compose. * **`services:`**: Định nghĩa các dịch vụ sẽ được chạy. * **`qdrant:`**: Định nghĩa dịch vụ Qdrant. * **`image: qdrant/qdrant:latest`**: Sử dụng image Qdrant mới nhất từ Docker Hub. * **`ports:`**: Ánh xạ các cổng. Cổng 6333 cho API và 6334 cho gRPC. * **`volumes:`**: Gắn một volume để lưu trữ dữ liệu Qdrant. Điều này đảm bảo dữ liệu không bị mất khi container bị xóa. * **`restart: unless-stopped`**: Khởi động lại container tự động trừ khi nó bị dừng thủ công. * **`mcp-server-qdrant:`**: Định nghĩa dịch vụ MCP-server-qdrant. * **`image: your-mcp-server-qdrant-image:latest`**: **Quan trọng:** Thay thế `your-mcp-server-qdrant-image:latest` bằng tên image Docker của MCP-server-qdrant của bạn. Ví dụ: `my-username/mcp-server-qdrant:1.0`. * **`ports:`**: Ánh xạ cổng. Ở đây, cổng 8000 được ánh xạ. Thay đổi nếu MCP-server-qdrant của bạn sử dụng một cổng khác. * **`environment:`**: Đặt các biến môi trường cần thiết cho MCP-server-qdrant. * **`QDRANT_HOST: qdrant`**: Chỉ định hostname của dịch vụ Qdrant. Docker Compose sẽ tự động giải quyết `qdrant` thành địa chỉ IP của container Qdrant. * **`QDRANT_PORT: 6333`**: Chỉ định cổng API của Qdrant. * **Thêm các biến môi trường khác:** Bạn cần thêm bất kỳ biến môi trường nào khác mà MCP-server-qdrant của bạn cần để hoạt động, chẳng hạn như khóa API, thông tin đăng nhập cơ sở dữ liệu, v.v. * **`depends_on:`**: Đảm bảo Qdrant được khởi động trước khi MCP-server-qdrant. * **`restart: unless-stopped`**: Khởi động lại container tự động trừ khi nó bị dừng thủ công. * **`volumes:`**: Định nghĩa các volume. * **`qdrant_data:`**: Định nghĩa một volume có tên `qdrant_data` để lưu trữ dữ liệu Qdrant. **Cách sử dụng:** 1. **Lưu cấu hình:** Lưu đoạn mã trên vào một tệp có tên `docker-compose.yml`. 2. **Thay thế image:** Thay thế `your-mcp-server-qdrant-image:latest` bằng tên image Docker thực tế của MCP-server-qdrant của bạn. 3. **Thêm biến môi trường:** Thêm bất kỳ biến môi trường cần thiết nào khác cho MCP-server-qdrant của bạn vào phần `environment`. 4. **Khởi chạy:** Mở terminal, điều hướng đến thư mục chứa `docker-compose.yml` và chạy lệnh: `docker-compose up -d` **Lưu ý:** * **Image MCP-server-qdrant:** Bạn cần phải có một image Docker cho MCP-server-qdrant của bạn. Nếu bạn chưa có, bạn cần tạo một Dockerfile và build image. * **Biến môi trường:** Đảm bảo bạn cung cấp tất cả các biến môi trường cần thiết cho MCP-server-qdrant của bạn. Kiểm tra tài liệu của MCP-server-qdrant để biết danh sách đầy đủ các biến môi trường cần thiết. * **Cổng:** Điều chỉnh các cổng nếu cần thiết. Đảm bảo không có xung đột cổng với các ứng dụng khác đang chạy trên máy của bạn. * **Dữ liệu Qdrant:** Dữ liệu Qdrant sẽ được lưu trữ trong volume `qdrant_data`. Khi bạn dừng và khởi động lại các container, dữ liệu sẽ được giữ lại. * **Tùy chỉnh:** Đây là một cấu hình cơ bản. Bạn có thể tùy chỉnh nó thêm nữa để phù hợp với nhu cầu cụ thể của bạn. Ví dụ: bạn có thể thêm các volume khác, cấu hình mạng, v.v. Chúc bạn thành công!
ABP.IO MCP Server
Enables AI models to interact with ABP.IO applications through over 48 tools for managing modules, entities, users, and multi-tenancy. It supports comprehensive application lifecycle management and automated UI generation across multiple frameworks including Angular, Blazor, and MVC.
Remote MCP Server on Cloudflare
A Model Context Protocol server that runs on Cloudflare Workers with OAuth login, allowing clients like Claude Desktop to connect to it for tool-augmented AI interactions.
MCP-Demo
MCP Duty Pharma
MCP Duty Pharma
Wan2GP MCP Server
Enables AI assistants to generate videos from text prompts and images by interfacing with a Wan2GP Gradio server. It provides tools for high-quality video generation, queue management, and model discovery through the Model Context Protocol.
mcp-tts-server
CODING DevOps MCP Server
Triển khai Giao thức Ngữ cảnh Mô hình (MCP) để cho phép tương tác với nền tảng CODING DevOps thông qua các giao diện tiêu chuẩn hóa để quản lý dự án và các mục công việc.
mcp-superset
Full-featured MCP server for Apache Superset — 135+ tools for dashboards, charts, datasets, SQL Lab, security (users, roles, RLS, groups), audit, and more. Built-in safety validations.
Email MCP Server
Máy chủ giao thức ngữ cảnh mô hình với kết nối IMAP và SMTP
Dangerous MCP
Một máy chủ trình diễn tiết lộ các rủi ro bảo mật bằng cách truy cập các biến môi trường nhạy cảm, minh họa cách các công cụ MCP có thể vô tình làm rò rỉ dữ liệu người dùng mà không có sự đồng ý rõ ràng.
AI Agent Template MCP Server
An MCP server that enhances AI agents' coding capabilities by providing zero hallucinations, improved code quality, security-first approach, high test coverage, and efficient context management.
nobulex-mcp-server
Proof-of-behavior enforcement for AI agents. Declare behavioral constraints, enforce at runtime, produce SHA-256 hash-chained audit trails. Supports covenants (permit/forbid/require), real-time verification, and cross-agent trust handshakes.
Godle
Free AI prompt orchestration with 185 expert roles, 1,741 templates, and 4 MCP tools — no API key required
WeChat Article MCP Server
Enables saving articles to WeChat Official Account drafts with support for rich text, automatic image upload, and Markdown rendering including Mermaid diagrams.