Discover Awesome MCP Servers
Extend your agent with 84,469 capabilities via MCP servers.
- All84,469
- 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
GitLab MCP
Exposes the GitLab REST API to MCP clients for managing projects, issues, merge requests, repositories, and CI/CD pipelines. It is multi-tenant, allowing each user to authenticate with their own token and instance URL.
cn-financial-mcp
Provides access to Chinese mainland financial data including A-stock quotes, financial statements, industry analysis, and macroeconomics through 42 MCP tools, with automatic data source fallback and no API key required.
adsmith
A Google Ads MCP server that enables safe, auditable management of ad accounts through natural language, including proposing, reviewing, applying, and rolling back changes with guardrails and dry-runs.
mcp_docs_server
Okay, to help you build an MCP (Mod Coder Pack) server, I need to understand what you're trying to achieve. MCP itself isn't a server, but a toolset for decompiling, deobfuscating, and re-compiling Minecraft code to make modding easier. You likely want to set up a development environment that *uses* MCP to create mods, and then test those mods on a Minecraft server. Here's a breakdown of the process and the help I can provide, along with common scenarios: **Understanding the Goal:** * **Are you trying to create a Minecraft server to *test* your mods?** This is the most common scenario. You'll use MCP to develop the mods, and then run a standard Minecraft server (Vanilla, Forge, Fabric, etc.) to test them. * **Are you trying to *modify* the server code itself using MCP?** This is a much more advanced scenario. It involves decompiling the server, making changes, and recompiling. It's generally not recommended unless you have a very specific reason. * **Are you trying to create a *modded* server for others to play on?** This involves installing mods (that you or others have created) onto a standard Minecraft server. **I'll assume you want to create a Minecraft server to *test* your mods, which is the most common use case. Here's a general outline and how I can help:** **1. Setting up your Development Environment (using MCP):** * **Download and Install MCP:** * Find the correct MCP version for the Minecraft version you're targeting. MCP is version-specific. A good place to start is often the MinecraftForge forums or related modding communities. * Follow the MCP installation instructions. This usually involves extracting the MCP archive to a directory. * **Decompile Minecraft:** * Use the MCP scripts (usually `decompile.bat` or `decompile.sh`) to decompile the Minecraft client and server. This will extract the source code. This is a crucial step. * **Set up your IDE (Integrated Development Environment):** * **IntelliJ IDEA (Recommended):** IntelliJ IDEA is a popular and powerful IDE for Java development. It has excellent support for Minecraft modding. * **Eclipse:** Another popular IDE. * Configure your IDE to use the MCP environment. This usually involves importing the MCP project into your IDE. MCP provides scripts to generate IDE-specific project files (e.g., `eclipse.bat` or `idea.bat`). * **Create your Mod Project:** * Within your IDE, create a new Java project or module. * Configure your project to depend on the MCP libraries. This allows you to use Minecraft classes and methods in your mod. * **Write your Mod Code:** This is where you actually write the Java code for your mod. **2. Setting up the Minecraft Server:** * **Choose a Server Type:** * **Vanilla:** The standard, unmodified Minecraft server. You'll need to use a mod loader (Forge or Fabric) to run mods on it. * **Forge:** A popular mod loader that provides a framework for mods to interact with Minecraft. Download the Forge installer for the Minecraft version you're using. * **Fabric:** Another mod loader, known for being lightweight and fast. Download the Fabric installer. * **Install the Server:** * **Vanilla:** Download the Minecraft server JAR file from the official Minecraft website. * **Forge/Fabric:** Run the Forge/Fabric installer and choose the "Install server" option. This will create the necessary server files. * **Configure the Server:** * Edit the `server.properties` file to configure server settings (e.g., port, game mode, difficulty). * **Install your Mod (and any dependencies):** * Place your mod's JAR file (the one you built in your IDE) into the `mods` folder in your server directory. If your mod has dependencies (other mods it relies on), you'll need to install those as well. * **Run the Server:** * Start the server using the appropriate command (e.g., `java -jar server.jar` or `java -Xmx4G -Xms4G -jar forge-xxx.jar nogui`). Adjust the memory allocation (`-Xmx4G -Xms4G`) as needed. **3. Testing and Debugging:** * **Connect to the Server:** Launch your Minecraft client and connect to the server's IP address and port. * **Test your Mod:** Verify that your mod is working as expected. * **Debug:** If you encounter issues, use your IDE's debugger to step through your code and identify the problem. Server logs are also invaluable for debugging. **How I can help you *specifically*:** To give you the best help, please tell me: * **What Minecraft version are you targeting?** (e.g., 1.20.1, 1.19.2, 1.16.5) * **Which mod loader are you using?** (Forge or Fabric) If you're not sure, start with Forge. * **What IDE are you using?** (IntelliJ IDEA, Eclipse, etc.) * **What specific problems are you encountering?** (e.g., "I can't decompile Minecraft," "My mod isn't loading on the server," "I'm getting a NullPointerException") * **What have you tried so far?** **Example Questions you might ask me:** * "I'm using Minecraft 1.18.2 and Forge. How do I set up my IntelliJ IDEA project to use the MCP libraries?" * "I'm getting an error when I run `decompile.bat`. The error message is '...' What does this mean?" * "My mod is crashing the server with a NullPointerException. How can I use the debugger to find the problem?" * "How do I add a new block to the game using Forge?" **Translation of Key Terms:** * **MCP (Mod Coder Pack):** 模组编码包 (Mózǔ biānmǎ bāo) * **Minecraft Server:** 我的世界服务器 (Wǒ de shìjiè fúwùqì) * **Mod:** 模组 (Mózǔ) * **Forge:** Forge (usually kept in English) * **Fabric:** Fabric (usually kept in English) * **Decompile:** 反编译 (Fǎnbiānyì) * **IDE (Integrated Development Environment):** 集成开发环境 (Jíchéng kāifā huánjìng) * **IntelliJ IDEA:** IntelliJ IDEA (usually kept in English) * **Eclipse:** Eclipse (usually kept in English) * **Server.properties:** 服务器配置文件 (Fúwùqì pèizhì wénjiàn) * **Mods Folder:** 模组文件夹 (Mózǔ wénjiànjiā) I'm ready to help you with specific steps once you provide more information. Good luck!
Getting Started with Create React App
用于 MCP 服务器测试的 React 应用程序
multimodal-mcp
Gives any MCP client (OpenCode, Claude Code, Claude Desktop, Cursor, etc.) the ability to process images by automatically converting them to text descriptions using a vision model, so that text-only LLMs can handle image-based queries.
figma-to-markdown-mcp
Converts Figma to Markdown. Strips out visual noise to drastically reduce LLM token consumption.
MCP Server Tutorial
safemap-uv-index-mcp
This MCP server provides UV index information for South Korean cities and districts, sourced from the Ministry of the Interior and Safety's living safety map, enabling filtered lookups by region and returning index values with occurrence times.
Tribunal TRT1: Consulta Processual
Enables querying labor court proceedings from TRT1 (Tribunal Regional do Trabalho da 1ª Região) directly from AI assistants, with read-only access and prepaid credit billing.
caseware-ai-procurement-knowledge-platform
Enables AI assistants to retrieve, search, and compare procurement documents using hybrid retrieval and MCP integration.
coolify-mcp
Fleet-level MCP server for Coolify that supports multiple instances and teams from one connection, with full REST API coverage and cross-instance search.
SQLite MCP Server
A Model Context Protocol server that enables SQL operations (SELECT, INSERT, UPDATE, DELETE) and table management through a standardized interface with SQLite databases.
Light DevOps MCP Server
Enables AI agents to query build/deploy status and request operations on a self-hosted Docker/Compose deployment platform, with Observer and Operator skills and approval-based write actions.
Model Context Protocol (MCP) Server Project
yoto-mcp-server
Enables audio uploads and MYO card creation for Yoto players directly from the terminal, using OAuth authentication and Warp AI integration.
LeetCode MCP Server
Enables Claude to search and retrieve LeetCode problems, user profiles, and statistics through natural language.
agent-locks
A filesystem-based MCP server for AI coding agents to coordinate work across git worktrees by claiming files, checking for conflicts, and logging progress without affecting the repository's git history.
ProxmoxMCP
A Python-based MCP server for interacting with Proxmox hypervisors, enabling management of nodes, VMs, containers, and executing commands via QEMU Guest Agent.
André — Analyse électorale française
Résultats des élections françaises 1999-2026 par bureau de vote, socio-démo INSEE et cartes.
0g-chain-mcp
Production-ready MCP server for 0G Chain blockchain operations, enabling wallet creation, balance checks, token transfers, staking, and validator discovery through natural language.
thoughtproof-mcp
Adversarial multi-model reasoning verification for AI agents. Claude, Grok, and DeepSeek challenge each decision — returns ALLOW or HOLD with JWKS-signed attestation. x402-gated on Base.
Zhipu AI Image Generator MCP Server
Enables text-to-image generation using Zhipu AI's CogView4 model with support for multiple image sizes (1024x1024, 768x768, 576x1024) and automatic local saving of generated images.
Yamcs MCP Server
Enables AI assistants to interact with Yamcs mission control systems through natural language, providing tools and resources for telemetry, commands, links, storage, instances, and alarms.
OWL-MCP
A Model-Context-Protocol server that enables AI assistants to create, edit, and manage Web Ontology Language (OWL) ontologies through function calls using OWL functional syntax.
yagoo-mcp-server
Enables AI agents to discover and recommend other agents through a searchable directory of over 50 agents across 10 categories.
Weather MCP Server
Enables real-time weather queries for 12 major Chinese cities and global cities using the wttr.in API. Provides tools to get weather, list supported cities, and server info.
R2R FastMCP Server
Integrates R2R (Retrieval-Augmented Generation) with Claude Desktop, enabling semantic search across knowledge bases and RAG-based question answering with support for vector, graph, web, and document search.
MemoryBase MCP Server
MCP server that logs insights from Claude sessions and sends them via HTTP to a server for Telegram notification and storage in memoryBase.
unitypilot
MCP server that lets AI agents drive the full Unity lifecycle on macOS without opening the Unity Editor.