Discover Awesome MCP Servers

Extend your agent with 29,296 capabilities via MCP servers.

All29,296
Filament MCP Server

Filament MCP Server

Enables AI assistants to build and manage Filament admin panels by providing component references, implementation plans, and official documentation lookups. It supports Laravel's Filament framework versions 4.x and 5.x through specialized tools and prompts.

mcp-dotnet

mcp-dotnet

Enables LLMs to read .NET assemblies as C# by providing tools to list types, decompile types, decompile assemblies, and search decompiled source.

Manus Credit Optimizer

Manus Credit Optimizer

An MCP server that reduces Manus AI credit usage by up to 75% through intelligent prompt compression, smart model routing, and intent classification. It provides tools to analyze and optimize prompts for maximum efficiency without sacrificing quality.

MCP PDF

MCP PDF

Enables AI-powered extraction and analysis of PDF documents with 40+ specialized tools for text, tables, images, layout analysis, security assessment, and document intelligence. Supports both text-based and scanned PDFs with OCR capabilities.

ShippingTracker

ShippingTracker

한국 택배 배송 조회를 위한 MCP 서버 MCP Server for Korean Shipment Tracking

Discord Agent MCP

Discord Agent MCP

Provides comprehensive Discord bot automation with 71 tools for messaging, channel management, moderation, roles, members, emojis, stickers, scheduled events, auto-moderation, and application commands through AI assistants.

Sentiment By Api Ninjas MCP Server

Sentiment By Api Ninjas MCP Server

Enables sentiment analysis of text blocks using the Api Ninjas API, returning sentiment scores and overall sentiment classification for up to 2000 characters of text.

MCP Quickstart Weather Server

MCP Quickstart Weather Server

Here's a quickstart guide for setting up an MCP (Minecraft Coder Pack) server: **1. Prerequisites:** * **Java Development Kit (JDK):** You need the correct version of Java for the Minecraft version you're working with. Generally, Java 8 is needed for older versions (1.8.9 and earlier), and newer versions of Minecraft require newer versions of Java (e.g., Java 17 for Minecraft 1.17+). Make sure you have the JDK, *not* just the JRE (Java Runtime Environment). You can download the JDK from Oracle or a distribution like Adoptium (Temurin). * **MCP (Minecraft Coder Pack):** Download the MCP version that corresponds to the Minecraft version you want to work with. You can find MCP releases on various forums and websites (search for "MCP [Minecraft Version]"). Be sure to download from a trusted source. * **Python:** MCP uses Python scripts. Make sure you have Python 3 installed. **2. Setup:** 1. **Extract MCP:** Extract the downloaded MCP archive to a directory of your choice (e.g., `C:\mcp` or `/home/user/mcp`). Avoid spaces in the path. 2. **Configure `conf/mcp.cfg`:** * Open the `conf/mcp.cfg` file in a text editor. * **`MinecraftVersion`:** Verify that the `MinecraftVersion` setting matches the Minecraft version you're using. This is *crucial*. * **`ClientPath` and `ServerPath`:** These should point to the location where you want the client and server JAR files to be downloaded. The default locations within the MCP directory are usually fine. * **`Fernflower`:** Make sure this is set to `True` if you want to decompile with Fernflower (recommended). * **Other settings:** Review other settings like `UseSrgNames` (whether to use SRG names or descriptive names) and adjust as needed. The defaults are usually a good starting point. 3. **Download Minecraft JARs:** * Open a command prompt or terminal. * Navigate to the MCP directory (e.g., `cd C:\mcp` or `cd /home/user/mcp`). * Run the following command: ```bash python updatemcp.py ``` This script will download the client and server JAR files from Mojang. It may take some time. If it fails, double-check your `mcp.cfg` settings, especially the `MinecraftVersion`. 4. **Decompile Minecraft:** * Run the following command: ```bash python decompile.py ``` This is the most time-consuming step. It decompiles the Minecraft client and server code. Be patient. If you encounter errors, carefully read the error messages. Common problems include incorrect Java versions or corrupted JAR files (try re-running `updatemcp.py`). **5. (Optional) Patch Minecraft:** * If you want to apply patches (e.g., to fix bugs or add features), you can place `.patch` files in the `patches` directory (client patches in `patches/minecraft` and server patches in `patches/minecraft_server`). * After placing patches, run: ```bash python patch.py ``` **6. Recompile Minecraft:** * After decompiling (and patching, if applicable), you need to recompile the code: ```bash python recompile.py ``` **7. Reobfuscate Minecraft:** * Finally, reobfuscate the code to create the final JAR files: ```bash python reobfuscate.py ``` **8. Find the Output:** * The reobfuscated client JAR will be in `reobf/minecraft_server.jar`. **Important Considerations:** * **Minecraft Version Compatibility:** Make absolutely sure the MCP version matches the Minecraft version you're targeting. Mismatched versions will lead to errors. * **Error Messages:** Pay close attention to error messages. They often provide clues about what went wrong. * **Clean Installation:** If you're having trouble, try deleting the MCP directory and starting from scratch. * **Permissions:** Ensure you have the necessary permissions to read and write files in the MCP directory. * **Internet Connection:** You need a stable internet connection to download the Minecraft JARs. * **MCP Forums/Communities:** If you're stuck, search for solutions on MCP forums or communities. Many common problems have already been addressed. **Vietnamese Translation (Dịch sang tiếng Việt):** **Hướng dẫn nhanh cài đặt máy chủ MCP (Minecraft Coder Pack):** **1. Yêu cầu:** * **Java Development Kit (JDK):** Bạn cần phiên bản Java phù hợp với phiên bản Minecraft bạn đang làm việc. Thông thường, Java 8 cần thiết cho các phiên bản cũ hơn (1.8.9 trở về trước), và các phiên bản Minecraft mới hơn yêu cầu các phiên bản Java mới hơn (ví dụ: Java 17 cho Minecraft 1.17+). Đảm bảo bạn có JDK, *không chỉ* JRE (Java Runtime Environment). Bạn có thể tải xuống JDK từ Oracle hoặc một bản phân phối như Adoptium (Temurin). * **MCP (Minecraft Coder Pack):** Tải xuống phiên bản MCP tương ứng với phiên bản Minecraft bạn muốn làm việc. Bạn có thể tìm thấy các bản phát hành MCP trên các diễn đàn và trang web khác nhau (tìm kiếm "MCP [Phiên bản Minecraft]"). Hãy chắc chắn tải xuống từ một nguồn đáng tin cậy. * **Python:** MCP sử dụng các tập lệnh Python. Đảm bảo bạn đã cài đặt Python 3. **2. Thiết lập:** 1. **Giải nén MCP:** Giải nén tệp lưu trữ MCP đã tải xuống vào một thư mục bạn chọn (ví dụ: `C:\mcp` hoặc `/home/user/mcp`). Tránh khoảng trắng trong đường dẫn. 2. **Cấu hình `conf/mcp.cfg`:** * Mở tệp `conf/mcp.cfg` trong một trình soạn thảo văn bản. * **`MinecraftVersion`:** Xác minh rằng cài đặt `MinecraftVersion` khớp với phiên bản Minecraft bạn đang sử dụng. Điều này *rất quan trọng*. * **`ClientPath` và `ServerPath`:** Các đường dẫn này phải trỏ đến vị trí bạn muốn tải xuống các tệp JAR của máy khách và máy chủ. Vị trí mặc định trong thư mục MCP thường ổn. * **`Fernflower`:** Đảm bảo rằng cài đặt này được đặt thành `True` nếu bạn muốn dịch ngược bằng Fernflower (khuyến nghị). * **Các cài đặt khác:** Xem xét các cài đặt khác như `UseSrgNames` (có sử dụng tên SRG hay tên mô tả) và điều chỉnh khi cần thiết. Các giá trị mặc định thường là một điểm khởi đầu tốt. 3. **Tải xuống JAR Minecraft:** * Mở dấu nhắc lệnh hoặc thiết bị đầu cuối. * Điều hướng đến thư mục MCP (ví dụ: `cd C:\mcp` hoặc `cd /home/user/mcp`). * Chạy lệnh sau: ```bash python updatemcp.py ``` Tập lệnh này sẽ tải xuống các tệp JAR của máy khách và máy chủ từ Mojang. Có thể mất một chút thời gian. Nếu nó không thành công, hãy kiểm tra kỹ cài đặt `mcp.cfg` của bạn, đặc biệt là `MinecraftVersion`. 4. **Dịch ngược Minecraft:** * Chạy lệnh sau: ```bash python decompile.py ``` Đây là bước tốn thời gian nhất. Nó dịch ngược mã máy khách và máy chủ Minecraft. Hãy kiên nhẫn. Nếu bạn gặp lỗi, hãy đọc kỹ thông báo lỗi. Các vấn đề thường gặp bao gồm phiên bản Java không chính xác hoặc tệp JAR bị hỏng (hãy thử chạy lại `updatemcp.py`). **5. (Tùy chọn) Vá Minecraft:** * Nếu bạn muốn áp dụng các bản vá (ví dụ: để sửa lỗi hoặc thêm tính năng), bạn có thể đặt các tệp `.patch` trong thư mục `patches` (các bản vá máy khách trong `patches/minecraft` và các bản vá máy chủ trong `patches/minecraft_server`). * Sau khi đặt các bản vá, hãy chạy: ```bash python patch.py ``` **6. Biên dịch lại Minecraft:** * Sau khi dịch ngược (và vá, nếu có), bạn cần biên dịch lại mã: ```bash python recompile.py ``` **7. Tái tạo lại Minecraft:** * Cuối cùng, tái tạo lại mã để tạo các tệp JAR cuối cùng: ```bash python reobfuscate.py ``` **8. Tìm đầu ra:** * JAR máy khách được tái tạo sẽ nằm trong `reobf/minecraft_server.jar`. **Những điều cần cân nhắc quan trọng:** * **Khả năng tương thích phiên bản Minecraft:** Hãy chắc chắn rằng phiên bản MCP khớp với phiên bản Minecraft bạn đang nhắm mục tiêu. Các phiên bản không khớp sẽ dẫn đến lỗi. * **Thông báo lỗi:** Hãy chú ý đến thông báo lỗi. Chúng thường cung cấp manh mối về những gì đã xảy ra sai. * **Cài đặt sạch:** Nếu bạn gặp sự cố, hãy thử xóa thư mục MCP và bắt đầu lại từ đầu. * **Quyền:** Đảm bảo bạn có các quyền cần thiết để đọc và ghi tệp trong thư mục MCP. * **Kết nối Internet:** Bạn cần có kết nối internet ổn định để tải xuống các JAR Minecraft. * **Diễn đàn/Cộng đồng MCP:** Nếu bạn gặp khó khăn, hãy tìm kiếm giải pháp trên diễn đàn hoặc cộng đồng MCP. Nhiều vấn đề phổ biến đã được giải quyết.

Markdownify MCP Server

Markdownify MCP Server

A Model Context Protocol server that converts diverse file types, including PDFs, images, audio, and Office documents, into Markdown format. It also transforms web content like YouTube transcripts and Bing search results into readable text for model consumption.

Google Trends MCP Server

Google Trends MCP Server

Enables retrieval and analysis of Google Trends data for any search term over the last 12 months. Provides structured timeline data with relative interest scores that can be filtered by geography and category.

Insight Digger MCP

Insight Digger MCP

An enterprise-grade data analysis system that enables users to discover data sources, configure analyses, and execute workflows through Claude Desktop. It features intelligent caching, session isolation, and secure JWT authentication for streamlined multi-user data orchestration.

WordPress Content MCP

WordPress Content MCP

Enables management of WordPress posts and pages including creating, updating, deleting, duplicating, scheduling, and bulk editing content through the WordPress REST API.

Smart Warehouse MCP Agent

Smart Warehouse MCP Agent

Claude-powered warehouse management system that coordinates inventory, AGVs, and order processing through specialized agents using Model Context Protocol patterns.

FluidSynth MCP Server

FluidSynth MCP Server

A MIDI composition system that enables AI assistants to create music through FluidSynth, with capabilities for playing notes, creating melodies, managing tracks, and exporting audio.

NCBI Gene MCP Server

NCBI Gene MCP Server

MCP server that interfaces with the NCBI Entrez API to fetch detailed information about genes and proteins, enabling gene searches, gene/protein metadata retrieval, and symbol searching with organism filtering.

Promethean OS MCP

Promethean OS MCP

A unified MCP server with composable tools for GitHub operations, file management, shell execution, kanban boards, Discord messaging, and package management. Features role-based security, HTTP/stdio transports, and a web-based development UI.

XMTP MCP Server

XMTP MCP Server

Enables AI agents to interact with the XMTP decentralized messaging network. Supports sending encrypted messages, managing conversations, and streaming real-time messages to any XMTP-enabled wallet address.

GitHub MCP Server

GitHub MCP Server

Enables AI assistants to analyze GitHub repository structures and read file contents with features like directory traversal, file type analysis, syntax highlighting, and code pattern detection. Supports both public and private repositories through GitHub API integration.

Nornir MCP Server

Nornir MCP Server

A FastMCP server that provides network automation tools by exposing Nornir and NAPALM operations as MCP tools, allowing users to manage and interact with network devices through compatible MCP clients.

MSC MCP Server

MSC MCP Server

Enables control of Android devices through ADB, allowing users to list connected devices, capture screenshots using multiple methods (adb, droidcast, minicap, mumu), and retrieve device information.

goodday-mcp

goodday-mcp

Goodday‑MCP is a lightweight Model Context Protocol (MCP) server designed to seamlessly integrate with the Goodday project management platform via its API v2. It enables querying of projects, tasks, and users—without altering any data—making it ideal for secure context-aware applications

Firecrawl Simple MCP Server

Firecrawl Simple MCP Server

Máy chủ MCP cho Firecrawl Simple — một công cụ thu thập dữ liệu web và lập bản đồ trang web, cho phép LLM truy cập và xử lý nội dung web.

hiveclear

hiveclear

MCP server for agent treasury management. Creates yield-bearing vaults, manages USDC deposits, and runs programmable time-based payment streams between agents.

MCP Data Analyzer

MCP Data Analyzer

Enables loading and statistical analysis of .xlsx and .csv files with visualization capabilities using matplotlib and plotly to generate various graphs and charts.

archangel-agency-mcp

archangel-agency-mcp

Query ontological research briefings, Universal Language frameworks, and structured AI context documents through 4 MCP tools — including an 8-document Context JSON library sourced from the FusionGirl wiki. Supports x402 micropayments on Base and serves an A2A agent card for inter-agent discovery.

gemini-cli-mcp

gemini-cli-mcp

A secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command injection.

JumpCloud MCP Server

JumpCloud MCP Server

Enables natural language interaction with JumpCloud environments to query users, systems, groups, and SSO applications. Features a local LLM-free agent for keyword-based tool matching and REST API access to JumpCloud data.

MCP YouTube Transcript Server

MCP YouTube Transcript Server

A Model Context Protocol server that enables retrieval of transcripts, metadata, and subtitles from YouTube videos. It supports multiple languages, automatic paragraph segmentation, and video downloading to facilitate content analysis and processing.

TypeScript MCP Server Boilerplate

TypeScript MCP Server Boilerplate

A boilerplate project for quickly developing Model Context Protocol (MCP) servers using TypeScript SDK, with example tools (calculator, greet) and resources (server info) pre-implemented.

macOS Notification MCP

macOS Notification MCP

macOS Notification MCP