Discover Awesome MCP Servers
Extend your agent with 26,654 capabilities via MCP servers.
- All26,654
- 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
OmniFocus MCP Server
Enables AI-powered task management in OmniFocus with support for project reviews, planned dates, repeating tasks, custom perspectives, hierarchical subtasks, and advanced filtering. Perfect for Claude AI integration with comprehensive CRUD operations for tasks, projects, and folders.
MCP-OPENAPI-DOCX
Enterprise-grade document editing and management server that enables AI-powered operations on Microsoft Word DOCX files, including creating, editing, formatting, and exporting documents through both MCP protocol and RESTful API.
Spec-Driven Development MCP Server
Facilitates spec-driven development workflows by providing structured prompts for generating requirements in EARS format, design documents, and implementation code following a systematic approach.
Mcp Spring Server Samples
weather-mcp-server
weather-mcp-server
Delta Air Lines MCP Server
Enables AI agents to automate Delta Air Lines tasks such as searching flights, managing bookings, and checking SkyMiles balances through Playwright-based browser automation. It supports the complete travel workflow including seat selection, check-in, and digital boarding pass retrieval.
Certificate Authority API Server
An MCP server for Google's Certificate Authority API that enables management of private certificate authorities through natural language interactions.
Beszel MCP Server
Enables interaction with Beszel system monitoring tool to query system and container statistics, manage alerts, and monitor infrastructure through its PocketBase backend.
AS400 MCP Server
Enables development support for AS400/IBM i systems by providing read-only access to metadata, source code, and program dependencies via ODBC. It supports CL, RPG, and COBOL environments, allowing users to retrieve library, table, and system information.
Saga MCP
A Jira-like project tracker MCP server for AI agents. SQLite-backed, per-project scoped, with full hierarchy and activity logging — so LLMs never lose track. No more scattered markdown files. saga-mcp gives your AI assistant a structured database to track projects, epics, tasks, subtasks, notes, and decisions across sessions.
Documentación del TFG: Interconexión entre Espacios de Datos e Inteligencia Artificial Generativa
Thiết kế và Triển khai kết nối giữa LLM và Không gian Dữ liệu bằng Giao thức Ngữ cảnh Mô hình (MCP)
db4app Todo MCP Server
Enables LLMs to manage a todo list application through the Model Context Protocol, connecting directly to a browser-based Postgres database to add, list, complete, and remove todo items with categories, priorities, and due dates.
ProfitPlay MCP Server
Enables AI agents to interact with the ProfitPlay prediction market to trade short-term price movements of cryptocurrencies and stocks. It provides tools for market analysis, automated betting, account registration, and leaderboard tracking.
MCP Starter Project
Okay, here's a breakdown of how to set up an MCP (Mod Configuration Protocol) server and client, along with explanations and considerations for different scenarios. Keep in mind that MCP is often used in the context of Minecraft modding, so I'll assume that's your use case. If you're referring to something else, please provide more context. **Understanding MCP (Minecraft Coder Pack)** MCP is a toolset that deobfuscates and reobfuscates Minecraft's code. This makes it much easier for modders to understand and modify the game. It's *not* a server or client in the traditional sense of a game server. It's a development environment. **Setting up MCP (Assuming Minecraft Modding)** Here's a general outline of the process. The exact steps can vary slightly depending on the MCP version and Minecraft version you're targeting. I'll provide a general guide and then point you to resources for specific versions. **1. Prerequisites:** * **Java Development Kit (JDK):** You need the correct version of the JDK for the Minecraft version you're modding. Minecraft 1.16 and later generally require Java 8 or higher. Minecraft 1.17 and later require Java 17 or higher. Make sure you have the correct JDK installed and configured. You can download it from Oracle or a distribution like Adoptium (Temurin). * **Python:** MCP uses Python scripts. You'll need Python 2.7 or Python 3. Check the MCP documentation for the specific version you need. * **Sufficient RAM:** Decompiling and recompiling Minecraft can be memory-intensive. Allocate enough RAM to your system. **2. Download MCP:** * Find the MCP version that corresponds to the Minecraft version you want to mod. A good place to start is the MCPBot website or a relevant modding forum (like MinecraftForge forums). Be *very* careful about where you download from; stick to trusted sources. **3. Extract MCP:** * Extract the downloaded MCP archive to a directory on your computer (e.g., `C:\mcp` or `/home/user/mcp`). **4. Configure MCP:** * **`conf/mcp.cfg`:** This is the main configuration file. You'll need to edit it to point to your Minecraft installation and set other options. Key settings include: * `MinecraftDir`: The directory where your Minecraft client is installed (usually `.minecraft`). * `ClientJar`: The path to the Minecraft client JAR file. * `ServerJar`: The path to the Minecraft server JAR file (if you're modding the server). * `Fernflower`: Set to `True` to use Fernflower decompiler (recommended). * `UseSrgNames`: Set to `True` to use SRG names (more readable). **5. Decompile Minecraft:** * Open a command prompt or terminal and navigate to the MCP directory. * Run the appropriate command to decompile Minecraft. This usually involves a Python script: ```bash python decompile.py ``` or ```bash ./decompile.sh (on Linux/macOS) ``` This process will take a while as it decompiles the Minecraft client and server code. It will create source code files in the `src/minecraft` directory. **6. Set up an IDE (Integrated Development Environment):** * **IntelliJ IDEA:** A popular choice for Java development. It has excellent support for Minecraft modding. * **Eclipse:** Another common IDE. * **Visual Studio Code:** With the right extensions, VS Code can also be used. **7. Import MCP into your IDE:** * Create a new Java project in your IDE. * Import the source code from the `src/minecraft` directory into your project. You'll also need to include the Minecraft libraries (JAR files) as dependencies. MCP usually provides scripts or instructions for setting up the classpath. **8. Start Modding:** * Now you can start modifying the Minecraft source code. Remember that you're working with deobfuscated code, so it's much easier to understand. **9. Recompile and Reobfuscate:** * After you've made your changes, you need to recompile the code and reobfuscate it. Use the MCP scripts: ```bash python recompile.py python reobfuscate.py ``` or ```bash ./recompile.sh ./reobfuscate.sh ``` This will create new JAR files with your modifications. **10. Test Your Mod:** * Copy the reobfuscated JAR files to your Minecraft `mods` directory. * Run Minecraft and test your mod. **Important Considerations:** * **MinecraftForge/Fabric:** Modern modding often uses mod loaders like MinecraftForge or Fabric. These provide APIs and frameworks that make modding easier and more compatible. If you're using Forge or Fabric, you'll need to follow their specific setup instructions. MCP is less commonly used directly with Forge/Fabric these days, as they provide their own development environments. * **Mappings:** Mappings are crucial for deobfuscation. They map the obfuscated names in the Minecraft code to more readable names. MCP uses mappings, but you might also encounter other mapping formats (like those used by Forge). * **Version Compatibility:** Make sure your MCP version, Minecraft version, Forge/Fabric version (if applicable), and JDK version are all compatible. Incompatibilities can lead to errors and crashes. * **Documentation:** Refer to the official MCP documentation and the documentation for any mod loaders you're using. **Example (Simplified, using Forge):** 1. **Install Forge:** Download and install the correct version of Forge for your Minecraft version. 2. **Create a Forge project:** Use the Forge MDK (Mod Development Kit) to create a new mod project. This will set up a basic project structure with the necessary dependencies. 3. **Develop your mod:** Write your mod code in the `src/main/java` directory. 4. **Build your mod:** Use Gradle (the build tool used by Forge) to build your mod. 5. **Test your mod:** Copy the built JAR file to your Minecraft `mods` directory. **Vietnamese Translation (Summary):** Để thiết lập MCP (Minecraft Coder Pack), bạn cần: 1. **Cài đặt các phần mềm cần thiết:** JDK (Java Development Kit) phiên bản phù hợp với Minecraft, Python. 2. **Tải MCP:** Tải phiên bản MCP tương ứng với phiên bản Minecraft bạn muốn chỉnh sửa. 3. **Giải nén MCP:** Giải nén vào một thư mục trên máy tính. 4. **Cấu hình MCP:** Chỉnh sửa file `conf/mcp.cfg` để chỉ đến thư mục Minecraft của bạn. 5. **Giải mã Minecraft (Decompile):** Chạy lệnh `python decompile.py` để giải mã mã nguồn Minecraft. 6. **Thiết lập IDE:** Sử dụng IntelliJ IDEA hoặc Eclipse để lập trình. 7. **Nhập MCP vào IDE:** Tạo một dự án Java và nhập mã nguồn từ thư mục `src/minecraft`. 8. **Bắt đầu chỉnh sửa (Modding):** Thay đổi mã nguồn Minecraft. 9. **Biên dịch lại và mã hóa lại (Recompile and Reobfuscate):** Chạy lệnh `python recompile.py` và `python reobfuscate.py`. 10. **Kiểm tra Mod:** Sao chép file JAR đã được mã hóa lại vào thư mục `mods` của Minecraft. **Lưu ý quan trọng:** * **MinecraftForge/Fabric:** Sử dụng Forge hoặc Fabric để dễ dàng hơn và tương thích hơn. * **Mappings:** Mappings rất quan trọng để giải mã mã nguồn. * **Phiên bản tương thích:** Đảm bảo các phiên bản MCP, Minecraft, Forge/Fabric (nếu có) và JDK tương thích với nhau. * **Tài liệu:** Tham khảo tài liệu chính thức của MCP và các mod loader bạn đang sử dụng. **Where to Find More Specific Instructions:** * **MCPBot:** Search for "MCPBot" to find the official website (if it's still active). * **MinecraftForge Forums:** The Forge forums are a great resource for modding information. * **Fabric Wiki:** If you're using Fabric, the Fabric wiki has excellent documentation. * **YouTube Tutorials:** Search for "Minecraft modding tutorial" for your specific Minecraft version. Remember to be patient and persistent. Modding can be challenging, but it's also very rewarding. Good luck!
Mureka MCP Server
Enables interaction with Mureka's AI music generation APIs to create lyrics, songs, and background music through MCP clients like Claude Desktop and OpenAI Agents.
Claude MCP Data Engineer Server
Provides specialized tools for data engineering tasks like SQL formatting, dbt model generation, and Snowflake table creation. It enables users to analyze CSV data, validate pipeline configurations, and summarize ETL lineage through natural language.
calendar-mcp-server
MCP server to get google calendar
Dataverse MCP Server
Enables comprehensive schema and solution management for Microsoft Dataverse, including operations for tables, columns, relationships, and security roles via the Dataverse Web API. It also supports PowerPages configuration, automated WebAPI call generation, and schema visualization through Mermaid ERD diagrams.
Sakari MCP Server
A Multi-Agent Conversation Protocol server that enables interaction with the Sakari.io API, auto-generated using AG2's MCP builder for simplified natural language access to Sakari's messaging services.
EOSC Data Commons Search
Enables natural language search and discovery of open-access scientific datasets through the EOSC Data Commons OpenSearch service. Provides tools to search datasets and retrieve file metadata using LLM-assisted queries.
mcp-rss-aggregator
mcp-rss-aggregator
project-shield
Security scanner for MCP servers and AI-generated code. Detects leaked API keys, PII, prompt injection, and MCP misconfigs with A-F security grades.
OpenClaw-xiaozhi MCP Server
A bridge server that connects MCP-compatible clients to the OpenClaw (Jarvis) AI assistant for asynchronous task processing and real-time WebSocket communication. It enables users to send intents, execute tasks, and query results using a suite of tools including process_intent, ask_jarvis, and execute_task.
Apps Script MCP
Enables users to create, manage, and execute Google Apps Script projects through natural language. It provides comprehensive tools for code editing, function execution, deployment management, and monitoring script processes.
Weather MCP Server
Một máy chủ thông tin thời tiết được xây dựng bằng Giao thức Ngữ cảnh Mô hình (Model Context Protocol - MCP) để cung cấp dữ liệu thời tiết và dự báo thời gian thực.
Youtube138 MCP Server
Provides access to the Youtube138 API for searching videos, retrieving channel information, viewing comments, getting video details, and exploring trending content on YouTube.
SQL MCP Server
A Model Context Protocol server that provides a standardized interface for interacting with SQL databases through the MCP protocol.
Slack Lists MCP Server
Enables AI assistants to interact with Slack Lists through comprehensive tools for creating, retrieving, filtering, and managing list items. Supports bulk operations, data export, subtask creation, and all Slack List field types with robust error handling and production-ready implementation.
HopGraph MCP
Verify Australian and New Zealand businesses against government registers via any MCP-compatible AI agent. Returns registration status, directors, licences, trading names, and a three-tier risk assessment (CLEAR / ADVISORY / FLAGS_FOUND) that surfaces regulatory findings across jurisdictions — including bans, disqualifications, and insolvencies that may not appear in any single register.
macOS Automator MCP Server
A Model Context Protocol server that enables execution of AppleScript and JavaScript for Automation scripts on macOS, allowing programmatic control of applications and system functions through a rich knowledge base of pre-defined scripts.