Discover Awesome MCP Servers
Extend your agent with 17,591 capabilities via MCP servers.
- All17,591
- 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
MCP Server Manager
API MCP Server
A middleware of MCP Servers
Backlog MCP サーバー
Menyediakan akses ke Backlog API untuk manajemen proyek, pelacakan masalah, dan operasi file melalui Claude Desktop.
MCP Server for DrupalMCP Server for Drupal
TS based companion MCP server for the Drupal MCP module that works with the STDIO transport.
MCP Server Template for Cursor IDE
Server MCP sederhana yang memfasilitasi pengambilan situs web melalui platform server yang dapat dikonfigurasi menggunakan transport stdio atau SSE, memungkinkan integrasi dengan alat seperti Cursor untuk akses yang lebih efisien.
xPilot MCP Server Library
MCP Server Library for xPilot
WhoAmI MCP Server
Server MCP ringan yang memberitahumu dengan tepat siapa dirimu.
test-server MCP serverWhat is Test-Python-MCP-Server?
boot-mcp
A starter template for building Model Context Protocol (MCP) applications with TypeScript
MLflow Prompt Registry MCP Server
Mengaktifkan akses ke templat prompt yang dikelola di MLflow melalui Claude Desktop, memungkinkan pengguna untuk menginstruksikan Claude dengan templat yang disimpan untuk tugas-tugas berulang atau alur kerja umum.
Time Server
Cermin dari
mcp_server
sequence-flow-experiment-with-desktop-commander
Aplikasi Flutter yang sepenuhnya dibuat oleh AI di Claude Desktop dengan 3.7 Sonnet oleh MCP servers desktop-commander dan sequential-thinking.
MCP-RB
A lightweight Ruby framework for building MCP servers with a Sinatra-like DSL
MCP Server for Bun and Elysia
Model Context Protocol (MCP) Server for Bun and Elysia
Aligo SMS MCP 서버
Server Protokol Konteks Model (MCP) yang memungkinkan agen AI seperti Claude untuk berinteraksi dengan Aligo SMS API untuk mengirim pesan teks dan mengambil informasi terkait.
ctools
Here are a few possible translations, depending on the context: * **Server MCP untuk alat:** (This is a direct translation and generally understandable.) * **Server MCP untuk peralatan:** (This is also a direct translation, using "peralatan" which can sometimes be more appropriate than "alat" for tools.) * **Server MCP untuk perkakas:** (This uses "perkakas," which is another word for tools, often implying more complex or specialized tools.) * **Server MCP untuk utilitas:** (This uses "utilitas," which can be used if the tools are software or utilities.) Without more context, it's hard to say which is the *best* translation. However, **Server MCP untuk alat** is a safe and generally accurate choice.
Unity MCP Server
A protocol server that bridges AI assistants with Unity projects, allowing them to analyze code, parse scenes, generate scripts, and perform other Unity operations through specialized tools.
Azure Mcp Servers
Direktori ini menampilkan berbagai server Model Context Protocol (MCP). Server-server ini memungkinkan Large Language Models (LLM) untuk mengakses alat dan sumber data dari Microsoft Azure secara aman.
Kubernetes MCP Server
Server MCP untuk Kubernetes
ToolChat
PydanticAI LLM chat dengan alat server MCP
SingleStore MCP Server
Server MCP untuk berinteraksi dengan SingleStore Management API dan layanan.
Pinecone Assistant MCP Server
Peladen MCP Asisten Pinecone
Model Context Protocol (MCP) Testing Servers
This is a web-based application for testing MCP servers. It was designed to demonstrate a MCP client capable of running in a typical web hosting environment.
Krep MCP Server
Cermin dari
Swagger MCP Server
open-browser-mcp-server
Buka peramban dan kunjungi alamat situs web yang ditentukan.
Eight Sleep MCP
I'm sorry, I don't have enough information to translate "MCP server for 8sleep" into Indonesian. To provide an accurate translation, I need more context. Here are a few possibilities, depending on what "MCP server" and "8sleep" refer to: **Possible Scenarios and Translations:** * **If "MCP server" refers to a specific type of server related to the game Minecraft (often abbreviated as MCP):** * **Possible Translation:** Server MCP untuk 8sleep. (This is a direct translation, assuming "8sleep" is a username or a specific server name.) * **Alternative Translation (if "8sleep" is a group or community):** Server MCP untuk komunitas 8sleep. (MCP server for the 8sleep community.) * **If "MCP server" refers to a "Management and Control Plane" server (a more technical term):** * **Possible Translation:** Server MCP untuk 8sleep. (Again, a direct translation, assuming "8sleep" is a product or company name.) * **Alternative Translation (more descriptive):** Server bidang manajemen dan kontrol untuk 8sleep. (Management and control plane server for 8sleep.) * **If "8sleep" refers to the company that makes smart mattresses:** * **Possible Translation:** Server MCP untuk 8sleep. (Direct translation, assuming "MCP server" is a specific type of server they use.) * **Alternative Translation (more descriptive):** Server MCP untuk produk 8sleep. (MCP server for 8sleep products.) **To get the best translation, please tell me:** * **What is "MCP server"?** Is it related to Minecraft, a technical term, or something else? * **What is "8sleep"?** Is it a company, a product, a username, a community, or something else? Once I have this information, I can provide a much more accurate and helpful translation.
ESXi MCP Server
Server manajemen VMware ESXi/vCenter berbasis MCP (Machine Control Protocol), menyediakan antarmuka REST API sederhana untuk manajemen mesin virtual.
MCP Server Template for Cursor IDE
Berikut adalah templat sederhana untuk membuat alat khusus untuk Cursor IDE menggunakan Model Context Protocol, yang dapat di-deploy melalui Heroku, Docker, atau langsung di dalam Cursor IDE: ```python # app.py (Contoh aplikasi Flask) from flask import Flask, request, jsonify import os app = Flask(__name__) @app.route('/process', methods=['POST']) def process_request(): """ Menerima permintaan dari Cursor IDE dan memprosesnya. """ data = request.get_json() # TODO: Implementasikan logika pemrosesan Anda di sini # Contoh: # context = data.get('context', '') # query = data.get('query', '') # result = f"Anda meminta: {query} dengan konteks: {context}" result = "Halo dari alat khusus Anda!" return jsonify({'result': result}) if __name__ == '__main__': port = int(os.environ.get('PORT', 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` **Penjelasan:** * **`app.py`:** Ini adalah file utama aplikasi Flask Anda. * **`Flask`:** Kerangka kerja web Python ringan yang digunakan untuk membuat API. * **`@app.route('/process', methods=['POST'])`:** Mendefinisikan endpoint `/process` yang menerima permintaan POST. Cursor IDE akan mengirimkan permintaan ke endpoint ini. * **`request.get_json()`:** Mengambil data JSON yang dikirimkan oleh Cursor IDE. Data ini biasanya berisi konteks kode dan kueri pengguna. * **`data.get('context', '')`:** Mengakses data konteks dari permintaan. Anda dapat menggunakan ini untuk mendapatkan informasi tentang kode yang sedang diedit. * **`data.get('query', '')`:** Mengakses kueri pengguna dari permintaan. Ini adalah pertanyaan atau perintah yang diberikan pengguna. * **`jsonify({'result': result})`:** Mengembalikan respons JSON ke Cursor IDE. Respons ini harus berisi hasil pemrosesan Anda. * **`os.environ.get('PORT', 5000)`:** Mendapatkan nomor port dari variabel lingkungan `PORT`. Ini penting untuk deployment ke platform seperti Heroku. Jika variabel lingkungan tidak diatur, defaultnya adalah port 5000. * **`app.run(debug=True, host='0.0.0.0', port=port)`:** Menjalankan aplikasi Flask. `debug=True` mengaktifkan mode debug, yang berguna untuk pengembangan. `host='0.0.0.0'` membuat aplikasi dapat diakses dari luar. **Cara Menggunakan:** 1. **Instal Flask:** `pip install Flask` 2. **Implementasikan Logika Pemrosesan Anda:** Ganti komentar `# TODO: Implementasikan logika pemrosesan Anda di sini` dengan kode yang melakukan apa yang Anda inginkan. Anda dapat menggunakan data `context` dan `query` untuk memproses permintaan. 3. **Jalankan Aplikasi:** `python app.py` 4. **Konfigurasikan Cursor IDE:** Di Cursor IDE, konfigurasikan alat khusus Anda untuk mengirimkan permintaan POST ke URL aplikasi Anda (misalnya, `http://localhost:5000/process`). Anda perlu menentukan URL, metode (POST), dan format data (JSON). **Opsi Deployment:** * **Heroku:** Buat aplikasi Heroku dan deploy kode Anda menggunakan Git. Pastikan untuk mengatur variabel lingkungan `PORT`. * **Docker:** Buat Dockerfile untuk aplikasi Anda dan bangun image Docker. Kemudian, jalankan container Docker. * **Langsung di dalam Cursor IDE:** Jika alat Anda sederhana, Anda dapat menjalankan aplikasi Flask langsung di dalam Cursor IDE. Namun, ini mungkin tidak ideal untuk alat yang lebih kompleks. **Contoh Dockerfile:** ```dockerfile FROM python:3.9-slim-buster WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt COPY . . CMD ["python", "app.py"] ``` **requirements.txt:** ``` Flask ``` **Langkah-langkah Deployment Docker:** 1. **Buat Dockerfile dan requirements.txt:** Simpan file-file ini di direktori yang sama dengan `app.py`. 2. **Bangun Image Docker:** `docker build -t my-custom-tool .` 3. **Jalankan Container Docker:** `docker run -p 5000:5000 my-custom-tool` **Penting:** * **Keamanan:** Jika Anda meng-deploy alat Anda ke internet, pastikan untuk menerapkan langkah-langkah keamanan yang tepat, seperti otentikasi dan otorisasi. * **Penanganan Kesalahan:** Tambahkan penanganan kesalahan ke kode Anda untuk menangani kasus-kasus di mana permintaan gagal atau terjadi kesalahan. * **Dokumentasi:** Dokumentasikan API Anda sehingga pengguna dapat memahami cara menggunakannya. Templat ini memberikan titik awal yang sederhana untuk membuat alat khusus untuk Cursor IDE. Anda dapat menyesuaikannya untuk memenuhi kebutuhan spesifik Anda. Ingatlah untuk mengganti logika placeholder dengan kode Anda sendiri dan untuk menerapkan langkah-langkah keamanan yang tepat.