Discover Awesome MCP Servers
Extend your agent with 26,882 capabilities via MCP servers.
- All26,882
- 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
HybridHub
Enables unified access to both structured databases (PostgreSQL, MySQL, SQLite, etc.) and unstructured object storage (AWS S3, Alibaba OSS, Huawei OBS, etc.) through a single interface.
GoDaddy Orders MCP Server
MCP Server that enables interaction with GoDaddy's Orders API using natural language, auto-generated from the OTE GoDaddy Orders OpenAPI specification.
Manual RAG — SIH/SUS Query System
A RAG-based MCP server for natural language querying of Brazilian healthcare manuals (SIH/SUS, SIA/SUS) and official ordinances. It provides 16 tools for semantic search, regulatory critique analysis, and retrieving data from SIGTAP and CNES.
Tiendanube MCP Server
Enables comprehensive management of Tiendanube and Nuvemshop stores, supporting operations for products, orders, customers, and categories. It provides flexible integration through SSE, HTTP, and STDIO transport modes with full Docker support.
SQL Query MCP Server
A FastMCP server that enables natural language querying of PostgreSQL databases through LLM integration, allowing users to generate SQL queries from plain English and visualize the results.
Lodgify MCP Server
Enables interaction with the Lodgify vacation rental API to manage properties, bookings, and calendar data. It provides tools for retrieving property details, creating or updating bookings, and monitoring rental availability.
Mcp-server-v2ex
Tuyệt vời! Dưới đây là bản dịch và một số gợi ý để bạn bắt đầu xây dựng máy chủ Minecraft (MCP) đơn giản bằng TypeScript: **Bản dịch:** "Simple learn mcp server build with ts" -> "Xây dựng máy chủ MCP đơn giản bằng TS (TypeScript) để học." **Gợi ý để bắt đầu:** Để xây dựng một máy chủ Minecraft đơn giản bằng TypeScript, bạn có thể làm theo các bước sau: 1. **Thiết lập môi trường:** * Đảm bảo bạn đã cài đặt Node.js và npm (hoặc yarn). * Tạo một thư mục dự án mới. * Khởi tạo dự án npm bằng `npm init -y`. * Cài đặt TypeScript: `npm install -D typescript @types/node` * Tạo file `tsconfig.json` để cấu hình TypeScript (ví dụ đơn giản): ```json { "compilerOptions": { "target": "es6", "module": "commonjs", "outDir": "./dist", "rootDir": "./src", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true } } ``` 2. **Cấu trúc dự án:** * Tạo thư mục `src` để chứa mã nguồn TypeScript của bạn. * Trong `src`, bạn có thể tạo các file như `index.ts` (điểm bắt đầu của máy chủ), `player.ts`, `world.ts`, v.v. để tổ chức mã. 3. **Chọn thư viện:** * Bạn có thể sử dụng các thư viện để giúp bạn xử lý các giao thức Minecraft. Một số lựa chọn phổ biến (mặc dù có thể cần điều chỉnh để phù hợp với phiên bản Minecraft bạn muốn hỗ trợ): * **node-minecraft-protocol:** Thư viện này cung cấp các chức năng để xử lý giao thức Minecraft. Tuy nhiên, nó có thể cần được cập nhật để hỗ trợ các phiên bản Minecraft mới nhất. * **prismarine-proxy:** Một phần của bộ thư viện PrismarineJS, có thể giúp bạn tạo proxy và tương tác với máy chủ Minecraft. * **mineflayer:** Thường được sử dụng cho bot, nhưng có thể cung cấp một số chức năng hữu ích để tương tác với máy chủ. 4. **Ví dụ đơn giản (index.ts):** ```typescript import * as net from 'net'; const server = net.createServer((socket) => { console.log('Client connected'); socket.on('data', (data) => { console.log('Received data:', data); // Xử lý dữ liệu nhận được từ client Minecraft ở đây // (ví dụ: giải mã gói tin, xử lý lệnh, v.v.) }); socket.on('close', () => { console.log('Client disconnected'); }); socket.on('error', (err) => { console.error('Socket error:', err); }); }); const port = 25565; // Cổng mặc định của Minecraft server.listen(port, () => { console.log(`Server listening on port ${port}`); }); ``` 5. **Biên dịch và chạy:** * Chạy `tsc` để biên dịch mã TypeScript thành JavaScript (các file JavaScript sẽ được tạo trong thư mục `dist`). * Chạy máy chủ bằng `node dist/index.js`. **Lưu ý quan trọng:** * **Giao thức Minecraft phức tạp:** Giao thức Minecraft rất phức tạp và thay đổi theo từng phiên bản. Bạn sẽ cần tìm hiểu về giao thức để có thể xử lý các gói tin (packets) một cách chính xác. * **Bảo mật:** Khi xây dựng máy chủ Minecraft, hãy chú ý đến các vấn đề bảo mật để tránh các cuộc tấn công. * **Phiên bản Minecraft:** Chọn một phiên bản Minecraft cụ thể mà bạn muốn hỗ trợ và tìm hiểu về giao thức của phiên bản đó. * **Học hỏi từ các dự án khác:** Xem mã nguồn của các dự án máy chủ Minecraft mã nguồn mở khác có thể giúp bạn hiểu rõ hơn về cách hoạt động của chúng. **Các bước tiếp theo:** 1. **Tìm hiểu về giao thức Minecraft:** Bắt đầu bằng cách tìm hiểu về cách giao thức hoạt động, các loại gói tin, và cách mã hóa/giải mã chúng. 2. **Xử lý bắt tay (handshake):** Triển khai logic để xử lý quá trình bắt tay khi client kết nối. 3. **Xử lý đăng nhập:** Triển khai logic để xử lý quá trình đăng nhập của người chơi. 4. **Gửi dữ liệu thế giới:** Tìm hiểu cách gửi dữ liệu về thế giới (chunks) cho client. 5. **Xử lý di chuyển của người chơi:** Triển khai logic để theo dõi và xử lý di chuyển của người chơi. 6. **Xử lý chat:** Triển khai logic để xử lý tin nhắn chat. Chúc bạn thành công! Đây là một dự án khá phức tạp, nhưng nó sẽ là một trải nghiệm học tập tuyệt vời. Hãy bắt đầu từ những bước đơn giản và dần dần xây dựng các tính năng phức tạp hơn.
Armor Crypto MCP
Enables AI agents to interact with cryptocurrency ecosystems through wallet management, trading operations (swaps, DCA, limit orders), staking, and multi-chain support starting with Solana.
Instagram MCP Investigator
Automates Instagram profile scraping using Playwright with saved login sessions and generates AI-powered analytical reports. Enables users to extract profile data, recent posts metadata, and receive OpenAI-generated summaries through natural language interactions.
Remote MCP Server (Authless)
A template for deploying an authentication-free MCP server on Cloudflare Workers. Enables easy deployment and connection to MCP clients like Claude Desktop or Cloudflare AI Playground via Server-Sent Events.
MCP API Bridge Server
A Model Context Protocol server that bridges Google Sheets, Azure AI, and MQTT APIs to facilitate spreadsheet code generation, AI chat integration, and comprehensive IoT device management. It allows users to perform CRUD operations on spreadsheets, integrate Azure AI models, and handle real-time MQTT messaging for IoT applications.
LCBro
Enables browser automation, web content extraction, and LLM-powered data transformation using Playwright. Supports session management, authentication flows, and works with local LLMs (Ollama, JAN AI) or external providers to clean and structure extracted web data.
Unleash Mcp
Một triển khai máy chủ Giao thức Ngữ cảnh Mô hình (MCP) tích hợp với hệ thống Chuyển đổi Tính năng Unleash.
MCPServerDemo
A demonstration server that implements JSON-RPC 2.0 methods for basic arithmetic using FastAPI. It provides integration examples for the Model Context Protocol (MCP) using FastMCP to connect with Claude Desktop.
Firebase Realtime Database API MCP Server
An MCP Server that provides natural language access to Google's Firebase Realtime Database API, enabling database operations and management through conversation.
🛠️ Simple MCP Example with Claude and a Local JSON HTTP Server
Tuyệt vời! Đây là bản dịch sang tiếng Việt: **Máy chủ MCP đơn giản sử dụng Claude để tương tác với một máy chủ JSON cục bộ** Hoặc, một cách diễn đạt khác: **Máy chủ MCP cơ bản, dùng Claude để giao tiếp với máy chủ JSON chạy trên máy** Cả hai đều truyền tải ý nghĩa tương tự. Tùy thuộc vào ngữ cảnh, bạn có thể chọn cách diễn đạt nào nghe tự nhiên hơn.
MCP Novel Assistant
A novel management tool that uses SQLite database to store and manage novel information including chapters, characters, and plot outlines. Provides database operations and SQL query capabilities for writers to organize their creative work through natural language.
workflows-mcp
A Model Context Protocol implementation that enables LLMs to execute complex, multi-step workflows combining tool usage with cognitive reasoning, providing structured, reusable paths through tasks with advanced control flow.
MCP - Management Control Panel
An advanced management platform that integrates FastAPI and React TypeScript, providing a modern user interface with SQLite database and action history tracking.
Simple MCP Server
A self-contained, dependency-free MCP server that provides utility tools for time, date, mathematical calculations, and shell command execution. It supports remote connectivity through SSE and is designed for easy deployment via Docker.
TimeCamp MCP Server
A Model Context Protocol server that provides time tracking integration with TimeCamp, allowing AI assistants to create, retrieve, update, and delete time entries through natural language commands.
WebSim MCP Server
Enables interaction with WebSim's public API to browse projects, discover trending content, search assets, manage user profiles, and access community comments and discussions.
Virtuoso Schematic MCP
Enables interaction with Cadence Virtuoso schematics to inspect hierarchies, nets, and instance properties via SkillBridge. It provides tools for component inspection and schematic validation to ensure design integrity.
PDF Agent MCP
Enables AI agents to efficiently process large local and online PDFs through selective extraction of text, images, and metadata. It provides tools for content search and document outline navigation to optimize context window usage.
git-steer
An autonomous GitHub management engine that enables control over repositories, branches, security alerts, and Actions workflows through natural language. It utilizes a zero-local-footprint architecture by storing all configuration and audit logs within a private state repository on GitHub.
MCP Reminder Service
Enables sending messages and scheduling reminders through multiple platforms including Telegram and Feishu. Supports real-time messaging and cron-based scheduled notifications with comprehensive logging and error handling.
Raisers Edge NXT MCP Server by CData
This project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our free CData MCP Server for Raisers Edge NXT (beta): https://www.cdata.com/download/download.aspx?sku=JZZK-V&type=beta
Deno MCP Template Repo
Một kho lưu trữ mẫu để viết và xuất bản các máy chủ MCP bằng Deno.
WordPress MCP Server
Máy chủ Giao thức Giao tiếp Máy (MCP) để xuất bản nội dung lên các trang WordPress.
MCP Server
Đây là một kho lưu trữ cho các máy chủ MCP.