Discover Awesome MCP Servers
Extend your agent with 16,892 capabilities via MCP servers.
- All16,892
- 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
Korea Weather MCP Server
MCP server using the Korea Weather Service (KWS)
MCP-Recon-Server
Here are a few ways to translate "MCP server with tools for domain reconnaissance" into Indonesian, depending on the nuance you want to convey: **Option 1 (Most straightforward):** * **Server MCP dengan alat untuk pengintaian domain.** * This is a direct translation and easily understood. **Option 2 (Slightly more formal):** * **Server MCP yang dilengkapi dengan alat untuk melakukan pengintaian domain.** * This adds "yang dilengkapi dengan" which means "equipped with" or "that is equipped with," making it a bit more formal. **Option 3 (Focus on the purpose):** * **Server MCP untuk pengintaian domain, dilengkapi dengan berbagai alat.** * This emphasizes the purpose of the server first, then mentions the tools. **Breakdown of the translation:** * **MCP server:** Server MCP (This is generally kept as is, assuming "MCP" is an acronym or specific term.) * **with tools:** dengan alat / yang dilengkapi dengan alat * **for domain reconnaissance:** untuk pengintaian domain / untuk melakukan pengintaian domain **Which option to choose depends on the context. If you're writing technical documentation, Option 2 might be better. If you're just explaining the server's function, Option 1 or 3 would be fine.**
Accessible Color Contrast MCP
Enables checking WCAG color contrast ratios and accessibility compliance between color pairs. Helps determine optimal text colors for backgrounds and validates color combinations meet accessibility standards.
MCP Documentation Server
Provides comprehensive access to MCP documentation through structured guides, full-text search, and interactive development workflows for building servers and clients.
Glean
Sebuah server MCP yang mengintegrasikan Glean API untuk menyediakan hasil pencarian dan interaksi chatbot.
simctl-mcp
mcp-sleep
Alat yang memungkinkan Anda menunggu waktu tertentu untuk melanjutkan eksekusi agen.
linuxSshMcpServer
Tentu, berikut adalah cara membuat koneksi SSH dan mengirim perintah shell atau file ke server Linux target: **1. Menggunakan `ssh` dan `scp` (Cara paling umum dan sederhana):** * **Koneksi SSH dan Eksekusi Perintah:** ```bash ssh username@server_ip_address "command_to_execute" ``` Contoh: ```bash ssh user1@192.168.1.100 "uptime" ssh user1@192.168.1.100 "ls -l /home/user1" ``` * `username`: Nama pengguna di server target. * `server_ip_address`: Alamat IP atau nama domain server target. * `command_to_execute`: Perintah shell yang ingin Anda jalankan di server target. Pastikan untuk mengapit perintah dengan tanda kutip ganda (`"`) jika mengandung spasi atau karakter khusus. * **Mengirim File menggunakan `scp` (Secure Copy):** ```bash scp local_file_path username@server_ip_address:remote_destination_path ``` Contoh: ```bash scp my_script.sh user1@192.168.1.100:/home/user1/ scp /path/to/my_document.txt user1@192.168.1.100:/tmp/ ``` * `local_file_path`: Jalur lengkap ke file yang ingin Anda kirim dari komputer lokal Anda. * `username`: Nama pengguna di server target. * `server_ip_address`: Alamat IP atau nama domain server target. * `remote_destination_path`: Jalur lengkap di server target tempat Anda ingin menyimpan file tersebut. Untuk mengunduh file dari server: ```bash scp username@server_ip_address:remote_file_path local_destination_path ``` Contoh: ```bash scp user1@192.168.1.100:/home/user1/server_log.txt ./ ``` **2. Menggunakan `sshpass` (Jika Anda perlu mengotomatiskan kata sandi - HATI-HATI!):** * **PERINGATAN:** Menggunakan `sshpass` dianggap kurang aman karena menyimpan kata sandi dalam teks biasa. Hindari ini jika memungkinkan. Lebih baik menggunakan kunci SSH. Instal `sshpass` (jika belum terinstal): ```bash sudo apt-get install sshpass # Debian/Ubuntu sudo yum install sshpass # CentOS/RHEL/Fedora ``` Kemudian gunakan: ```bash sshpass -p 'your_password' ssh username@server_ip_address "command_to_execute" ``` Contoh: ```bash sshpass -p 'P@sswOrd123' ssh user1@192.168.1.100 "date" ``` Untuk `scp`: ```bash sshpass -p 'your_password' scp local_file_path username@server_ip_address:remote_destination_path ``` **3. Menggunakan Kunci SSH (Cara yang Direkomendasikan untuk Keamanan):** Ini adalah cara yang paling aman dan direkomendasikan untuk mengautentikasi ke server SSH. * **Buat Kunci SSH (jika Anda belum punya):** Di komputer lokal Anda: ```bash ssh-keygen -t rsa -b 4096 ``` Ikuti petunjuknya. Anda dapat menerima lokasi default untuk menyimpan kunci (biasanya `~/.ssh/id_rsa` untuk kunci privat dan `~/.ssh/id_rsa.pub` untuk kunci publik) dan passphrase (opsional, tetapi direkomendasikan). * **Salin Kunci Publik ke Server:** Ada beberapa cara untuk melakukan ini. Cara termudah (jika server mengizinkannya) adalah menggunakan `ssh-copy-id`: ```bash ssh-copy-id username@server_ip_address ``` Anda akan diminta kata sandi Anda sekali. Jika `ssh-copy-id` tidak tersedia, Anda dapat menyalin kunci publik secara manual: 1. Tampilkan kunci publik Anda: ```bash cat ~/.ssh/id_rsa.pub ``` Salin outputnya. 2. Hubungkan ke server menggunakan SSH (dengan kata sandi): ```bash ssh username@server_ip_address ``` 3. Edit file `~/.ssh/authorized_keys` (buat jika belum ada): ```bash mkdir -p ~/.ssh chmod 700 ~/.ssh nano ~/.ssh/authorized_keys # Atau gunakan editor teks lain seperti vim ``` 4. Tempelkan kunci publik yang Anda salin ke file `authorized_keys`. Pastikan hanya ada satu kunci per baris. 5. Simpan dan tutup file. 6. Ubah izin yang benar: ```bash chmod 600 ~/.ssh/authorized_keys ``` * **Sekarang Anda dapat terhubung ke server tanpa kata sandi:** ```bash ssh username@server_ip_address ``` Dan gunakan `scp` seperti sebelumnya (tanpa perlu kata sandi). **Contoh Penggunaan Kunci SSH dengan Perintah dan File:** * **Eksekusi Perintah:** ```bash ssh username@server_ip_address "df -h" ``` * **Mengirim File:** ```bash scp my_config.txt username@server_ip_address:/etc/my_application/ ``` **Penting:** * **Keamanan:** Selalu prioritaskan keamanan. Gunakan kunci SSH daripada kata sandi jika memungkinkan. Jika Anda harus menggunakan kata sandi, gunakan kata sandi yang kuat dan unik. * **Izin:** Pastikan Anda memiliki izin yang benar untuk membaca file lokal dan menulis ke direktori tujuan di server. * **Firewall:** Pastikan firewall di server Anda mengizinkan koneksi SSH (biasanya port 22). * **Konfigurasi SSH:** Anda dapat mengonfigurasi klien SSH Anda (file `~/.ssh/config`) untuk menyederhanakan koneksi. Misalnya, Anda dapat menentukan nama host, nama pengguna, dan kunci privat untuk server tertentu. **Contoh File `~/.ssh/config`:** ``` Host myserver HostName 192.168.1.100 User user1 IdentityFile ~/.ssh/id_rsa ``` Dengan konfigurasi ini, Anda dapat terhubung ke server hanya dengan: ```bash ssh myserver ``` Semoga ini membantu! Beri tahu saya jika Anda memiliki pertanyaan lain.
MCP GPT Image 1
MCP GPT Image 1
MCP Mailtrap Server
Enables sending transactional emails and managing email templates through Mailtrap's API. Supports both production email delivery and sandbox testing with comprehensive template management capabilities.
X(Twitter) V2 MCP Server
Implementasi server MCP yang menyediakan alat untuk berinteraksi dengan [Twitter/X API v2]
MCP Chess Server
Enables interaction with Chess.com's public API to retrieve player profiles and statistics including rating history and performance metrics for any Chess.com username.
Tavily Web Search MCP Server
Enables web search capabilities through the Tavily API, allowing users to perform web searches and retrieve information from the internet through natural language queries.
USASpending MCP Server
Enables research of federal contract awards and competitive landscape analysis using the USASpending.gov API. Supports searching for contracts, analyzing recipients, tracking spending trends, and identifying market opportunities in government contracting.
MCP Anthropic Server (
Sebuah server MCP yang menyediakan alat untuk berinteraksi dengan API rekayasa prompt Anthropic, memungkinkan pengguna untuk menghasilkan, meningkatkan, dan membuat templat prompt berdasarkan deskripsi tugas dan umpan balik.
Stocks MCP Server
Provides real-time access to financial market data including stock quotes, company information, cryptocurrency exchange rates, historical options chains, and time series data through the Alpha Vantage API.
Two Truths and a Twist
Server trivia berbasis MCP (Multiplayer Control Protocol) di mana AI membuat ronde dengan dua pernyataan benar dan satu 'twist' palsu tentang berbagai topik, memungkinkan pemain menebak pernyataan mana yang salah.
AiSpire
MCP Server dan Plugin untuk Vectric Aspire/V-Carve
MCP Swagger Server
Automatically generates MCP servers from OpenAPI/Swagger specifications, enabling users to interact with any REST API through natural language with flexible endpoint filtering and authentication support.
Apifox MCP
Sebuah server MCP yang mengintegrasikan dokumentasi API Apifox dengan asisten AI, memungkinkan AI untuk mengekstrak dan memahami informasi API dari proyek Apifox.
Kaggle-MCP
Menghubungkan Claude AI ke Kaggle API melalui Model Context Protocol, memungkinkan operasi kompetisi, dataset, dan kernel melalui antarmuka AI.
FastMCP GitHub Automation Server
Provides a comprehensive API wrapper for GitHub operations through a FastMCP-based server, simplifying repository management, pull requests, issues, and other GitHub interactions with secure authentication.
Lead Qualifier MCP Tool
A lightweight server that uses ChatGPT to qualify leads using the BANT framework (Budget, Authority, Need, Timeline) through a conversational question-by-question approach.
JSR-MCP Server
Sebuah server Model Context Protocol (MCP) yang menyediakan akses ke dokumentasi modul JSR (JavaScript Registry).
ClinicalTrials.gov Natural Language API Server
Enables users to query ClinicalTrials.gov using natural language instead of complex API parameters, translating plain English requests into structured API calls and returning organized clinical trial data.
OpenAI API MCP Server
An auto-generated MCP server that enables interaction with the OpenAI API, allowing users to access OpenAI's models and capabilities through the Multi-Agent Conversation Protocol.
MCP Local File Reader
Server Protokol Konteks Model (MCP) yang memungkinkan model AI untuk mengakses dan berinteraksi dengan sistem berkas lokal secara aman, memungkinkan pembacaan isi berkas, daftar direktori, dan pengambilan metadata berkas.
Smithery Registry MCP Server
Server MCP untuk berinteraksi dengan API Registri Smithery
Jokes MCP Server
An MCP server that delivers random jokes from multiple sources including Chuck Norris jokes, Dad jokes, and Yo Mama jokes for Microsoft Copilot Studio integration.
TAPD
sfs