Discover Awesome MCP Servers
Extend your agent with 16,658 capabilities via MCP servers.
- All16,658
- 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
die-mcp
Detect It Easy (DIE) MCPサーバー
Model Context Protocol for Unreal Engine
Cursor、Windsurf、Claude DesktopなどのAIアシスタントクライアントが、Model Context Protocol(MCP)を使用して自然言語でUnreal Engineを制御できるようにします。
Ramp MCP Server
A Model Context Protocol server that enables LLMs to interact with Ramp's financial data by retrieving, analyzing, and running tasks through Ramp's Developer API, using an in-memory SQLite database to overcome token limitations.
MCP-KF-SERVER
Remote MCP Server Template
A template for deploying MCP servers on Cloudflare Workers without authentication. Enables easy deployment and connection to AI clients like Claude Desktop and Cloudflare AI Playground.
JSON DB MCP Server
Enables users to manage data in a simple JSON file database through MCP tools and REST API. Supports creating, reading, updating, and deleting items organized in collections with auto-generated UUIDs.
Facebook Insights Metrics v23
Provides access to 120+ Facebook Graph API v23.0 Insights metrics through MCP tools and resources. Features intelligent fuzzy search capabilities and real-time metric discovery for comprehensive Facebook analytics data.
Rossum MCP Server
A Model Context Protocol server that provides AI agents with read-only access to Rossum API resources (queues, schemas, hooks, workspaces) for analysis purposes.
MCP-server-HF-papers
このリポジトリは、WhatsApp経由でHF日刊紙とやり取りできるMCPサーバーです。
Model Context Protocol .NET Template
このリポジトリには、.NETでModel Context Protocol (MCP) アプリケーションを作成するためのテンプレートが含まれています。
db-mcp
データベースモデルコンテキストプロトコル (DB-MCP) サーバー
Jira MCP Server
Connects Jira with Claude, enabling users to search issues, view issue details, update issues, add comments, and retrieve project information through natural language commands.
SearchAPI MCP Server
Model Context Protocol server that enables AI assistants like Claude to access searchapi.io API for searching Google Maps, flights, hotels, and other web information.
Unofficial WCA MCP Server
Enables AI assistants to access World Cube Association speedcubing data including world records, competitor profiles, competition information, and championship results. Supports queries about rankings, competition schedules, and detailed speedcubing statistics through natural language.
Azure DevOps MCP Server
Enables interaction with Azure DevOps work items through AI assistants like VS Code/GitHub Copilot. Supports fetching work item details and updating work item statuses using natural language commands.
Voice Mode
Natural voice conversations for AI assistants that brings human-like voice interactions to Claude, ChatGPT, and other LLMs through the Model Context Protocol (MCP).
AWS Documentation MCP Server
Enables users to access, search, and get recommendations from AWS documentation through natural language queries. Supports both global AWS documentation and AWS China documentation with tools to fetch pages, search content, and discover related resources.
MCP Server Tutorial
OSV
The server can be utilized for secure development by listing all packages' CVEs, their affected versions and their fix versions.
Model Context Protocol (MCP) Server Project
MSI Metadata MCP Server
Enables reading MSI installer metadata, analyzing Windows software packages, and generating silent installation commands. Provides comprehensive MSI file analysis including features, components, and registry-based installed application management.
mcp_docs_server
Okay, I can help you with that! Building an MCP (Minecraft Coder Pack) server involves a few steps. To give you the best guidance, I need to know what you're trying to achieve. Are you trying to: * **Set up a development environment to modify Minecraft's code?** (This is the most common use of MCP) * **Run a server with modified Minecraft code?** (This is less common, but possible) Assuming you want to set up a development environment to modify Minecraft's code, here's a breakdown of the process and the help I can provide: **1. Prerequisites:** * **Java Development Kit (JDK):** You need the correct version of the JDK for the Minecraft version you're working with. MCP usually specifies the required JDK version. **Crucially, this is often an older version of Java (Java 8 or Java 17 are common).** Make sure you have the correct one installed and configured. * **Python:** MCP uses Python scripts for decompilation, reobfuscation, and patching. You'll need Python 3.6 or higher. * **A good IDE (Integrated Development Environment):** IntelliJ IDEA or Eclipse are highly recommended. They have excellent Java support and can be configured to work well with MCP. * **Sufficient RAM:** Decompiling and reobfuscating Minecraft can be memory-intensive. 8GB of RAM is a good starting point, but more might be needed for newer versions. **2. Downloading and Setting Up MCP:** * **Download MCP:** Get the correct MCP version for the Minecraft version you want to modify. You can usually find MCP downloads on dedicated forums or websites (like the MCP Discord). Be *very* careful about where you download from, as there are malicious versions out there. Stick to trusted sources. * **Extract MCP:** Extract the downloaded MCP archive to a directory on your computer. Avoid spaces in the directory path. * **Configure `build.properties`:** This file is located in the MCP directory. You'll need to configure it with the correct paths to your JDK and other settings. Pay close attention to the comments in the file. Key settings include: * `JavaDir`: The path to your JDK installation directory. * `MCPDir`: The path to your MCP directory. * `ClientJar`: The path to the client Minecraft JAR file. * `ServerJar`: The path to the server Minecraft JAR file. * `MinecraftVersion`: The Minecraft version you are using. **3. Decompiling Minecraft:** * **Run `decompile.bat` (Windows) or `decompile.sh` (Linux/macOS):** This script will decompile the Minecraft client and server JAR files. This is a time-consuming process. Be patient. * **Address Errors:** Decompilation can sometimes fail with errors. Read the error messages carefully. Common causes include: * Incorrect JDK version. * Missing or corrupted JAR files. * Insufficient RAM. * Incorrect paths in `build.properties`. **4. Setting Up Your IDE:** * **Create a New Project:** In your IDE, create a new Java project. * **Import the MCP Source Code:** Import the decompiled source code from the `src/minecraft` directory in your MCP directory into your IDE project. You'll likely need to configure your IDE to recognize the MCP directory structure. * **Configure Libraries:** Add the necessary libraries from the `lib` directory in your MCP directory to your IDE project. These libraries are required for compiling the modified Minecraft code. **5. Making Modifications:** * **Modify the Code:** Now you can start modifying the Minecraft source code in your IDE. Be careful! Understanding the Minecraft codebase can be challenging. * **Recompile:** Use your IDE to recompile the modified code. **6. Reobfuscating and Patching:** * **Run `reobfuscate.bat` (Windows) or `reobfuscate.sh` (Linux/macOS):** This script will reobfuscate the modified code, making it harder to understand (like the original Minecraft code). * **Run `patch.bat` (Windows) or `patch.sh` (Linux/macOS):** This script will create patches that can be applied to the original Minecraft JAR files. **7. Testing:** * **Apply the Patches:** Apply the generated patches to the original Minecraft JAR files. * **Run Minecraft:** Run the modified Minecraft client and/or server to test your changes. **Where I Can Help:** * **Troubleshooting Errors:** If you encounter errors during any of these steps, provide me with the error messages, and I'll do my best to help you diagnose the problem. * **Explaining Concepts:** If you're unsure about any of the concepts involved (decompilation, reobfuscation, patching, etc.), I can provide explanations. * **Finding Resources:** I can help you find relevant documentation, tutorials, and forum threads. * **Translating Error Messages:** I can translate error messages from English to Japanese. * **Generating Basic Code Snippets:** If you have a specific modification in mind, I might be able to help you with basic code snippets (but I can't write entire mods for you). **What I Need From You:** * **Minecraft Version:** The specific Minecraft version you're working with (e.g., 1.12.2, 1.16.5, 1.18.2). * **MCP Version:** The MCP version you're using. * **Error Messages:** Any error messages you encounter. * **Specific Goals:** What you're trying to achieve with your modifications. * **Your Operating System:** Windows, macOS, or Linux. **Example Translation (Error Message):** **English:** "Error: Could not find or load main class net.minecraft.launchwrapper.Launch" **Japanese:** "エラー:メインクラス net.minecraft.launchwrapper.Launch を見つけるか、ロードできませんでした。" (Erā: Mein kurasu net.minecraft.launchwrapper.Launch o mitsukeru ka, rōdo dekimasen deshita.) **Next Steps:** Tell me more about what you're trying to do, and I'll provide more specific guidance. Good luck!
Obsidian Diary MCP Server
Enables AI-powered journaling in Obsidian with dynamic reflection prompts generated from recent entries and automatic backlinks between related diary entries. Supports adaptive templates that learn from writing patterns and smart content similarity linking.
OpenManager Vibe V4 MCP Server
A natural language-based server analysis and monitoring system that automatically processes user queries about server status and provides detailed responses with visualizations.
Getting Started with Create React App
MCPサーバーのテスト用Reactアプリケーション
Gmail MCP Server
Provides complete Gmail API integration for email management, including sending/receiving messages, managing labels and threads, creating drafts, and configuring settings through OAuth2 authentication.
MCP Server for Splunk
Enables AI agents to interact seamlessly with Splunk environments through 20+ tools for search, analytics, data discovery, administration, and health monitoring. Features AI-powered troubleshooting workflows and supports multiple Splunk instances with production-ready security.
mcp-4o-Image-Generator
mcp-4o-Image-Generator
rust-mcp-tutorial
Rust で Minecraft サーバーを試す
Interactive Voice MCP Server
Enables voice-based interactions with Claude by converting text to speech using Kokoro TTS and transcribing user responses using NVIDIA NeMo ASR, creating interactive voice dialogues.