Discover Awesome MCP Servers
Extend your agent with 26,604 capabilities via MCP servers.
- All26,604
- 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
DevServer MCP
Monitors development server logs in real-time and provides Claude with immediate error notifications via Server-Sent Events. Intelligently parses TypeScript, Svelte, and Vite errors with severity classification and file correlation.
n8n Workflow Builder MCP Server
Một máy chủ Giao thức Bối cảnh Mô hình (MCP) để tạo và quản lý quy trình làm việc n8n một cách có lập trình.
MCP Server - Test Migration (WDIO to Playwright)
Enables migration of test automation projects from WebDriverIO to Playwright using AST-based transformations. Provides tools for analyzing tests, converting syntax, refactoring to Page Object Model, and generating migration reports.
Exploit-DB MCP Server
Integrates the Exploit-DB database with AI assistants to enable searching for exploits, shellcodes, and proof-of-concept code during penetration testing workflows. It allows users to perform keyword searches and direct CVE-to-exploit mappings to retrieve technical security data.
CDC MCP Server
Provides access to 73 CDC public health datasets covering disease surveillance, vaccination tracking, behavioral risk factors, environmental health, and outbreak detection across 18 surveillance systems through the Socrata Open Data API.
Splunkbase MCP Server
Một máy chủ Giao thức Điều khiển Máy (Machine Control Protocol) cung cấp quyền truy cập theo chương trình vào các chức năng của Splunkbase, cho phép người dùng tìm kiếm, tải xuống và quản lý các ứng dụng Splunkbase thông qua một giao diện tiêu chuẩn.
arr-assistant-mcp
A server that allows users to add movies and TV shows to Radarr/Sonarr using natural language queries.
MCP-Booster
Provides AI-powered development assistance with continuous chain-of-thought reasoning (CoConuT), automated task planning and execution, quality validation, and persistent memory of project context and decisions.
Mcp Server And Claude for Desktop Example
code2mcp
Enables execution of TypeScript code to call MCP tools instead of direct tool calls, reducing token usage by up to 98% while orchestrating complex multi-tool workflows through secure sandboxed code execution.
GetNote MCP Server
Enables AI models to interact with the Get笔记 (GetNotes) platform via its Open API. It supports managing notes, organizing knowledge bases, and handling tags through natural language commands.
SAP AI Core Documentation MCP Server
Provides semantic search and intelligent access to SAP AI Core documentation for AI assistants like Claude. It enables users to search across categories, retrieve full document content, and access topic-specific information from the SAP artificial intelligence repository.
Emby.MCP
Connects an Emby media server to AI clients like Claude Desktop, enabling natural language control of media playback, library browsing, playlist management, and search across your personal media collection.
Azure MCP FastMCP Server
Provides Azure DevOps integration through MCP, enabling management of projects, work items, teams, and policies via natural language. Supports bulk work item creation with hierarchical relationships and iteration assignments.
Chronos MCP Server
Dưới đây là một máy chủ MCP (Minecraft Protocol) đơn giản dựa trên .NET Core để lấy thời gian hiện tại: ```csharp using System; using System.Net; using System.Net.Sockets; using System.Text; namespace SimpleMcpServer { class Program { static void Main(string[] args) { // Cổng để lắng nghe kết nối int port = 25565; // Tạo một listener TCP TcpListener listener = new TcpListener(IPAddress.Any, port); // Bắt đầu lắng nghe listener.Start(); Console.WriteLine($"Máy chủ MCP đang chạy trên cổng {port}..."); while (true) { // Chấp nhận một kết nối đến TcpClient client = listener.AcceptTcpClient(); // Xử lý kết nối trong một luồng riêng HandleClient(client); } } static void HandleClient(TcpClient client) { try { // Lấy stream mạng NetworkStream stream = client.GetStream(); // Đọc dữ liệu từ client (ví dụ: yêu cầu) byte[] buffer = new byte[1024]; int bytesRead = stream.Read(buffer, 0, buffer.Length); string request = Encoding.UTF8.GetString(buffer, 0, bytesRead); Console.WriteLine($"Nhận yêu cầu: {request}"); // Tạo phản hồi (thời gian hiện tại) string currentTime = DateTime.Now.ToString(); byte[] responseBytes = Encoding.UTF8.GetBytes(currentTime); // Gửi phản hồi cho client stream.Write(responseBytes, 0, responseBytes.Length); Console.WriteLine($"Gửi phản hồi: {currentTime}"); } catch (Exception ex) { Console.WriteLine($"Lỗi: {ex.Message}"); } finally { // Đóng kết nối client.Close(); } } } } ``` **Giải thích:** 1. **`using` Statements:** Import các namespaces cần thiết. 2. **`Main` Method:** * **`port`:** Xác định cổng mà máy chủ sẽ lắng nghe (mặc định là 25565, cổng mặc định của Minecraft). * **`TcpListener`:** Tạo một `TcpListener` để lắng nghe các kết nối đến trên tất cả các địa chỉ IP (`IPAddress.Any`) và cổng đã chỉ định. * **`listener.Start()`:** Bắt đầu lắng nghe các kết nối. * **`while (true)`:** Vòng lặp vô hạn để liên tục chấp nhận các kết nối đến. * **`listener.AcceptTcpClient()`:** Chấp nhận một kết nối TCP đến và trả về một `TcpClient` đại diện cho kết nối đó. * **`HandleClient(client)`:** Gọi phương thức `HandleClient` để xử lý kết nối trong một luồng riêng (trong ví dụ này, nó chạy đồng bộ, nhưng trong một ứng dụng thực tế, bạn nên sử dụng luồng hoặc tác vụ để tránh chặn luồng chính). 3. **`HandleClient` Method:** * **`NetworkStream stream = client.GetStream()`:** Lấy `NetworkStream` từ `TcpClient` để đọc và ghi dữ liệu. * **`stream.Read(...)`:** Đọc dữ liệu từ client vào một buffer. * **`Encoding.UTF8.GetString(...)`:** Chuyển đổi buffer byte thành một chuỗi (giả sử dữ liệu được mã hóa UTF-8). * **`DateTime.Now.ToString()`:** Lấy thời gian hiện tại và chuyển đổi nó thành một chuỗi. * **`Encoding.UTF8.GetBytes(...)`:** Chuyển đổi chuỗi thời gian thành một mảng byte. * **`stream.Write(...)`:** Gửi mảng byte (phản hồi) cho client. * **`client.Close()`:** Đóng kết nối. * **`try...catch...finally`:** Xử lý ngoại lệ và đảm bảo rằng kết nối được đóng ngay cả khi có lỗi. **Cách sử dụng:** 1. **Tạo một dự án .NET Core Console Application:** Sử dụng Visual Studio hoặc .NET CLI để tạo một dự án console mới. 2. **Sao chép mã:** Sao chép mã trên vào tệp `Program.cs` của dự án. 3. **Chạy ứng dụng:** Chạy ứng dụng từ Visual Studio hoặc bằng cách sử dụng lệnh `dotnet run` trong terminal. 4. **Kết nối từ client:** Sử dụng một client TCP (ví dụ: `telnet`, `nc`, hoặc một ứng dụng tùy chỉnh) để kết nối đến máy chủ trên cổng 25565. Gửi một yêu cầu (bất kỳ chuỗi nào cũng được, vì máy chủ này không thực sự phân tích cú pháp yêu cầu). 5. **Nhận phản hồi:** Client sẽ nhận được thời gian hiện tại từ máy chủ. **Lưu ý:** * Đây là một ví dụ rất đơn giản và không tuân thủ đầy đủ giao thức MCP. Nó chỉ minh họa cách tạo một máy chủ TCP cơ bản trong .NET Core. * Trong một ứng dụng thực tế, bạn sẽ cần xử lý các yêu cầu và phản hồi MCP đúng cách, bao gồm cả việc đóng gói và giải mã dữ liệu theo định dạng MCP. * Bạn nên sử dụng luồng hoặc tác vụ để xử lý các kết nối đồng thời để máy chủ có thể xử lý nhiều client cùng một lúc. * Hãy nhớ xử lý các ngoại lệ một cách thích hợp và ghi nhật ký các sự kiện quan trọng. Để làm cho nó trở thành một máy chủ MCP thực sự, bạn cần tìm hiểu về giao thức MCP và triển khai các chức năng cần thiết. Tuy nhiên, ví dụ này cung cấp một điểm khởi đầu tốt.
JR East Delay Information MCP Server
An MCP server that provides real-time delay information for JR East train lines, accessible via MCP clients like Claude Desktop through the 'getDelays' tool.
Gemini Agent MCP Server
Provides a Model Context Protocol interface to the Gemini CLI, enabling AI agents to call the Gemini model and interact with development tools like code linting, GitHub operations, and documentation generation. Includes security measures to prevent unauthorized file access through path validation.
Slack MCP
A .NET-based Model Context Protocol server and Python client for interacting with the Slack Web API. It enables AI models to manage channels, send messages, retrieve chat history, and handle emoji reactions.
MCP Server with SSE
Enables real-time data streaming through Server-Sent Events with timestamp broadcasting and server monitoring capabilities. Optimized for deployment on Render.com with health checks and status endpoints.
Labs64/NetLicensing-MCP
The official NetLicensing MCP Server is a natural language interface that enables agentic applications to manage the full software licensing lifecycle in Labs64 NetLicensing 👉🏼 without writing a single API call.
GitHub Copilot Usage MCP Server
An MCP server that retrieves current GitHub Copilot usage data, including quotas, limits, and usage statistics. It allows AI agents to monitor premium interaction status and detailed account usage via raw or formatted summaries.
freispace Analytics MCP Server
Enables AI assistants to query freispace scheduling software data including staff management, project analytics, resource availability, and holiday planning. Provides comprehensive insights for media teams while respecting user permissions and data safety.
BlenderMCP
Enables Claude Desktop to control Blender 5.0.1 on Windows for tasks such as creating 3D objects, executing Python scripts, and rendering scenes. It allows users to manage Blender's environment and perform 3D modeling operations using natural language commands.
ADT MCP Server
Enables interaction with SAP ABAP systems through ABAP Development Tools (ADT), providing access to repository objects, source code, where-used analysis, and SQL queries with support for both on-premise and BTP systems.
SSH MCP Server
An advanced SSH session manager that allows Claude to establish and manage multiple SSH connections, execute remote commands, and monitor connection health through the Model Context Protocol.
Woodpecker CI Pipeline Analyzer
Enables automated analysis of Woodpecker CI pipeline failures with intelligent error detection and fix suggestions. Supports both direct pipeline analysis and IDE-integrated git-context analysis using repository names, PR numbers, or branch information.
PDF Reader MCP Server
Enables reading, searching, and metadata extraction from PDF files without loading the entire content into the context window. It provides efficient tools for text cleaning, page-specific extraction, and context-aware search results.
ActivityWatch MCP Server
Enables LLM agents to query and analyze ActivityWatch time tracking data, including window activity, web browsing, and category management with natural language time periods and automatic data aggregation.
Jellyfin MCP Server
An MCP (Multi-Agent Conversation Protocol) Server that enables interaction with Jellyfin media server APIs, auto-generated using AG2's MCP builder based on the Jellyfin OpenAPI specification.
OpenAI MCP Server
Cho phép tích hợp với các mô hình OpenAI thông qua giao thức MCP, hỗ trợ các phản hồi ngắn gọn và chi tiết để sử dụng với Claude Desktop.