Discover Awesome MCP Servers
Extend your agent with 53,434 capabilities via MCP servers.
- All53,434
- 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
lcm2m-caddis-mcp
Enables read-only access to LCM2M Caddis VM2M API for equipment, runs, telemetry, alarms, etc., via MCP tools.
google_maps_mcp
Enables querying Google Maps and Places APIs for local businesses and tourist attractions in India through a simple MCP interface.
Plantos MCP Server
Enables AI assistants to analyze farm locations, retrieve soil and weather data, access commodity market prices, and chat with an agricultural advisor for farming recommendations.
Google Images Search MCP
MCP server for searching images with Google
Git Helper MCP
Enables Claude to interact with git repositories by providing real-time access to repository status, branch information, commit history, and file changes. Allows users to query their git workspace through natural language commands.
MCP Server Boilerplate
A TypeScript template for building Model Context Protocol servers with example tools, type-safe validation, and best practices for integrating custom functionality with AI assistants like Cursor and Claude.
cointelegraph-mcp
Tentang Sebuah server MCP yang menyediakan akses waktu nyata ke berita terbaru dari Cointelegraph.
Second Brain MCP
Enables querying Tom Osborne's voice-cloned AI agent with a 21,000-article marketing knowledge base and his interview corpus to get answers in his voice.
Fabric Admin MCP Server
Provides MCP tools to manage Microsoft Fabric capacities, including listing, creating, updating, and deleting them, using Azure authentication.
memos-mcp-server
Enables AI assistants to create, read, update, delete, and list memos via the MCP protocol.
Black-Scholes MCP Server
Enables calculation of European option prices and Greeks (like Delta, Vega, Theta) using the Black-Scholes model through a Model Context Protocol implementation.
VMware Fusion MCP Server
A Model Context Protocol server that allows managing VMware Fusion virtual machines through natural language, enabling users to list VMs, retrieve VM information, and perform power operations via the Fusion REST API.
Remote MCP Server on Cloudflare
A template for deploying secure Model Context Protocol servers to Cloudflare Workers with built-in OAuth authentication. It enables hosting and connecting remote tools to Claude Desktop using SSE transport and a local proxy.
MaxKB
💬 MaxKB adalah chatbot RAG siap pakai yang memiliki alur kerja yang kuat dan kemampuan penggunaan alat MCP. Ia mendukung berbagai macam model bahasa besar (LLM) utama, termasuk DeepSeek-R1, Llama 3.3, OpenAI, dan lain-lain.
Apple Shortcuts MCP Server
Enables the generation, management, and validation of Apple Shortcuts (.shortcut files) by providing tools to search actions and build control flow blocks. It allows users to programmatically create and analyze shortcut structures for deployment on iOS and macOS devices.
GitLab MCP Server
Enables AI assistants to interact with GitLab projects by listing merge requests, issues, and pipelines via MCP tools.
MCP Demo
Mcp server of slack with python
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.
academic-mcp
Unified academic search MCP server that searches open literature (arXiv, bioRxiv, medRxiv, PMC), CNKI, and Web of Science, with browser-backed authentication, local paper library, and export to multiple formats.
Open Food Facts MCP Server
Enables AI assistants to access the Open Food Facts database to query detailed food product information, nutritional data, and environmental scores. Supports product lookup by barcode, smart search with filtering, nutritional analysis, product comparison, and dietary recommendations to help users make informed food choices.
Gramps MCP
Enables AI assistants to interact with Gramps genealogy databases for intelligent family tree research and management. Provides comprehensive tools for searching family data, creating records, analyzing relationships, and tracking genealogy research through natural language.
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.
AnalyticDB for MySQL MCP Server
Cermin dari
MCP Gemini Server
Cermin dari
Optimization MCP
Provides nine specialized production-ready solvers for advanced resource allocation, network flow, and multi-objective optimization with native Monte Carlo integration. It enables users to perform constraint-based decision-making and performance analysis directly through Claude Code.
OpenWebGAL Assistant
MCP server that automates WebGAL game development tasks such as resource management, script editing, documentation lookup, and AI-powered voice generation using LLMs.
MCP Smart Searcher
A smart MCP server for multi-engine web search with AI-powered results, supporting 6 search engines and web content extraction.
Agent Factory MCP
A universal MCP server that automatically discovers and registers CLI tools as AI-powered agents with persona configuration, enabling any CLI tool to be used as an MCP tool.
Fedspeak MCP Server
Dataverse MCP Server
A Model Context Protocol server that enables CRUD operations and querying on Microsoft Dataverse through natural language.