Discover Awesome MCP Servers
Extend your agent with 39,372 capabilities via MCP servers.
- All39,372
- 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
Open-E JovianDSS REST API Documentation MCP Server
Provides access to Open-E JovianDSS REST API documentation for intelligent search, endpoint analysis, and version comparison. It enables developers to integrate and interact with JovianDSS storage services through natural language via the Model Context Protocol.
Jokes MCP Server
A Model Context Protocol server that delivers jokes on demand, allowing users to request various types of jokes (Chuck Norris, Dad jokes, etc.) from Microsoft Copilot Studio and GitHub Copilot.
cryptopanic-mcp-server
Provides AI agents with real-time cryptocurrency news and media updates sourced from CryptoPanic. It allows users to fetch multiple pages of content to track market sentiment and the latest developments in the crypto space.
TekAutomate MCP Server
An AI orchestration layer that enables automated control and validation of test and measurement instruments using SCPI commands and tm_devices. It provides tools for project knowledge retrieval, command materialization, and deterministic shortcuts to streamline instrumentation workflows.
HSH Data-on-Demand
Made-to-order data for AI agents via x402 micropayments on Base. Describe a need in plain language, get a custom quote, pay per call. No signup, no API keys. HTTP + MCP transports. 5 tools.
Stack AI MCP Server
Enables users to connect and run Stack AI workflows directly through MCP-compatible clients. It allows for passing user inputs to specific projects and receiving structured responses from deployed AI applications.
MCP-Maestro
Connects AI assistants to the Maestro research framework to orchestrate multi-agent research missions, including planning, research, and writing phases. It enables users to launch research tasks, track real-time progress, and retrieve comprehensive structured reports and notes.
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.
Roblox MCP Server
Enables AI assistants to interact with running Roblox game instances by inspecting the game hierarchy, reading client-side scripts, and executing Lua code directly within the Roblox client through a WebSocket bridge.
ghed-mcp
A Model Context Protocol (MCP) server that gives AI assistants like Claude direct access to the World Health Organization's Global Health Expenditure Database (GHED) — purpose-built for comparative health-financing research.
VSCode Debug MCP
An MCP server and VS Code extension that enables AI clients to interactively debug code using breakpoints, execution control, and state inspection. It is language-agnostic and works with any debugger that supports VS Code's launch.json configurations.
Polymarket MCP
A Model Context Protocol (MCP) server for Polymarket prediction markets, providing real-time market data, prices, and AI-powered analysis tools for Claude Desktop integration.
SparrowDesk
Connect to SparrowDesk using MCP and manage your tickets, knowledge base and more.
USPTO Patent File Wrapper MCP Server
A high-performance MCP server for the USPTO Patent File Wrapper API with context reduction, smart field mapping, and secure browser-accessible downloads.
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.
Mattermost MCP Server
This server enables interaction with Mattermost workspaces to manage channels, messages, threads, and user profiles via the Mattermost REST API. It provides a comprehensive suite of tools for reading channel history, posting messages, and managing reactions within a trusted environment.
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.
mcp-carrefour
MCP server that connects Carrefour Drive to Claude and other MCP clients, enabling product search with real prices, nutriscore, availability, and natural language cart management.
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]
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.
crosswalk-mcp
An AI-native career copilot that enables job discovery, fit scoring, and application tailoring through natural language, running locally with zero API keys.
cawskills-mcp
skills for claw services and msp
bilibili-api-mcp-server
Sebuah server MCP untuk API Bilibili.
nas-mcp-server
MCP server for managing a media server stack (Plex, Radarr, Overseerr, Bazarr, Prowlarr, Trakt.tv) using natural language to browse, request, and discover content.
employment-ai
MCP server for EU AI Act compliance in employment AI, featuring built-in risk management, bias detection, transparency, and FRIA support.
avm-mcp-server
MCP server for discovering and exploring Azure Verified Modules (AVM) from the Bicep Public Registry, enabling AI agents to search, retrieve module details, and access documentation.
mcp-lbc
Exposes Leboncoin classified ads to Claude, allowing search with filters and full ad details. Includes rate limiting and optional residential proxy support.