Discover Awesome MCP Servers
Extend your agent with 26,794 capabilities via MCP servers.
- All26,794
- 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
StreamSets MCP Server
Enables complete StreamSets Control Hub integration through conversational AI, allowing users to manage data pipelines, monitor jobs, and interactively build new pipelines with 44 tools across 9 StreamSets services. Features persistent pipeline builder sessions that let users create complete ETL workflows through natural language conversations.
MCX (Modular Code Execution)
An MCP server that enables AI agents to execute sandboxed JavaScript and TypeScript code instead of calling individual tools directly. It significantly reduces token usage by allowing agents to filter, aggregate, and transform data locally before returning results.
Habitica MCP Server
Enables AI assistants to interact with the Habitica API to manage tasks, track habits, and engage in gamified productivity features like pet raising and inventory management. It allows users to control their Habitica account through natural language for a personalized and automated productivity experience.
Pterasim MCP Server
Enables wing simulation and aerodynamic analysis for pterosaur-inspired flight models. Provides lift, drag, and thrust calculations through the pterasim module with analytical fallbacks when the native module is unavailable.
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.
X(Twitter) V2 MCP Server
Implementasi server MCP yang menyediakan alat untuk berinteraksi dengan [Twitter/X API v2]
ECL MCP Server
Provides comprehensive access to the Europa Component Library (ECL) design system with semantic search across 50+ components, code examples, accessibility requirements, design tokens, and validation tools for building European Commission websites.
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.
Telegram MCP Server
An MCP server that enables interaction with Telegram messaging platform, allowing users to retrieve unread messages, fetch entity information, and send messages through natural language interfaces.
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.
mcp-micromanage
Controls coding agents by enforcing structured implementation plans with PRs and commits as work units, requiring user review at each commit checkpoint to prevent agents from going off track. Includes a visualization dashboard for tracking progress in real-time.
AusLaw MCP
Enables users to search and retrieve Australian legislation and case law with full-text content extraction. Provides structured results with citation metadata and OCR support for archival PDFs.
Onyx Documentation MCP Server
Provides AI systems with access to Onyx programming language documentation through web crawling and intelligent search capabilities.
MCP_server_example
RAG MCP server
Mengimplementasikan alur kerja RAG yang terintegrasi dengan basis pengetahuan khusus apa pun dan dapat dipicu langsung dari IDE Cursor.
Academia MCP
Enables searching, fetching, and analyzing scientific papers from ArXiv, ACL Anthology, Semantic Scholar, and Hugging Face datasets, with optional LLM-powered document QA and research proposal workflows.
mcp-nutanix
MCP Server untuk Nutanix Prism Central
YouTube Transcript DL MCP Server
A comprehensive MCP server for extracting YouTube video transcripts with support for multiple transports, languages, and output formats.
MOSTLY AI MCP Server
Enables LLM agents to interact with the MOSTLY AI Platform for generating synthetic data, including training generators, managing data connectors, executing queries, and generating synthetic datasets with OAuth 2.1 authentication.
SymPy Sandbox MCP
A secure mathematical computation sandbox that enables LLMs to perform symbolic math operations like algebra, calculus, and equation solving via SymPy. It features low-latency execution through pre-warmed process pools and provides standardized JSON outputs for reliable agent integration.
Google Contacts MCP Server by CData
This read-only MCP Server allows you to connect to Google Contacts data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp
exia-scenario-generator MCP Server
Generates 'Kotonoha Sisters Explainer' style scenarios for the exia novel game engine and displays them in a separate window.
knowledge-rag
Local RAG system for Claude Code with hybrid search (semantic + BM25), cross-encoder reranking, markdown-aware chunking, and 12 MCP tools. Zero external servers, pure ONNX in-process.
Clockify Master MCP
Integrates Clockify time tracking directly into Claude Desktop, enabling users to start/stop timers, manage projects and clients, create tasks, generate reports, and track productivity through natural language commands.
MCP Express Server for Netlify
A serverless implementation of the Model Context Protocol (MCP) that runs on Netlify Functions, allowing developers to build and deploy MCP-compatible services with minimal configuration.
MCP Server
Marketing Brain
Provides standardized brand guidelines and structured content templates for marketing assets like blogs, emails, and social media. It serves as a central source of truth for brand voice and strategy through an extensible file-based system.