Discover Awesome MCP Servers

Extend your agent with 27,002 capabilities via MCP servers.

All27,002
MCP微信公众号爬虫

MCP微信公众号爬虫

基于MCP架构的微信公众号文章爬虫系统,支持AI智能体通过Selenium自动抓取微信公众号文章内容和图片,实现文章内容的智能分析。

Gemini News Summarizer MCP Server

Gemini News Summarizer MCP Server

An MCP server that enables a Gemini-based chatbot to fetch and summarize current news headlines from GNews API when users ask about trending topics.

Derisk

Derisk

AI-Native Risk Intelligence Systems

W3Ship MCP Server

W3Ship MCP Server

Primary purpose is to link public key identity to physical address anonymously. But from there TMF forum implementation of cart and ordering and more.

fal.ai MCP Server

fal.ai MCP Server

Provides access to over 600 AI models on fal.ai for generating and editing images, videos, music, and speech directly within Claude. It supports high-performance models like FLUX, Kling, and Whisper for various creative and analytical tasks.

LandiWetter MCP Server

LandiWetter MCP Server

Provides Swiss weather forecast data, allowing users to search for Swiss locations and get detailed hourly and daily weather forecasts.

ASUS Merlin Router MCP Server

ASUS Merlin Router MCP Server

Enables management of ASUS routers running Asuswrt-Merlin firmware via SSH/SCP. Supports system monitoring, device management, WiFi control, service restarts, NVRAM operations, file transfers, VPN management, and custom command execution.

MCP HTTP TAVILY DATE OAUTH

MCP HTTP TAVILY DATE OAUTH

Enables web searches using TAVILY API with fallback to DuckDuckGo, datetime queries, and optional Ollama AI processing. Features HTTP transport with OAuth2 authentication for secure access to search capabilities.

MCP-CLIO

MCP-CLIO

Exposes Creatio CLI (CLIO) commands as tools for AI agents to manage Creatio environments. It enables users to perform environment health checks, restart web applications, and execute raw CLI commands through a stateless HTTP transport.

MCP Template

MCP Template

A template for building Model Context Protocol servers that allow AI assistants to interact with custom data and services through queryable resources and specialized tools.

buildkite-mcp-server

buildkite-mcp-server

Ini adalah server mcp untuk buildkite.

Managed Service for Microsoft Active Directory API Server

Managed Service for Microsoft Active Directory API Server

An MCP (Multi-Agent Conversation Protocol) server that enables interaction with Google's Managed Service for Microsoft Active Directory through its OpenAPI, allowing users to manage identity resources through natural language.

PlanningCopilot

PlanningCopilot

A tool-augmented LLM system for the full PDDL planning pipeline, improving reliability without domain-specific training.

MCP Learning Demo

MCP Learning Demo

A hands-on demonstration project that teaches the Model Context Protocol (MCP) through Python code, allowing users to understand how AI models interact with their context through a provider-agent architecture.

Analytics MCP

Analytics MCP

Enables AI-powered analytics from Stripe, PayPal, and Google Analytics 4 (BigQuery) data sources with built-in guardrails and automated workflows for financial and web performance insights.

Kiln

Kiln

Open-source MCP server that lets AI agents control 3D printers. 353 tools for OctoPrint, Moonraker, Bambu Lab, Prusa Link, and Elegoo — search model marketplaces, generate 3D models from text, slice STL files, queue prints, monitor with camera vision, and manage multi-printer fleets. Install via pip install kiln3d.

Notion Page Viewer

Notion Page Viewer

Enables viewing and browsing Notion page content through a web interface with multiple display modes, supporting various block types including text, images, toggles, and child pages.

Cursor Reviewer MCP

Cursor Reviewer MCP

Enables code review through Cursor CLI integration with GPT-5. Provides a cursor.review tool that executes code reviews and returns structured JSON results with automatic audit logging.

MySQL MCP Server

MySQL MCP Server

Enables comprehensive MySQL database operations including cross-database queries, performance analysis, health monitoring, and AI-assisted database management with role-based access control.

MCP SGF Server

MCP SGF Server

Enables processing of SGF (Smart Game Format) files to extract comprehensive game information and generate customizable visual board diagrams in PNG or SVG formats with multiple themes.

mcp-server-bridge

mcp-server-bridge

Alat Pengelola MCP untuk mengelola semua server MCP dan mengekspor kombinasi Anda sendiri.

Telos Network MCP Server

Telos Network MCP Server

A comprehensive suite of tools for DeFi operations and analytics on the Telos blockchain, including liquid staking, token swaps via Swapsicle, and real-time market data integration. It enables AI assistants to execute transactions, manage token portfolios, and monitor protocol yields through natural language.

Emercoin MCP Server

Emercoin MCP Server

Provides complete HTTP/JSON access to all 100+ Emercoin RPC endpoints with integrated formatting utilities. Enables blockchain operations, name system management, wallet functions, and mining operations through a comprehensive REST API interface.

AI_SOC_MCP_Server_Sher

AI_SOC_MCP_Server_Sher

AI\_SOC\_MCP\_Server\_Sher

Ultrade MCP Server

Ultrade MCP Server

Enables interaction with the Ultrade API to manage wallets, execute market orders, and access real-time trading data. It provides tools for account authentication, market depth analysis, and system status monitoring.

lunar-mcp

lunar-mcp

lunar-mcp is a Go-based MCP server that provides 28+ tools for Chinese traditional calendar, fortune telling, and divination. It enables AI agents to integrate Chinese cultural computations into their workflows.

Apple Reminders MCP Server

Apple Reminders MCP Server

Enables AI assistants to manage Apple Reminders on macOS using natural language, with support for creating, updating, and searching reminders including advanced features like recurring patterns, location-based triggers, and multiple alarms.

Crunchbase MCP Server

Crunchbase MCP Server

Sebuah server Model Context Protocol (MCP) yang menyediakan akses ke data Crunchbase untuk asisten AI. Server ini memungkinkan asisten AI untuk mencari perusahaan, mendapatkan detail perusahaan, informasi pendanaan, akuisisi, dan data orang dari Crunchbase.

MCP Etherscan Server

MCP Etherscan Server

Provides Ethereum blockchain data tools via Etherscan's API, enabling users to check balances, view transactions, track token transfers, fetch contract ABIs and code, monitor gas prices, and resolve ENS names.

Mcp Server Docker

Mcp Server Docker

Tentu, berikut adalah contoh cara membuat server Minecraft (MCP) menggunakan Docker: **Dockerfile** ```dockerfile FROM openjdk:17-jdk-slim # Set working directory WORKDIR /app # Download Minecraft Server (ganti versi sesuai kebutuhan) RUN wget https://launcher.mojang.com/v1/objects/35139a42bd5cd35253599977d64a28b410c16647/server.jar -O minecraft_server.jar # Accept EULA RUN echo "eula=true" > eula.txt # Expose Minecraft port EXPOSE 25565 # Start Minecraft Server CMD ["java", "-Xmx2G", "-Xms2G", "-jar", "minecraft_server.jar", "nogui"] ``` **Penjelasan:** * `FROM openjdk:17-jdk-slim`: Menggunakan image dasar OpenJDK 17 yang ringan. Minecraft membutuhkan Java untuk berjalan. * `WORKDIR /app`: Menentukan direktori kerja di dalam container. * `RUN wget ...`: Mengunduh file `server.jar` Minecraft dari Mojang. **Penting:** Ganti URL dengan versi server yang Anda inginkan. Anda bisa menemukan URL download di situs web Minecraft atau wiki. * `RUN echo "eula=true" > eula.txt`: Menerima EULA (End User License Agreement) Minecraft. Anda harus menerima EULA untuk menjalankan server. * `EXPOSE 25565`: Membuka port 25565, port default untuk Minecraft. * `CMD ["java", "-Xmx2G", "-Xms2G", "-jar", "minecraft_server.jar", "nogui"]`: Menjalankan server Minecraft. * `-Xmx2G` dan `-Xms2G`: Mengatur alokasi memori maksimum dan minimum untuk server (2GB dalam contoh ini). Sesuaikan sesuai kebutuhan server Anda. * `nogui`: Menjalankan server tanpa GUI (Graphical User Interface). **Cara Menggunakan:** 1. **Simpan Dockerfile:** Simpan kode di atas sebagai file bernama `Dockerfile` (tanpa ekstensi). 2. **Bangun Image Docker:** Buka terminal atau command prompt, arahkan ke direktori tempat Anda menyimpan `Dockerfile`, dan jalankan perintah berikut: ```bash docker build -t minecraft-server . ``` Ini akan membangun image Docker dengan nama `minecraft-server`. Tanda titik (`.`) menunjukkan bahwa Dockerfile berada di direktori saat ini. 3. **Jalankan Container Docker:** Jalankan container dari image yang baru saja Anda buat: ```bash docker run -d -p 25565:25565 minecraft-server ``` * `-d`: Menjalankan container di background (detached mode). * `-p 25565:25565`: Memetakan port 25565 dari container ke port 25565 di host machine Anda. Ini memungkinkan pemain untuk terhubung ke server Anda. **Tips Tambahan:** * **Volume:** Untuk menyimpan data server (dunia, konfigurasi, dll.) secara persisten, gunakan volume Docker. Contoh: ```bash docker run -d -p 25565:25565 -v minecraft_data:/app minecraft-server ``` Ini akan membuat volume bernama `minecraft_data` dan memasangnya ke direktori `/app` di dalam container. Data server akan disimpan di volume ini, sehingga tidak akan hilang saat container dihentikan atau dihapus. * **Konfigurasi Server:** Anda dapat memodifikasi file `server.properties` untuk mengkonfigurasi server Anda. File ini akan dibuat secara otomatis saat server pertama kali dijalankan. Anda dapat mengakses file ini melalui volume yang Anda buat. * **Environment Variables:** Anda dapat menggunakan environment variables untuk mengkonfigurasi server. Contoh: ```dockerfile ENV EULA=TRUE CMD ["java", "-Xmx2G", "-Xms2G", "-jar", "minecraft_server.jar", "nogui"] ``` Kemudian, saat menjalankan container: ```bash docker run -d -p 25565:25565 -e EULA=TRUE minecraft-server ``` * **Docker Compose:** Untuk konfigurasi yang lebih kompleks, pertimbangkan untuk menggunakan Docker Compose. Ini memungkinkan Anda untuk mendefinisikan dan mengelola beberapa container sebagai satu aplikasi. **Contoh Docker Compose (docker-compose.yml):** ```yaml version: "3.8" services: minecraft: image: minecraft-server build: . ports: - "25565:25565" volumes: - minecraft_data:/app environment: EULA: "TRUE" volumes: minecraft_data: ``` Untuk menjalankan dengan Docker Compose: 1. Simpan kode di atas sebagai `docker-compose.yml` di direktori yang sama dengan `Dockerfile`. 2. Jalankan perintah: `docker-compose up -d` Pastikan Anda telah menginstal Docker dan Docker Compose di sistem Anda. Semoga contoh ini membantu! Jangan ragu untuk bertanya jika Anda memiliki pertanyaan lebih lanjut.