Discover Awesome MCP Servers

Extend your agent with 19,331 capabilities via MCP servers.

All19,331
Chronicle SecOps MCP Server

Chronicle SecOps MCP Server

Sebuah server MCP untuk berinteraksi dengan rangkaian Google Chronicle Security Operations, memungkinkan pengguna untuk mencari peristiwa keamanan, mendapatkan peringatan, mencari entitas, membuat daftar aturan keamanan, dan mengambil kecocokan IoC.

Airtable MCP Server Setup

Airtable MCP Server Setup

Airtable MCP server configuration and documentation

MCP Serverless

MCP Serverless

Serverless implementation of the Model Context Protocol (MCP)

Overview

Overview

Server MCP Alphavantage

TestMcpServer

TestMcpServer

A Model Context Protocol server implementation providing mathematical operations through a standardized interface. Built with TypeScript and Node.js, this server demonstrates how to create and expose tools via the Model Context Protocol specification.

MCP Server

MCP Server

ClickUp MCP Server

ClickUp MCP Server

Mirror of

Popmelt MCP Server

Popmelt MCP Server

ZIP MCP Server

ZIP MCP Server

Sebuah alat MCP yang menyediakan AI dengan kemampuan untuk memampatkan dan mengekstrak berkas lokal.

Fantasy Premier League MCP Server

Fantasy Premier League MCP Server

Fantasy Premier League MCP Server

Windows-MCP-Server-Installation-Verification-GuideWindows MCP Server Installation Verification Guide

Windows-MCP-Server-Installation-Verification-GuideWindows MCP Server Installation Verification Guide

Pengaturan server MCP di Windows berbeda dengan Mac karena membutuhkan jalur file absolut dan referensi eksplisit ke node.exe, alih-alih perintah npx. Instalasi memerlukan verifikasi npm dan pemasangan paket secara global ke direktori AppData\Roaming\npm\node_modules. Menjalankan server membutuhkan jalur lengkap untuk node.exe dan file index.js server.

MCP テストサーバー

MCP テストサーバー

MCP SQL Server

MCP SQL Server

Server FastMCP yang menyediakan interaksi bahasa alami dengan database MS SQL, memungkinkan pengguna untuk menanyakan data, membuat daftar tabel, menjelaskan struktur, dan menjalankan operasi database melalui antarmuka AI percakapan.

DynamoDB Read-Only MCP

DynamoDB Read-Only MCP

Sebuah server yang memungkinkan LLM (Model Bahasa Besar) seperti Claude untuk melakukan kueri ke database AWS DynamoDB melalui permintaan bahasa alami, mendukung manajemen tabel, kueri data, dan analisis skema.

Hologres MCP Server

Hologres MCP Server

Antarmuka universal yang memungkinkan Agen AI untuk berkomunikasi dengan basis data Hologres, memungkinkan mereka untuk mengambil metadata basis data dan menjalankan operasi SQL.

Rootly MCP Server

Rootly MCP Server

Kelola insiden dari IDE Anda. Sebuah server MCP yang memungkinkan untuk menarik insiden dan metadata terkaitnya menggunakan Rootly API.

Google Tasks MCP Server

Google Tasks MCP Server

Server Protokol Konteks Model yang menjembatani Claude dengan Google Tasks, memungkinkan pengguna untuk mengelola daftar tugas dan tugas secara langsung melalui antarmuka Claude.

Langfuse Prompt Management MCP Server

Langfuse Prompt Management MCP Server

Mirror of

Playwright MCP

Playwright MCP

Server MCP Playwright memungkinkan pembuatan tes Playwright berbasis AI dengan mengizinkan interaksi dengan halaman web dan inspeksi elemen. Terintegrasi dengan IDE seperti Cursor, server ini menyediakan konteks waktu nyata untuk meningkatkan akurasi dan efisiensi pengujian.

Local
MCP-Wikipedia-API-Server

MCP-Wikipedia-API-Server

Server FastAPI-MCP yang mengambil ringkasan Wikipedia untuk asisten AI, di-deploy menggunakan Google Colab dan Ngrok.

SEO Tools MCP Server

SEO Tools MCP Server

Memungkinkan LLM (Model Bahasa Besar) untuk berinteraksi dengan DataForSEO dan API SEO lainnya melalui bahasa alami, memungkinkan riset kata kunci, analisis SERP, analisis backlink, dan tugas SEO lokal.

Superset MCP Integration

Superset MCP Integration

MCP server enabling AI agents to programmatically connect to and control Apache Superset instances, allowing users to manage dashboards, charts, databases, datasets, and run SQL queries through natural language interactions.

Weather MCP Server

Weather MCP Server

Okay, here's an example of creating an MCP (Minecraft Coder Pack) server setup. Keep in mind that MCP itself doesn't create a *server* in the traditional sense. MCP is a tool for decompiling, deobfuscating, and re-compiling Minecraft's code, allowing you to *modify* the game. You'll still need a standard Minecraft server to *run* your modified code. This example outlines the general process. It's a simplified overview, and the exact steps can vary depending on the MCP version and Minecraft version you're targeting. **Always refer to the official MCP documentation for the most accurate and up-to-date instructions.** **1. Prerequisites:** * **Java Development Kit (JDK):** You need the correct JDK version for the Minecraft version you're targeting. Minecraft 1.16+ generally requires Java 8 or higher. Minecraft 1.17+ requires Java 17 or higher. Make sure you have the correct version installed and configured. * **Python:** MCP uses Python scripts. Make sure you have Python 3 installed. * **MCP (Minecraft Coder Pack):** Download the correct MCP version for the Minecraft version you want to modify. You can usually find MCP releases on GitHub or dedicated Minecraft modding forums. * **Minecraft Server Jar:** Download the official Minecraft server `.jar` file for the version you're targeting. You can get this from the Minecraft website after purchasing the game. **2. Setting up the MCP Environment:** 1. **Extract MCP:** Extract the downloaded MCP archive to a directory (e.g., `C:\mcp`). 2. **Place Server Jar:** Place the Minecraft server `.jar` file (e.g., `server.jar`) into the `jars` directory within your MCP directory (e.g., `C:\mcp\jars`). 3. **Configure `config.py`:** The `config.py` file in the MCP directory contains important configuration settings. You'll need to edit this file to specify the Minecraft version, server jar name, and other options. Open `config.py` in a text editor and modify the following (adjust values as needed): ```python # Example config.py settings (adjust to your versions) MINECRAFT_VERSION = "1.19.2" # Replace with your Minecraft version MCP_VERSION = "mcp_stable-61" # Replace with your MCP version SERVER = "server.jar" # The name of your server jar file ``` 4. **Decompile Minecraft:** Open a command prompt or terminal, navigate to your MCP directory (e.g., `cd C:\mcp`), and run the following command: ```bash python ./gradlew setupDecompWorkspace ``` This command will download necessary dependencies, decompile the Minecraft client and server code, and set up the development environment. This process can take a significant amount of time. **3. Setting up the Server Workspace (Important for Server-Side Mods):** 1. **Create a `src/main/java` directory:** Inside your MCP directory, navigate to the `src` directory. If it doesn't exist, create it. Inside `src`, create a `main` directory. Inside `main`, create a `java` directory. This is where you'll put your server-side mod code. The full path should be something like `C:\mcp\src\main\java`. 2. **Create Packages:** Create package directories within the `java` directory to organize your code (e.g., `com.example.mymod`). 3. **Write Your Mod Code:** Write your Java code for your server-side mod. This code will interact with the Minecraft server's API. **4. Recompiling and Reobfuscating (If Necessary):** * **Recompile:** After making changes to the code, you need to recompile it. From the MCP directory, run: ```bash python ./gradlew build ``` This will compile your code and create a new version of the server jar. * **Reobfuscate (Usually Not Needed for Development):** Reobfuscation is the process of making the code harder to read. It's usually not necessary during development. **5. Running the Modified Server:** 1. **Navigate to the `build/libs` directory:** After building, your modified server jar will be located in the `build/libs` directory within your MCP directory. 2. **Run the Server:** Open a command prompt or terminal in the `build/libs` directory and run the server using the following command: ```bash java -jar <your_modified_server_jar>.jar ``` Replace `<your_modified_server_jar>.jar` with the actual name of your modified server jar file. **Important Considerations:** * **MCP Versions:** Make sure you're using the correct MCP version for the Minecraft version you're targeting. Incompatible versions will cause errors. * **Minecraft Server EULA:** Be aware of the Minecraft Server End User License Agreement (EULA) when distributing modified server software. * **Modding API:** Consider using a modding API like Forge or Fabric. These APIs provide a more stable and well-defined interface for modding Minecraft, making it easier to create and maintain mods. MCP is often used in conjunction with these APIs. * **Error Handling:** The decompilation and recompilation process can be complex and may encounter errors. Carefully read the error messages and consult the MCP documentation or online forums for help. * **Deobfuscation:** MCP deobfuscates the Minecraft code, making it more readable. However, the code is still complex, and understanding it requires a good understanding of Java programming and the Minecraft game mechanics. **Indonesian Translation of Key Phrases:** * **Minecraft Coder Pack (MCP):** Paket Pengkode Minecraft (MCP) * **Java Development Kit (JDK):** Perangkat Pengembangan Java (JDK) * **Decompile:** Dekompilasi * **Recompile:** Kompilasi Ulang * **Deobfuscate:** Deobfuscasi * **Reobfuscate:** Reobfuscasi Ulang * **Server Jar File:** File Jar Server * **Mod:** Modifikasi * **Modding API:** API Modifikasi * **Configuration File:** File Konfigurasi * **Workspace:** Ruang Kerja * **Dependencies:** Dependensi This example provides a basic overview. For detailed instructions and troubleshooting, always refer to the official MCP documentation and community resources. Good luck!

search-fetch-server MCP Server

search-fetch-server MCP Server

Mirror of

YouTube transcript extractor for your LLM

YouTube transcript extractor for your LLM

Okay, here's a translation of "MCP server that downloads YouTube transcripts" into Indonesian: **Server MCP yang mengunduh transkrip YouTube** Here's a breakdown of the translation: * **MCP:** This is likely referring to a specific type of server or software. Without more context, it's best to leave it as "MCP". * **server:** *server* (the word is commonly used in Indonesian, especially in technical contexts) * **yang:** *that* (relative pronoun) * **mengunduh:** *to download* * **transkrip:** *transcript* * **YouTube:** *YouTube* (the name is commonly used in Indonesian) Therefore, the complete translation is: **Server MCP yang mengunduh transkrip YouTube**

MCP-SSE3

MCP-SSE3

created from MCP server demo

Github MCP Server

Github MCP Server

Mirror of

Dockerized GitHub MCP Server

Dockerized GitHub MCP Server

this is mcp servers in local

Ansible Tower MCP Server

Ansible Tower MCP Server

MCP Server for Ansible Tower

Alpha Vantage MCP Server 📈

Alpha Vantage MCP Server 📈

Sebuah server MCP yang menyediakan integrasi data keuangan waktu nyata dengan API Alpha Vantage, memungkinkan akses ke data pasar saham, harga mata uang kripto, nilai tukar mata uang asing, dan indikator teknis.