Discover Awesome MCP Servers

Extend your agent with 14,570 capabilities via MCP servers.

All14,570
MCP Resume Chat Server

MCP Resume Chat Server

Enables AI-powered conversations about resume/CV content and email notification sending through a comprehensive MCP server. Features a modern Next.js frontend with resume chat interface, email forms, and resume viewer for SE interview demonstrations.

Interactive Feedback MCP

Interactive Feedback MCP

MCP server that enables human-in-the-loop workflow in AI-assisted development tools by allowing users to provide direct feedback to AI agents without consuming additional premium requests.

MLB Projections MCP Server

MLB Projections MCP Server

An MCP server that enables interaction with MLB (Major League Baseball) v3 projections through the SportsData.io API, allowing access to baseball statistics and projections through natural language.

Gemini MCP Tool

Gemini MCP Tool

A Model Context Protocol server that enables AI assistants to interact with Google Gemini CLI, allowing them to leverage Gemini's large token window for analyzing files and codebases using natural language commands.

MCP Host Installation

MCP Host Installation

Tuyệt vời! Đây là cách bạn có thể tạo một MCP (Mod Control Panel) có khả năng cài đặt các MCP khác, với MCP cuối cùng được cài đặt thủ công thông qua chỉnh sửa `mcp.json`. MCP này sẽ được lưu trữ trên một host yêu thích và có thể cài đặt bất kỳ máy chủ nào bạn muốn: **Khái niệm:** * **MCP chính (Main MCP):** MCP này sẽ quản lý việc cài đặt các MCP khác. * **MCP con (Child MCP):** Các MCP được cài đặt bởi MCP chính. * **`mcp.json`:** Tệp cấu hình cho MCP, chứa thông tin về các mod, lệnh, v.v. **Bước 1: Tạo MCP chính (Main MCP)** 1. **Cấu trúc thư mục:** Tạo một thư mục cho MCP chính của bạn, ví dụ: `main_mcp`. Bên trong thư mục này, tạo một tệp `mcp.json`. 2. **Nội dung `mcp.json` (Main MCP):** ```json { "name": "Main MCP - Installer", "description": "MCP này có thể cài đặt các MCP khác.", "version": "1.0", "author": "Your Name", "commands": [ { "name": "install_mcp", "description": "Cài đặt một MCP từ URL.", "usage": "!install_mcp <URL>", "permission": "admin", "script": "install_mcp.js" } ] } ``` 3. **Tạo `install_mcp.js`:** Tạo một tệp JavaScript có tên `install_mcp.js` trong cùng thư mục với `mcp.json`. Nội dung của tệp này sẽ xử lý việc tải xuống và cài đặt MCP con. (Bạn cần điều chỉnh đoạn mã này cho phù hợp với host MCP của bạn, vì mỗi host có thể có các API khác nhau). Đây là một ví dụ khái quát: ```javascript module.exports = { run: async (client, message, args) => { if (!args[0]) { return message.reply("Vui lòng cung cấp URL của MCP cần cài đặt."); } const mcpUrl = args[0]; try { // Tải xuống mcp.json từ URL const response = await fetch(mcpUrl); const mcpData = await response.json(); // **Quan trọng:** Ở đây, bạn cần sử dụng API của host MCP của bạn để cài đặt MCP mới. // Ví dụ (giả định): // client.mcpManager.installMCP(mcpData); // Thay thế dòng trên bằng code phù hợp với host của bạn. message.reply(`Đã cố gắng cài đặt MCP từ ${mcpUrl}. Kiểm tra nhật ký để biết kết quả.`); } catch (error) { console.error("Lỗi khi cài đặt MCP:", error); message.reply(`Đã xảy ra lỗi khi cài đặt MCP từ ${mcpUrl}. Vui lòng kiểm tra nhật ký.`); } } }; ``` **Bước 2: Tạo MCP con (Child MCP)** 1. **Cấu trúc thư mục:** Tạo một thư mục cho MCP con của bạn, ví dụ: `child_mcp`. Bên trong thư mục này, tạo một tệp `mcp.json`. 2. **Nội dung `mcp.json` (Child MCP):** ```json { "name": "Child MCP - Example", "description": "MCP này chỉ là một ví dụ.", "version": "1.0", "author": "Your Name", "commands": [ { "name": "hello", "description": "Nói lời chào.", "usage": "!hello", "permission": "everyone", "script": "hello.js" } ] } ``` 3. **Tạo `hello.js`:** Tạo một tệp JavaScript có tên `hello.js` trong cùng thư mục với `mcp.json`. ```javascript module.exports = { run: async (client, message, args) => { message.reply("Xin chào!"); } }; ``` **Bước 3: Lưu trữ MCP con** 1. **Tải lên `child_mcp`:** Tải thư mục `child_mcp` lên một host web (ví dụ: GitHub Pages, GitLab Pages, hoặc một máy chủ web thông thường). Đảm bảo rằng bạn có thể truy cập tệp `mcp.json` của MCP con thông qua một URL công khai. Ví dụ: `https://example.com/child_mcp/mcp.json`. **Bước 4: Cài đặt MCP chính trên Host của bạn** 1. **Tải lên `main_mcp`:** Tải thư mục `main_mcp` lên host MCP yêu thích của bạn. (Quy trình này sẽ khác nhau tùy thuộc vào host bạn sử dụng. Hãy tham khảo tài liệu của host đó.) **Bước 5: Cài đặt MCP con bằng lệnh** 1. **Sử dụng lệnh `!install_mcp`:** Trong Discord (hoặc nơi bạn sử dụng MCP), sử dụng lệnh `!install_mcp <URL>`, thay thế `<URL>` bằng URL của tệp `mcp.json` của MCP con. Ví dụ: ``` !install_mcp https://example.com/child_mcp/mcp.json ``` **Bước 6: Cài đặt MCP cuối cùng bằng cách chỉnh sửa `mcp.json`** 1. **Tạo MCP cuối cùng (Final MCP):** Tạo một thư mục cho MCP cuối cùng của bạn, ví dụ: `final_mcp`. Bên trong thư mục này, tạo một tệp `mcp.json`. 2. **Nội dung `mcp.json` (Final MCP):** ```json { "name": "Final MCP - Server Installer", "description": "MCP này cài đặt một máy chủ.", "version": "1.0", "author": "Your Name", "commands": [ { "name": "install_server", "description": "Cài đặt máy chủ.", "usage": "!install_server", "permission": "admin", "script": "install_server.js" } ] } ``` 3. **Tạo `install_server.js`:** Tạo một tệp JavaScript có tên `install_server.js` trong cùng thư mục với `mcp.json`. **Quan trọng:** Nội dung của tệp này sẽ phụ thuộc rất nhiều vào loại máy chủ bạn muốn cài đặt và API mà host của bạn cung cấp. Đây chỉ là một ví dụ khái quát: ```javascript module.exports = { run: async (client, message, args) => { // **Quan trọng:** Sử dụng API của host MCP của bạn để cài đặt máy chủ. // Ví dụ (giả định): // client.serverManager.installServer("minecraft", "latest"); // Thay thế dòng trên bằng code phù hợp với host của bạn. message.reply("Đã cố gắng cài đặt máy chủ. Kiểm tra nhật ký để biết kết quả."); } }; ``` 4. **Chỉnh sửa `mcp.json` của MCP chính:** Tìm tệp `mcp.json` của MCP chính trên host của bạn. Thêm một mục mới vào mảng `mcps` (nếu có) hoặc tạo một mảng `mcps` mới nếu nó chưa tồn tại. Thêm thông tin về MCP cuối cùng của bạn vào đây. **Lưu ý:** Cách này hoạt động sẽ phụ thuộc vào cách host MCP của bạn xử lý việc tải MCP từ `mcp.json`. Đây là một ví dụ giả định: ```json { "name": "Main MCP - Installer", "description": "MCP này có thể cài đặt các MCP khác.", "version": "1.0", "author": "Your Name", "commands": [ { "name": "install_mcp", "description": "Cài đặt một MCP từ URL.", "usage": "!install_mcp <URL>", "permission": "admin", "script": "install_mcp.js" } ], "mcps": [ { "name": "Final MCP - Server Installer", "description": "MCP này cài đặt một máy chủ.", "version": "1.0", "author": "Your Name", "commands": [ { "name": "install_server", "description": "Cài đặt máy chủ.", "usage": "!install_server", "permission": "admin", "script": "install_server.js" } ] } ] } ``` **Quan trọng:** Bạn có thể cần phải khởi động lại hoặc làm mới MCP chính trên host của bạn để các thay đổi trong `mcp.json` có hiệu lực. **Bước 7: Sử dụng MCP cuối cùng** 1. **Sử dụng lệnh `!install_server`:** Sau khi MCP chính được làm mới, bạn sẽ có thể sử dụng lệnh `!install_server` (hoặc bất kỳ lệnh nào bạn đã định nghĩa trong `final_mcp/mcp.json`) để cài đặt máy chủ. **Lưu ý quan trọng:** * **API của Host MCP:** Đoạn mã trên chỉ là một ví dụ. Bạn *cần* phải sử dụng API cụ thể mà host MCP của bạn cung cấp để cài đặt MCP và máy chủ. Tham khảo tài liệu của host MCP của bạn để biết thêm chi tiết. * **Bảo mật:** Hãy cẩn thận khi cài đặt MCP từ các nguồn không đáng tin cậy. MCP có thể chứa mã độc hại. * **Xử lý lỗi:** Đảm bảo rằng bạn xử lý lỗi một cách thích hợp trong các tệp JavaScript của mình. * **Quyền:** Sử dụng hệ thống quyền của host MCP của bạn để hạn chế quyền truy cập vào các lệnh cài đặt. Chúc bạn thành công! Hãy nhớ rằng, việc này đòi hỏi bạn phải hiểu rõ về API của host MCP mà bạn đang sử dụng.

DoubleClick Bid Manager MCP Server

DoubleClick Bid Manager MCP Server

An MCP Server that provides a conversational interface to the DoubleClick Bid Manager API, allowing users to manage programmatic advertising campaigns through natural language interactions.

MCP YNAB Server 💰

MCP YNAB Server 💰

Custom MCP server for YNAB API (TypeScript)

MCP Server Implementations

MCP Server Implementations

Triển khai máy chủ tùy chỉnh cho Giao thức Điều khiển Mô hình (MCP) sử dụng Sự kiện do Máy chủ Gửi (SSE)

MCP-Confirm

MCP-Confirm

An MCP server implementing AI-user confirmation protocols, providing tools for LLMs to seek user confirmation when uncertain through yes/no questions, action confirmations, intent clarification, understanding verification, and satisfaction ratings.

Telegram MCP Server ✨📲

Telegram MCP Server ✨📲

MCP Server Demo

MCP Server Demo

A Model Context Protocol server that provides tools and resources for Java CI/CD workflows and GitLab CI template management.

MCP Echo Server

MCP Echo Server

MCP Gateway

MCP Gateway

Một cổng (gateway) dựa trên plugin, điều phối các MCP khác và cho phép các nhà phát triển xây dựng các tác nhân (agent) cấp doanh nghiệp dựa trên nó.

Youtube Uploader MCP

Youtube Uploader MCP

- Upload videos to YouTube from MCP - Client(Claude/Cursor/VS Code) - OAuth2 authentication flow - Access token and refresh token management - Multi Channel Support

Fact Check Tools MCP Server

Fact Check Tools MCP Server

An MCP server that enables interaction with Google's Fact Check Tools API, allowing users to query and manage fact-check claims and publishers through natural language commands.

remote-mcp-server

remote-mcp-server

Mcp Server Amq

Mcp Server Amq

Máy chủ MCP để tương tác với các API AWS AmazonMQ

MCP PDF Server

MCP PDF Server

A Model Context Protocol (MCP) based server that efficiently manages PDF files, allowing AI coding tools like Cursor to read, summarize, and extract information from PDF datasheets to assist embedded development work.

Israel Statistics MCP

Israel Statistics MCP

MCP server that provides programmatic access to the Israeli Central Bureau of Statistics (CBS) price indices and economic data

MCP Odoo Shell

MCP Odoo Shell

A bridge server that provides access to an Odoo shell environment, allowing execution of Python code within an Odoo database context for model introspection and database operations.

Interzoid Weather City API MCP Server

Interzoid Weather City API MCP Server

An MCP server that provides access to the Interzoid GetWeatherCity API, allowing users to retrieve weather information for specified cities through natural language interactions.

Square MCP Server by CData

Square MCP Server by CData

This read-only MCP Server allows you to connect to Square data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp

MCP Simple Server

MCP Simple Server

Một máy chủ đơn giản triển khai Giao thức Ngữ cảnh Mô hình (Model Context Protocol) cho tìm kiếm tài liệu.

LumenX-MCP Legal Spend Intelligence Server

LumenX-MCP Legal Spend Intelligence Server

MCP server that enables intelligent analysis of legal spend data across multiple sources (LegalTracker, databases, CSV/Excel files), providing features like spend summaries, vendor performance analysis, and budget comparisons.

WordPress Code Review MCP Server

WordPress Code Review MCP Server

A lightweight, configurable server that fetches coding guidelines, security rules, and validation patterns from external sources to help development teams maintain code quality standards in WordPress projects.

YouTube to LinkedIn MCP Server

YouTube to LinkedIn MCP Server

Gương của

Oracle Sales MCP Server by CData

Oracle Sales MCP Server by CData

This read-only MCP Server allows you to connect to Oracle Sales data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp

Kodit

Kodit

A Code Indexing MCP Server that connects AI coding assistants to external codebases, providing accurate and up-to-date code snippets to reduce mistakes and hallucinations.

web-monitor-mcp-safepoint

web-monitor-mcp-safepoint

The mcp server for safepoint web monitor

OpenTargets MCP Server

OpenTargets MCP Server

Unofficial Model Context Protocol server for accessing Open Targets platform data for gene-drug-disease associations research.