Discover Awesome MCP Servers

Extend your agent with 12,344 capabilities via MCP servers.

All12,344
MCP Telegram

MCP Telegram

Implementasi TypeScript dari server MCP (Model Context Protocol) untuk bekerja dengan Telegram melalui MTProto.

Unity Package Template

Unity Package Template

Rossum MCP Server

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.

Soccer V3 Scores MCP Server

Soccer V3 Scores MCP Server

An MCP server that enables agents to interact with soccer data including scores, matches, players, and teams using the sportsdata.io Soccer V3 Scores API.

Peekaboo MCP

Peekaboo MCP

A macOS utility that captures screenshots and analyzes them with AI vision, enabling AI assistants to see and interpret what's on your screen.

Spring AI MCP Batch Job Server

Spring AI MCP Batch Job Server

Server Spring Boot Model Context Protocol (MCP) yang menyediakan alat pemrosesan batch untuk transaksi keuangan.

MCP Server

MCP Server

A FastAPI-based Model Context Protocol server that exposes herd data through a discoverable API, with local and containerized deployment options.

Google Workspace MCP Server

Google Workspace MCP Server

Autotask MCP Server

Autotask MCP Server

A Model Context Protocol server that enables natural language querying of Kaseya's Autotask PSA data through AI assistants, supporting contract analysis, ticket tracking, agent activities, and project status monitoring.

rust-mcp-tutorial

rust-mcp-tutorial

Saya mencoba server MCP dengan Rust.

MCP Server Tutorial

MCP Server Tutorial

Getting Started with Create React App

Getting Started with Create React App

Aplikasi React untuk uji server MCP

mcp_docs_server

mcp_docs_server

Okay, I can help you with that! Building an MCP (Minecraft Coder Pack) server involves a few steps. Here's a breakdown of the process, along with explanations and considerations: **What is MCP (Minecraft Coder Pack)?** MCP is a toolset that deobfuscates and decompiles Minecraft's code, making it readable and modifiable. It's essential for creating Minecraft mods. You don't directly "build an MCP server" in the same way you build a regular Minecraft server. Instead, you use MCP to *modify* the Minecraft server code. **Here's the general workflow:** 1. **Set up your Development Environment:** * **Install Java Development Kit (JDK):** You need the JDK (not just the JRE) to compile Java code. Download the appropriate version for your operating system from Oracle or a more modern distribution like Adoptium (Temurin). Make sure you install the correct JDK version for the Minecraft version you're targeting. MCP typically specifies the required JDK version. * **Install an IDE (Integrated Development Environment):** Popular choices include: * **IntelliJ IDEA:** A powerful and widely used IDE, especially for Java development. The Community Edition is free and sufficient for most modding tasks. * **Eclipse:** Another popular, free, and open-source IDE. * **Visual Studio Code (VS Code):** A lightweight but versatile editor with excellent Java support through extensions. * **Install Gradle (Optional but Recommended):** Gradle is a build automation tool that simplifies dependency management and building your mod. MCP often integrates well with Gradle. 2. **Download and Set Up MCP:** * **Find the Correct MCP Version:** Crucially, you need the MCP version that corresponds to the *exact* Minecraft version you want to mod. MCP versions are specific to Minecraft versions. Search online for "MCP [Minecraft Version]" (e.g., "MCP 1.19.2"). Look for reputable sources like the official MCP forums or modding communities. * **Extract MCP:** Extract the downloaded MCP archive to a directory on your computer (e.g., `C:\mcp` or `/home/user/mcp`). Avoid spaces in the path. * **Configure MCP (`build.gradle` or similar):** MCP usually comes with a `build.gradle` file (if using Gradle) or a configuration file that you need to adjust. This file specifies: * The Minecraft version. * The location of your Minecraft installation. * Other build settings. 3. **Decompile and Deobfuscate Minecraft:** * **Run MCP's Decompilation Task:** This is the core step. Using the command line, navigate to your MCP directory and run the appropriate command. The command depends on whether you're using Gradle or the older MCP scripts. Here are examples: * **Gradle:** `./gradlew setupDecompWorkspace` (on Linux/macOS) or `gradlew setupDecompWorkspace` (on Windows). This command downloads the Minecraft server and client JARs, deobfuscates them (replaces the cryptic names with more readable ones), and decompiles them (turns the bytecode into Java source code). * **Older MCP Scripts:** `./decompile.sh` (Linux/macOS) or `decompile.bat` (Windows). (These scripts might have slightly different names depending on the MCP version.) * **Wait:** This process can take a significant amount of time (minutes to hours), depending on your computer's speed and the Minecraft version. 4. **Set Up Your IDE:** * **Import the MCP Project:** In your IDE, import the MCP project. If you're using Gradle, import the `build.gradle` file. If you're using Eclipse, you might need to run a command in MCP to generate Eclipse project files first (e.g., `./gradlew eclipse`). * **Configure the IDE's JDK:** Make sure your IDE is using the same JDK version that MCP requires. 5. **Start Modding:** * **Locate the Server Source Code:** The decompiled and deobfuscated server source code will be in a directory within the MCP project (e.g., `src/main/java` or `src/server/java`). * **Make Your Changes:** Modify the Java code to add your desired features, fix bugs, or change the game's behavior. **Be careful!** Modifying the core Minecraft code can be complex and lead to unexpected issues. * **Compile Your Changes:** Use your IDE or Gradle to compile the modified code. 6. **Reobfuscate (Optional but Recommended for Distribution):** * **Run MCP's Reobfuscation Task:** Before distributing your mod, you should reobfuscate the code. This makes it harder for others to understand and copy your code. The command is usually something like `./gradlew reobf` or `./reobfuscate.sh`. 7. **Build Your Mod:** * **Create a JAR File:** Package your modified server code into a JAR (Java Archive) file. Gradle can automate this process. The JAR file will contain your modified classes. 8. **Deploy Your Modded Server:** * **Replace the Original Server JAR:** Replace the original `minecraft_server.jar` file with your modified JAR file. **Back up the original JAR first!** * **Run the Server:** Start the server as you normally would. **Important Considerations and Troubleshooting:** * **MCP Version Compatibility:** This is the *most* common source of problems. Ensure that your MCP version *exactly* matches the Minecraft version you're targeting. * **JDK Version:** Use the correct JDK version. Mismatched JDK versions can cause compilation errors or runtime issues. * **Memory:** Decompiling and reobfuscating can be memory-intensive. Increase the memory allocated to Gradle or the MCP scripts if you encounter out-of-memory errors. You can do this by setting the `JAVA_OPTS` environment variable (e.g., `export JAVA_OPTS="-Xmx4G"` on Linux/macOS). * **Errors During Decompilation:** Sometimes, decompilation can fail due to errors in the Minecraft code or issues with the decompiler. Check the MCP logs for error messages and try to resolve them. Sometimes, simply re-running the decompilation task can fix transient errors. * **Obfuscation Mappings:** MCP relies on obfuscation mappings to deobfuscate and reobfuscate the code. These mappings are updated periodically. Make sure you're using the latest mappings for your Minecraft version. * **Modding Frameworks (Forge, Fabric):** While you can directly modify the Minecraft server code with MCP, it's generally *much* easier and more maintainable to use a modding framework like Forge or Fabric. These frameworks provide APIs and tools that simplify mod development and reduce the risk of conflicts between mods. If you're new to modding, I highly recommend starting with Forge or Fabric. * **Backup:** Always back up your original Minecraft server JAR file before making any modifications. * **Licensing:** Be aware of Minecraft's licensing terms and any restrictions on distributing modified versions of the game. **Example using Forge (Recommended):** If you want to create a modded server, using Forge is the recommended approach. Here's a simplified outline: 1. **Download and Install the Forge MDK (Mod Development Kit):** Get the MDK for the Minecraft version you want to mod from the official Forge website. 2. **Extract the MDK:** Extract the MDK to a directory. 3. **Import the Project into Your IDE:** Import the `build.gradle` file into your IDE. 4. **Write Your Mod Code:** Create your mod's Java classes in the `src/main/java` directory. Use the Forge API to interact with the game. 5. **Build Your Mod:** Run the `gradlew build` command to build your mod JAR file. 6. **Install Forge on the Server:** Download the Forge installer for the server. Run the installer and select "Install server". 7. **Place Your Mod in the `mods` Folder:** Copy your mod JAR file into the `mods` folder in your Minecraft server directory. 8. **Run the Server:** Start the server. **In summary, while you can use MCP to directly modify the Minecraft server code, it's a complex and potentially fragile approach. Using a modding framework like Forge or Fabric is generally a better option for creating and managing mods.** To give you more specific help, please tell me: * **Which Minecraft version are you targeting?** * **Are you planning to use Forge, Fabric, or modify the core code directly with MCP?** * **What are you trying to achieve with your modded server?** (e.g., add new items, change game mechanics, etc.) Good luck! Let me know if you have any more questions.

Model Context Protocol (MCP) Server Project

Model Context Protocol (MCP) Server Project

Advanced TTS MCP Server

Advanced TTS MCP Server

Provides high-quality text-to-speech synthesis with 10 natural voices, emotion control, and dynamic pacing for professional applications requiring expressive speech output.

MCPez - 微服务命令代理管理平台

MCPez - 微服务命令代理管理平台

Mikro server MCP terpadu

strava-mcp

strava-mcp

There isn't a direct "MCP server" specifically designed for Strava. It's possible you're thinking of something else, or perhaps a misunderstanding of terms. Here are a few possibilities and how they relate to Strava: * **MCP (Master Control Program):** This is a term often associated with mainframe computers or specific industrial control systems. It's highly unlikely to be directly related to Strava. * **Strava API and Third-Party Integrations:** Strava has an API (Application Programming Interface) that allows developers to create applications and services that interact with Strava data. It's possible someone has built a custom application or server that uses the Strava API for specific purposes. If you have more details about what you're trying to achieve, I can provide more specific guidance. * **Data Analysis and Visualization Servers:** Some users might set up their own servers to collect, analyze, and visualize their Strava data beyond what Strava provides natively. This could involve using tools like Python, R, or other data analysis platforms. To help me understand what you're looking for, could you provide more context? For example: * What are you trying to achieve with this "MCP server"? * Where did you hear about this "MCP server" in relation to Strava? * What kind of functionality are you hoping it would provide? **Translation to Indonesian:** Tidak ada "server MCP" yang secara khusus dirancang untuk Strava. Mungkin Anda memikirkan sesuatu yang lain, atau mungkin ada kesalahpahaman istilah. Berikut adalah beberapa kemungkinan dan bagaimana mereka berhubungan dengan Strava: * **MCP (Master Control Program):** Ini adalah istilah yang sering dikaitkan dengan komputer mainframe atau sistem kontrol industri tertentu. Sangat tidak mungkin terkait langsung dengan Strava. * **API Strava dan Integrasi Pihak Ketiga:** Strava memiliki API (Application Programming Interface) yang memungkinkan pengembang untuk membuat aplikasi dan layanan yang berinteraksi dengan data Strava. Mungkin saja seseorang telah membuat aplikasi atau server khusus yang menggunakan API Strava untuk tujuan tertentu. Jika Anda memiliki detail lebih lanjut tentang apa yang ingin Anda capai, saya dapat memberikan panduan yang lebih spesifik. * **Server Analisis dan Visualisasi Data:** Beberapa pengguna mungkin menyiapkan server mereka sendiri untuk mengumpulkan, menganalisis, dan memvisualisasikan data Strava mereka di luar apa yang disediakan Strava secara native. Ini dapat melibatkan penggunaan alat seperti Python, R, atau platform analisis data lainnya. Untuk membantu saya memahami apa yang Anda cari, bisakah Anda memberikan lebih banyak konteks? Contohnya: * Apa yang ingin Anda capai dengan "server MCP" ini? * Di mana Anda mendengar tentang "server MCP" ini sehubungan dengan Strava? * Fungsi seperti apa yang Anda harapkan darinya?

ProxmoxMCP-Plus

ProxmoxMCP-Plus

An enhanced Python-based MCP server that enables complete VM lifecycle management and monitoring of Proxmox virtualization platforms through natural language, with 11 REST API endpoints for seamless integration.

Ransomware Live MCP Server

Ransomware Live MCP Server

Ransomware Live MCP Server ✨🔐 (This translates directly, as "Ransomware Live MCP Server" is likely a specific name or term.)

docmcp

docmcp

docmcp

Investidor10 MCP Server

Investidor10 MCP Server

Investidor10 MCP Server

O'RLY MCP Server

O'RLY MCP Server

Generates O'Reilly parody book covers that display directly in Claude Desktop application, allowing users to create custom covers with titles, subtitles, authors, and visual themes.

Super Windows CLI MCP Server

Super Windows CLI MCP Server

Cermin dari

Terminal Commander

Terminal Commander

die-mcp

die-mcp

Detect It Easy (DIE) MCP Server

mcp_repo_4a01eabf

mcp_repo_4a01eabf

Ini adalah repositori pengujian yang dibuat oleh skrip pengujian MCP Server untuk GitHub.

Model Context Protocol .NET Template

Model Context Protocol .NET Template

Repositori ini berisi templat untuk membuat aplikasi Model Context Protocol (MCP) di .NET.

Jira MCP Server

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.

db-mcp

db-mcp

Server Protokol Konteks Model Basis Data (DB-MCP)

Math Agent with Microsoft Word and Gmail Integration

Math Agent with Microsoft Word and Gmail Integration

Here's the translation of "MCP server for Math Agent with Microsoft Word and Gmail Integration" into Indonesian: **Server MCP untuk Agen Matematika dengan Integrasi Microsoft Word dan Gmail** Here's a breakdown of the translation: * **MCP server:** Server MCP * **for:** untuk * **Math Agent:** Agen Matematika * **with:** dengan * **Microsoft Word and Gmail Integration:** Integrasi Microsoft Word dan Gmail