Discover Awesome MCP Servers
Extend your agent with 75,208 capabilities via MCP servers.
- All75,208
- 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
cointelegraph-mcp
Về chúng tôi Một máy chủ MCP cung cấp quyền truy cập theo thời gian thực vào những tin tức mới nhất từ Cointelegraph.
Second Brain MCP
Enables querying Tom Osborne's voice-cloned AI agent with a 21,000-article marketing knowledge base and his interview corpus to get answers in his voice.
Fabric Admin MCP Server
Provides MCP tools to manage Microsoft Fabric capacities, including listing, creating, updating, and deleting them, using Azure authentication.
MCP Server Template for Cloudflare Workers
A production-ready template for building MCP servers on Cloudflare Workers with social login (Google, Microsoft, GitHub), D1 database, admin dashboard, and built-in AI chat testing across multiple providers.
Vibe.co MCP Server
Enables AI assistants to interact with the Vibe CTV/streaming advertising platform, allowing listing of advertisers, apps, campaigns, and creating reports via the Vibe API.
factlog
A shared, append-only fact log that enables AI agents to coordinate on a workspace via MCP, CLI, REST, and web interfaces.
ai-model-selector-mcp
Provides AI assistants with structured access to metadata for 76+ AI models across Ollama, Claude, and OpenRouter, enabling capability queries, compatibility checks, model comparisons, and task-based recommendations.
Local Mcp Server Tutorial
Chắc chắn rồi, đây là hướng dẫn tạo máy chủ MCP cục bộ (stdio): **Hướng dẫn tạo máy chủ MCP cục bộ (stdio)** **1. Chuẩn bị:** * **Cài đặt Java Development Kit (JDK):** Đảm bảo bạn đã cài đặt JDK (phiên bản 8 trở lên) trên máy tính của mình. Bạn có thể tải xuống từ trang web của Oracle hoặc AdoptOpenJDK. * **Tải xuống MCP:** Tải xuống phiên bản MCP (Minecraft Coder Pack) phù hợp với phiên bản Minecraft bạn muốn mod. Bạn có thể tìm thấy MCP trên các diễn đàn modding Minecraft hoặc trang web chính thức của MCP. * **Phần mềm soạn thảo văn bản:** Sử dụng một trình soạn thảo văn bản như Notepad++, Visual Studio Code hoặc Sublime Text để chỉnh sửa các tệp cấu hình. **2. Giải nén MCP:** * Giải nén tệp MCP đã tải xuống vào một thư mục trên máy tính của bạn. Ví dụ: `C:\mcp`. **3. Cấu hình MCP:** * **Chỉnh sửa `conf/mcp.cfg`:** Mở tệp `conf/mcp.cfg` bằng trình soạn thảo văn bản. * **`DirClient = src`:** Đảm bảo dòng này được đặt thành `DirClient = src`. * **`DirServer = src`:** Đảm bảo dòng này được đặt thành `DirServer = src`. * **`UseSRG = 1`:** Đảm bảo dòng này được đặt thành `UseSRG = 1`. * **`Reobfuscate = 1`:** Đảm bảo dòng này được đặt thành `Reobfuscate = 1`. * **Lưu tệp `mcp.cfg`.** **4. Giải mã Minecraft:** * Mở cửa sổ dòng lệnh (Command Prompt hoặc Terminal) và điều hướng đến thư mục MCP. * Chạy lệnh sau: ```bash decompile.bat (hoặc ./decompile.sh trên Linux/macOS) ``` Quá trình này sẽ tải xuống Minecraft, giải mã và tạo các thư mục `src/minecraft` (cho client) và `src/minecraft_server` (cho server). Quá trình này có thể mất một chút thời gian. **5. Tạo máy chủ stdio:** * **Tạo tệp `start_server.bat` (hoặc `start_server.sh` trên Linux/macOS):** Trong thư mục MCP, tạo một tệp mới có tên `start_server.bat` (hoặc `start_server.sh`). * **Chỉnh sửa tệp `start_server.bat` (hoặc `start_server.sh`):** * **Windows (`start_server.bat`):** ```batch @echo off java -Xmx1024M -Xms1024M -cp bin/minecraft_server.jar net.minecraft.server.MinecraftServer --stdio pause ``` * **Linux/macOS (`start_server.sh`):** ```bash #!/bin/bash java -Xmx1024M -Xms1024M -cp bin/minecraft_server.jar net.minecraft.server.MinecraftServer --stdio ``` * **Giải thích:** * `-Xmx1024M -Xms1024M`: Cấp phát 1GB RAM cho máy chủ. Bạn có thể điều chỉnh giá trị này tùy thuộc vào lượng RAM có sẵn trên máy tính của bạn. * `-cp bin/minecraft_server.jar`: Chỉ định đường dẫn đến tệp JAR của máy chủ Minecraft đã giải mã. * `net.minecraft.server.MinecraftServer`: Chỉ định lớp chính để chạy máy chủ. * `--stdio`: Bật chế độ stdio, cho phép bạn tương tác với máy chủ thông qua dòng lệnh. * `pause` (chỉ dành cho Windows): Giữ cửa sổ dòng lệnh mở sau khi máy chủ dừng. **6. Chạy máy chủ:** * Mở cửa sổ dòng lệnh và điều hướng đến thư mục MCP. * Chạy tệp `start_server.bat` (hoặc `./start_server.sh` trên Linux/macOS). ```bash start_server.bat (hoặc ./start_server.sh) ``` * Máy chủ sẽ bắt đầu chạy và bạn sẽ thấy các thông báo trong cửa sổ dòng lệnh. **7. Kết nối với máy chủ:** * Khởi động Minecraft client. * Chọn "Multiplayer". * Chọn "Add Server". * Nhập "localhost" hoặc "127.0.0.1" làm địa chỉ máy chủ. * Kết nối với máy chủ. **Lưu ý:** * Máy chủ stdio không có giao diện đồ họa. Bạn sẽ tương tác với máy chủ thông qua dòng lệnh. * Bạn có thể sử dụng các lệnh Minecraft thông thường trong cửa sổ dòng lệnh để quản lý máy chủ. Ví dụ: `/op <tên người chơi>` để cấp quyền quản trị cho người chơi. * Để dừng máy chủ, hãy nhập lệnh `stop` trong cửa sổ dòng lệnh. **Khắc phục sự cố:** * **Lỗi "java.lang.NoClassDefFoundError":** Đảm bảo bạn đã cài đặt JDK và biến môi trường `JAVA_HOME` được cấu hình chính xác. * **Máy chủ không khởi động:** Kiểm tra kỹ các tệp cấu hình và đảm bảo bạn đã giải mã Minecraft thành công. * **Không thể kết nối với máy chủ:** Đảm bảo máy chủ đang chạy và tường lửa của bạn không chặn kết nối. Chúc bạn thành công!
VMware Fusion MCP Server
A Model Context Protocol server that allows managing VMware Fusion virtual machines through natural language, enabling users to list VMs, retrieve VM information, and perform power operations via the Fusion REST API.
Remote MCP Server on Cloudflare
A template for deploying secure Model Context Protocol servers to Cloudflare Workers with built-in OAuth authentication. It enables hosting and connecting remote tools to Claude Desktop using SSE transport and a local proxy.
MaxKB
💬 MaxKB là một chatbot RAG (Retrieval-Augmented Generation) sẵn sàng sử dụng, có quy trình làm việc mạnh mẽ và khả năng sử dụng công cụ MCP (Model Control Plane). Nó hỗ trợ nhiều mô hình ngôn ngữ lớn (LLM) phổ biến, bao gồm DeepSeek-R1, Llama 3.3, OpenAI và các mô hình khác.
fred-mcp
Enables users to search, retrieve, and explore economic data series from the Federal Reserve Economic Data (FRED) API using natural language.
GitLab MCP Server
Enables AI assistants to interact with GitLab projects by listing merge requests, issues, and pipelines via MCP tools.
MCP Demo
I'm sorry, I don't have enough information to translate "Mcp server of slack with python" into Vietnamese. "Mcp" is unclear. It could refer to several things. To provide an accurate translation, I need more context. Could you please clarify what "Mcp" refers to in this context? For example, is it: * **A specific library or framework?** (e.g., "Minecraft Protocol" if it's related to Minecraft) * **An abbreviation for a company or product?** * **A typo?** Once I understand what "Mcp" means, I can provide a proper Vietnamese translation. Here are a few possibilities, depending on what "Mcp" *might* mean: * **If "Mcp" is a typo and you meant "Micro":** "Máy chủ siêu nhỏ của Slack với Python" (Micro server of Slack with Python) * **If "Mcp" refers to a specific library/framework (please specify):** "Máy chủ [Tên thư viện/framework Mcp] của Slack với Python" (The [Mcp library/framework name] server of Slack with Python) * **If "Mcp" is an abbreviation (please specify):** "Máy chủ [Tên đầy đủ của Mcp] của Slack với Python" (The [Full name of Mcp] server of Slack with Python) Without knowing what "Mcp" is, I can only offer these general translations.
Redmine MCP Server
Model Context Protocol (MCP) server for Redmine that provides comprehensive access to the Redmine REST API. It allows you to operate Redmine from MCP clients such as Claude Desktop.
Arcaelas MCP
Provides AI-powered tools for image generation, text-to-speech conversion, background removal, and image upscaling through OpenAI and image processing APIs.
watsonx MCP Server
Enables Claude to delegate tasks to IBM watsonx.ai foundation models (Granite, Llama, Mistral) for text generation, chat, embeddings, and document analysis. Supports two-agent architectures where Claude can leverage IBM's enterprise AI capabilities for specialized workloads.
Amazon Nova Reel MCP Server
An MCP server for generating videos through Amazon Nova Reel 1.1 using AWS Bedrock, providing asynchronous video generation with comprehensive prompting guidelines and multiple transport methods.
mcp-vanguard
A security pentesting MCP server with 89 tools across 10 categories, enabling comprehensive reconnaissance, web security, OSINT, and exploitation tasks. It features a native Windows/WSL bridge for Kali Linux tools and scope-aware permission tiers for safe and efficient scanning.
HoudiniMCP
Connects Claude AI to Houdini via the Model Context Protocol, enabling prompt-assisted 3D modeling, scene manipulation, and rendering within Houdini.
sheet-compressor
Compresses spreadsheets into compact encodings, enables Q&A on sheet content, and extracts structured order data via LLM calls.
MetaEngine MCP Server
Enables agents to generate typed client code from OpenAPI, GraphQL, Protobuf, and SQL specs using MetaEngine's code-generation platform.
Codex Bridge MCP
Codex Bridge MCP is a local MCP orchestration service for a stable Claude Code x Codex CLI development workflow.
Sunshine Atlas MCP server
Provides climate data for 3,833 destinations including sunshine scores, temperatures, rainfall, and sea temperature, enabling users to find sunny destinations and compare climates via three tools.
EaseCation User Center MCP Server
An MCP server for the EaseCation user center that provides admin and user tools to interact with UC backend services.
mcp-arcgis-centennial
Enables searching and querying City of Centennial GIS open geospatial datasets (parcels, zoning, public works) via ArcGIS Feature Services.
Intelagent MCP Template
A Model Context Protocol server template designed for building custom servers using the @intelagent/mcp-shared library. It provides boilerplate code and example tools to streamline the development, testing, and deployment of new MCP servers.
wanderlog-mcp
Wanderlog-mcp is an MCP server that lets LLM agents plan and edit Wanderlog trip itineraries — adding places, hotels, notes, and checklists to any day, managing trip dates, and searching for destinations. It turns a conversational prompt into a fully built-out travel itinerary with practical details interleaved between each stop.
PEX MCP Server
Enables AI assistants to interact with the PEX Card External API to manage business accounts, cards, and transactions. It provides 72 tools for retrieving account balances, managing spending rules, and tracking business expenses through natural language.
Deep Research MCP Server
Enables iterative deep web research through MCP clients, using SearXNG search, Crawl4AI parsing, and LLM synthesis.