Discover Awesome MCP Servers
Extend your agent with 19,640 capabilities via MCP servers.
- All19,640
- 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
BitSight Community MCP Server
Enables access to BitSight security rating data through company search and rating retrieval functionality. Automatically manages BitSight subscriptions for one-time rating requests and provides structured security assessments for companies.
Aurora-MCP
Enables querying relationships between plant species, small molecules, and mitochondrial Complex I inhibitors by bridging natural-product, biodiversity, and PubMed datasets. Allows LLMs to perform structured searches and reasoning over biological data to identify potential plant-derived mitochondrial inhibitors.
Docker 설정 가이드 - CRM MCP 서버
MongoDB MCP Server
Sebuah server Model Context Protocol (MCP) yang memungkinkan LLM berinteraksi langsung dengan database MongoDB. Kueri koleksi, periksa skema, dan kelola data dengan lancar melalui bahasa alami.
MCP REST
Mengekspos server SSE MCP sebagai titik akhir REST untuk alat. Hanya untuk pengujian.
Email MCP Server
Server Protokol Konteks Model dengan konektivitas IMAP dan SMTP
Mcp_servers
Jeneen's MCP Agent
A multi-functional AI agent with an Arabic legal chatbot, Google search capability, and a VAE model that generates handwritten digit images.
Rollbar MCP Server
Implementasi server MCP yang memungkinkan LLM berinteraksi dengan data pelacakan kesalahan Rollbar, memungkinkan pengguna untuk membuat daftar dan menganalisis kesalahan, melihat kejadian, melacak penyebaran, dan mengakses informasi proyek.
Resend MCP Server
An MCP (Multi-Agent Conversation Protocol) Server for interacting with Resend's email API, auto-generated using AG2's MCP builder to enable sending emails through natural language.
Research Agent MCP
A multi-model research agent platform supporting Claude, Gemini, and OpenAI models with web search capabilities, thinking-enabled features, and citation support for advanced research workflows.
FFmpeg-MCP Server
An MCP server providing video processing capabilities through FFmpeg, enabling dialog-based local video search, trimming, concatenation, and playback functionalities.
GitHub PR Helper
Layanan MCP yang memungkinkan pembuatan Pull Request GitHub dan penambahan komentar tinjauan kode menggunakan GitHub CLI, menghilangkan kebutuhan untuk menangani autentikasi dan izin secara manual.
mcp-server-with-bun
Reddit MCP Server
Enables comprehensive Reddit research through a three-layer architecture that discovers relevant communities, provides operation guidance, and executes multi-subreddit content fetching with proper citations. Supports searching, post fetching, comment analysis, and batch operations across multiple subreddits for thorough content analysis.
Notion MCP Server
Enables interaction with Notion workspaces through the Notion API, allowing users to search, read, comment on, and create pages and databases using natural language commands.
Binance MCP Server
Enables AI agents to interact with Binance cryptocurrency exchange for trading operations, real-time market data access, portfolio management, and account monitoring through secure API integration.
Marketo MCP Server by CData
Marketo MCP Server by CData
Xava Labs MCP Template
A template repository for bootstrapping Model Context Protocol (MCP) servers with WebSocket and SSE support, enabling real-time bidirectional communication and server-to-client streaming in Cloudflare Workers.
Rover MCP Server
A ModelContextProvider server that enables secure querying of Red Hat internal groups API using client certificate authentication.
Database Mcp
# Layanan MCP Database Layanan MCP (Metoro Control Protocol) dengan kemampuan database, mendukung berbagai jenis database melalui GORM. ## Fitur - Dukungan untuk berbagai jenis database: - MySQL - PostgreSQL - SQLite - SQL Server - ClickHouse - Konfigurasi melalui: - File konfigurasi (YAML) - Argumen baris perintah - Variabel lingkungan - Integrasi protokol MCP - Dukungan GORM ORM ## Instalasi 1. Klon repositori 2. Instal dependensi: ```bash go mod tidy ``` ## Konfigurasi ### File Konfigurasi (config.yaml) Buat file `config.yaml` dengan struktur berikut: ```yaml database: type: "mysql" # mysql, postgres, sqlite, sqlserver, clickhouse host: "localhost" port: 3306 username: "root" password: "password" database: "mydb" ssl_mode: "disable" # untuk postgres file: "database.db" # untuk sqlite ``` ### Argumen Baris Perintah Anda dapat menimpa pengaturan file konfigurasi menggunakan argumen baris perintah: ```bash ./database-mcp --config=config.yaml \ --db-type=mysql \ --db-host=localhost \ --db-port=3306 \ --db-user=root \ --db-pass=password \ --db-name=mydb \ --db-ssl-mode=disable \ --db-file=database.db ``` Argumen baris perintah yang tersedia: - `--config`: Path ke file konfigurasi (default: "config.yaml") - `--db-type`: Jenis database (mysql, postgres, sqlite, sqlserver, clickhouse) - `--db-host`: Host database - `--db-port`: Port database - `--db-user`: Username database - `--db-pass`: Password database - `--db-name`: Nama database - `--db-ssl-mode`: Mode SSL (untuk PostgreSQL) - `--db-file`: File database (untuk SQLite) ## Penggunaan 1. Jalankan layanan: ```bash ./database-mcp ``` 2. Layanan akan: - Memuat konfigurasi dari file dan/atau baris perintah - Menginisialisasi koneksi database - Memulai server MCP - Mendaftarkan alat dan sumber daya yang tersedia ## Konfigurasi MCP Untuk menggunakan layanan MCP, konfigurasikan endpoint MCP di klien MCP Anda: ``` http://127.0.0.1:8080/sse ``` Ini akan menghubungkan klien MCP Anda ke layanan lokal yang berjalan di port 8080. ## Alat MCP Layanan menyediakan alat MCP berikut: 1. `get_tables`: Mendapatkan semua tabel dalam database - Mengembalikan daftar tabel dengan nama dan komentarnya 2. `get_table_detail`: Mendapatkan informasi detail tentang tabel tertentu - Argumen: - `table_name`: Nama tabel untuk mendapatkan detailnya - Mengembalikan informasi tabel termasuk: - Nama dan komentar tabel - Informasi kolom (nama, tipe, komentar, nullable, nilai default) 3. `execute_sql`: Menjalankan query SQL - Argumen: - `query`: Query SQL yang akan dijalankan - Mengembalikan: - Untuk query SELECT: Array hasil - Untuk query lainnya: Jumlah baris yang terpengaruh ## Lisensi Lisensi MIT
Memento
Rust Docs MCP Server
🦀 Mencegah saran kode Rust yang usang dari asisten AI. Server MCP ini mengambil dokumentasi crate terbaru, menggunakan embeddings/LLM, dan menyediakan konteks yang akurat melalui panggilan alat.
AI Agent Template MCP Server
An MCP server that enhances AI agents' coding capabilities by providing zero hallucinations, improved code quality, security-first approach, high test coverage, and efficient context management.
Whois MCP
Memungkinkan agen AI untuk melakukan pencarian WHOIS untuk mengambil detail pendaftaran domain, termasuk kepemilikan, tanggal pendaftaran, dan status ketersediaan tanpa memerlukan pencarian browser.
Skeleton MCP Server
A template project for building Model Context Protocol servers with FastMCP framework, providing example CRUD API implementations, Docker support, and development best practices.
Spotify MCP Server
Menghubungkan Claude dengan Spotify, memungkinkan pengguna untuk mengontrol pemutaran, mencari konten, mendapatkan informasi musik, dan mengelola antrean Spotify.
Raindrop.io MCP Server
MCP Server untuk mengakses pengelola bookmark Raindrop.io.
Beehiiv Analytics MCP Server
Provides read-only access to Beehiiv newsletter analytics data including publications, posts, and audience segments. Enables users to retrieve detailed analytics and statistics for their Beehiiv newsletters through natural language queries.
BMAD Agent FastMCP Service
A professional AI agent system that provides 10+ specialized agents and 25+ MCP tools to support development workflows in Cursor IDE, with dual LLM mode support (built-in and DeepSeek API).