Discover Awesome MCP Servers

Extend your agent with 17,428 capabilities via MCP servers.

All17,428
mcp-plexus

mcp-plexus

mcp-plexus

MCP Multiagent Bridge

MCP Multiagent Bridge

Enables secure coordination between multiple LLM agents through authenticated messaging, status updates, and conversation management. Features automatic secret redaction, rate limiting, and audit trails for safe multi-agent collaboration in development environments.

Mcp Server

Mcp Server

FhirMCP

FhirMCP

Enables LLMs to securely interact with FHIR healthcare servers and HL7 terminology services. Provides comprehensive healthcare data operations with built-in PHI protection, audit logging, and SMART on FHIR authentication.

MCP Server - Twitter NoAuth

MCP Server - Twitter NoAuth

Server MCP tanpa kepala yang menyediakan akses API Twitter tanpa memerlukan pengaturan kredensial lokal, memungkinkan operasi inti Twitter seperti mencari tweet, mendapatkan tweet pengguna, memposting tweet, dan membalas tweet.

Logstash MCP Server

Logstash MCP Server

A Model Context Protocol server that provides comprehensive tools for monitoring and identifying performance bottlenecks in Logstash instances through an interactive web UI and JSON-RPC interface.

MCP-Serve 多语言翻译服务

MCP-Serve 多语言翻译服务

A custom MCP protocol service that enhances AI models by providing multilingual translation capabilities and resource management, allowing for automatic text extraction and translation through external APIs.

Perfetto MCP

Perfetto MCP

Enables natural language analysis of Perfetto traces to diagnose Android app performance issues like ANRs, jank, CPU hotspots, memory leaks, and lock contention without writing SQL queries.

weather-mcp

weather-mcp

Returns the current and recent weather data using city name or pincode(india). Using tomorrow.io api

Maverick MCP Server

Maverick MCP Server

An MCP server that enables Amazon Q CLI users to create, query, and manage Maverick sites through natural language commands.

MCP Server for langfuse

MCP Server for langfuse

Implementasi server MCP yang mengintegrasikan asisten AI dengan ruang kerja Langfuse, memungkinkan model untuk menanyakan metrik LLM berdasarkan rentang waktu.

MCP Demo

MCP Demo

Mcp server of slack with python

DocketBird MCP Server

DocketBird MCP Server

Server MCP untuk API yang di-host oleh DocketBird.

minecraft-mcp

minecraft-mcp

Oke, berikut terjemahan dari "Using Mineflayer to create an MCP server to Minecraft" ke dalam Bahasa Indonesia: **Menggunakan Mineflayer untuk membuat server MCP ke Minecraft.** Atau, bisa juga sedikit lebih diperjelas: **Menggunakan Mineflayer untuk membuat server MCP (Minecraft Coder Pack) untuk Minecraft.** Perbedaan utamanya adalah penambahan "(Minecraft Coder Pack)" untuk memperjelas apa itu MCP, jika audiens mungkin tidak familiar dengan istilah tersebut.

BloodHound-MCP

BloodHound-MCP

BloodHound-MCP-AI adalah integrasi yang menghubungkan BloodHound dengan AI melalui Model Context Protocol, memungkinkan para profesional keamanan untuk menganalisis jalur serangan Active Directory menggunakan bahasa alami alih-alih kueri Cypher yang kompleks.

Supabase MCP Server

Supabase MCP Server

Jembatan antara asisten AI seperti GitHub Copilot dan database Supabase, memungkinkan AI untuk memahami skema, membantu menulis kueri, dan memberikan saran yang relevan dengan konteks model data Anda.

Database Bridge MCP Server

Database Bridge MCP Server

Enables secure database interactions with MySQL, PostgreSQL, and SQLite through granular permissions, multi-database support, and cloud-ready SSL/TLS connections. Supports read-only modes, schema-specific permissions, and transaction management for safe database operations.

Local Mcp Server Tutorial

Local Mcp Server Tutorial

Tentu, berikut adalah tutorial untuk membuat server MCP lokal (stdio): **Tutorial Membuat Server MCP Lokal (stdio)** Tutorial ini akan memandu Anda melalui proses pembuatan server MCP (Minecraft Coder Pack) lokal yang menggunakan stdio (standard input/output) untuk komunikasi. Ini berguna untuk pengembangan mod dan pengujian tanpa perlu menjalankan server Minecraft penuh. **Prasyarat:** * **Java Development Kit (JDK):** Pastikan Anda telah menginstal JDK (versi 8 atau lebih tinggi). Anda dapat mengunduhnya dari situs web Oracle atau menggunakan distribusi OpenJDK. * **Minecraft Coder Pack (MCP):** Unduh MCP versi yang sesuai dengan versi Minecraft yang ingin Anda modifikasi. Anda dapat menemukannya di berbagai forum dan situs web modding Minecraft. * **Lingkungan Pengembangan Terpadu (IDE):** IDE seperti IntelliJ IDEA atau Eclipse sangat direkomendasikan untuk pengembangan Java. **Langkah 1: Konfigurasi MCP** 1. **Ekstrak MCP:** Ekstrak arsip MCP ke direktori pilihan Anda. 2. **Konfigurasi `conf/mcp.cfg`:** Buka file `conf/mcp.cfg` di editor teks. * Pastikan properti `ClientVersion` dan `ServerVersion` sesuai dengan versi Minecraft yang ingin Anda modifikasi. * Ubah properti `UseStdio` menjadi `True`. Ini akan mengaktifkan mode stdio. * Contoh: ``` ClientVersion = 1.16.5 ServerVersion = 1.16.5 UseStdio = True ``` 3. **Decompile Minecraft:** Jalankan perintah `decompile.bat` (di Windows) atau `decompile.sh` (di Linux/macOS) untuk mendekompilasi kode Minecraft. Ini akan menghasilkan kode sumber yang dapat Anda modifikasi. **Langkah 2: Membuat Proyek Java** 1. **Buat Proyek Baru:** Buat proyek Java baru di IDE Anda. 2. **Impor Kode Sumber MCP:** Impor kode sumber yang didekompilasi dari direktori `mcp/src/java` ke dalam proyek Anda. 3. **Konfigurasi Build Path:** Tambahkan pustaka (libraries) yang diperlukan ke build path proyek Anda. Pustaka ini biasanya terletak di direktori `mcp/lib`. **Langkah 3: Membuat Kelas Server Stdio** Buat kelas Java baru yang akan bertindak sebagai server stdio. Kelas ini akan membaca input dari stdin dan menulis output ke stdout. ```java import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class StdioServer { public static void main(String[] args) { try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) { String line; while ((line = reader.readLine()) != null) { // Proses input dari stdin System.out.println("Server menerima: " + line); // Kirim respons ke stdout System.out.println("Server mengirim: OK"); } } catch (IOException e) { e.printStackTrace(); } } } ``` **Penjelasan Kode:** * **`BufferedReader`:** Digunakan untuk membaca input dari `System.in` (stdin). * **`while` loop:** Membaca baris demi baris dari stdin sampai tidak ada lagi input. * **`System.out.println`:** Digunakan untuk menulis output ke `System.out` (stdout). **Langkah 4: Menguji Server Stdio** 1. **Kompilasi Kode:** Kompilasi kelas `StdioServer` Anda. 2. **Jalankan Server:** Jalankan kelas `StdioServer` dari terminal atau IDE Anda. 3. **Kirim Input:** Ketikkan sesuatu di terminal dan tekan Enter. Anda akan melihat server mencetak input yang diterima dan mengirim respons "OK". **Langkah 5: Mengintegrasikan dengan Minecraft (Opsional)** Untuk mengintegrasikan server stdio dengan Minecraft, Anda perlu memodifikasi kode Minecraft untuk berkomunikasi dengan server stdio. Ini melibatkan: 1. **Memodifikasi Kode Minecraft:** Tambahkan kode ke kelas Minecraft yang relevan untuk mengirim data ke server stdio dan menerima respons. 2. **Menggunakan Proses:** Gunakan kelas `Process` di Java untuk menjalankan server stdio sebagai proses terpisah. 3. **Komunikasi:** Gunakan `InputStream` dan `OutputStream` dari proses untuk berkomunikasi dengan server stdio. **Contoh (Konsep):** ```java // Di dalam kelas Minecraft yang relevan Process serverProcess = new ProcessBuilder("java", "-cp", "path/ke/proyek", "StdioServer").start(); OutputStream outputStream = serverProcess.getOutputStream(); InputStream inputStream = serverProcess.getInputStream(); // Kirim data ke server outputStream.write("Data dari Minecraft".getBytes()); outputStream.flush(); // Baca respons dari server BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); String response = reader.readLine(); System.out.println("Server merespons: " + response); ``` **Catatan:** * Ini adalah contoh yang sangat sederhana. Integrasi yang sebenarnya akan lebih kompleks dan bergantung pada apa yang ingin Anda capai. * Pastikan untuk menangani pengecualian dengan benar dan menutup stream setelah selesai digunakan. **Kesimpulan:** Tutorial ini memberikan dasar untuk membuat server MCP lokal menggunakan stdio. Anda dapat menggunakan ini untuk mengembangkan mod dan menguji kode Anda tanpa perlu menjalankan server Minecraft penuh. Ingatlah bahwa integrasi dengan Minecraft memerlukan pemahaman yang lebih dalam tentang kode Minecraft dan API modding. Semoga tutorial ini bermanfaat! Jika Anda memiliki pertanyaan lebih lanjut, jangan ragu untuk bertanya.

Production-Ready FastMCP Server

Production-Ready FastMCP Server

A production-grade MCP server and client implementation with comprehensive features including structured logging, health checks, metrics, authentication, and RAG capabilities with PostgreSQL vector search. Supports both stdio and SSE transports with containerization and security features for enterprise deployment.

Feishu MCP Server

Feishu MCP Server

A zero-configuration MCP server enabling AI assistants to interact with Feishu (Lark) workspace through OAuth authentication, supporting document operations, content creation, and advanced file management.

Acemcp

Acemcp

Enables semantic code search across codebases with automatic incremental indexing. Searches return relevant code snippets with file paths and line numbers based on natural language queries.

Claude MCP Server Ecosystem

Claude MCP Server Ecosystem

A production-ready MCP server ecosystem providing Claude AI with 150+ specialized tools across enhanced memory, data analytics, security, design, and infrastructure domains with PostgreSQL, Redis, Qdrant, and Docker orchestration.

Notes Manager

Notes Manager

A TypeScript-based MCP server that enables AI assistants to create, search, list, and delete notes with tags. Serves as a starter template for building custom MCP servers with tools and resources.

Specter MCP

Specter MCP

Enables AI agents to build, test, debug, and interact with Kotlin Multiplatform Mobile (Android/iOS) applications through automated build pipelines, UI automation, crash analysis, and app state inspection.

PokéBattle AI Strategist

PokéBattle AI Strategist

An intelligent Pokémon battle strategy assistant that provides strategic recommendations, type effectiveness analysis, and competitive insights through conversational AI powered by Algolia search.

LinkedIn MCP Assistant

LinkedIn MCP Assistant

LinkedIn MCP Assistant

MCP Server Hub

MCP Server Hub

Servidor MCP centralizado hospedado no Vercel

Cursor Notion MCP - Chat Logger

Cursor Notion MCP - Chat Logger

Logs Cursor AI chat interactions to Notion databases for documentation and knowledge management. Captures prompts, responses, context, and timestamps in a structured format for analysis and reference.

Hacker News MCP Server

Hacker News MCP Server

Enables AI assistants to access Hacker News content through 9 comprehensive tools for fetching stories, comments, user profiles, and job postings. Supports flexible output formats, pagination, and various story categories (top, new, best, Ask HN, Show HN).

AI Master Control Program (MCP) Server

AI Master Control Program (MCP) Server

Server Program Kontrol Utama (MCP) AI - Memungkinkan model AI untuk berinteraksi dengan sistem Anda