Discover Awesome MCP Servers
Extend your agent with 17,185 capabilities via MCP servers.
- All17,185
- 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
MCPez - 微服务命令代理管理平台
Servidor MCP micro unificado
die-mcp
Servidor MCP de Detect-It-Easy
Model Context Protocol for Unreal Engine
Permitir que clientes de asistentes de IA como Cursor, Windsurf y Claude Desktop controlen Unreal Engine a través del lenguaje natural utilizando el Protocolo de Contexto del Modelo (MCP).
Ramp MCP Server
A Model Context Protocol server that enables LLMs to interact with Ramp's financial data by retrieving, analyzing, and running tasks through Ramp's Developer API, using an in-memory SQLite database to overcome token limitations.
ProxmoxMCP-Plus
An enhanced Python-based MCP server that enables complete VM lifecycle management and monitoring of Proxmox virtualization platforms through natural language, with 11 REST API endpoints for seamless integration.
Azure Data Explorer MCP Server
Espejo de
Super Windows CLI MCP Server
Espejo de
MCP Product Development Lifecycle Server
Enables AI agents to track and manage product development projects through structured 7-phase lifecycles with sprint tracking, role-based collaboration, and multi-project support. Provides phase management, progress tracking, and team coordination tools for complete product development workflows.
Ransomware Live MCP Server
Servidor MCP en Vivo de Ransomware ✨🔐
MCP Server
A Multi-Agent Conversation Protocol Server for the BrowserBase API, auto-generated using AG2's MCP builder, enabling interaction with browser automation functionalities through structured agent conversations.
Advanced TTS MCP Server
Provides high-quality text-to-speech synthesis with 10 natural voices, emotion control, and dynamic pacing for professional applications requiring expressive speech output.
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.
Cloudflare Playwright MCP
A server that leverages Playwright for automated browser testing and integrates with Cloudflare Workers, enabling AI assistants to control web browsers for navigation, interaction, and screenshots.
MCP Server Tutorial
OSV
The server can be utilized for secure development by listing all packages' CVEs, their affected versions and their fix versions.
Model Context Protocol (MCP) Server Project
mcp_docs_server
Okay, I can help you with that! To give you the best advice on building an MCP (Minecraft Coder Pack) server, I need a little more information. MCP is primarily used for decompiling, deobfuscating, and modifying the Minecraft source code, not for running a server directly. Are you trying to do one of the following? 1. **Develop a Minecraft Mod:** You want to use MCP to understand and modify the Minecraft code to create a mod. 2. **Run a Standard Minecraft Server:** You want to set up a server to play Minecraft with friends or publicly. 3. **Something Else:** You have a different goal in mind related to MCP and servers. Please tell me which of these (or something else) you're trying to do. In the meantime, here's some general information that might be helpful, depending on your goal: **If you want to develop a Minecraft Mod (using MCP):** * **MCP (Minecraft Coder Pack):** MCP is a toolset that allows you to decompile, deobfuscate, and recompile the Minecraft source code. This makes it readable and modifiable. It's essential for understanding how Minecraft works internally. * **Forge or Fabric:** These are modding APIs (Application Programming Interfaces) that provide a framework for creating mods. They handle a lot of the low-level details and provide hooks into the Minecraft code. Forge is the older and more established API, while Fabric is newer and generally considered more lightweight. **You'll almost certainly want to use one of these.** * **IDE (Integrated Development Environment):** You'll need an IDE like IntelliJ IDEA or Eclipse to write your code. These IDEs have plugins that make mod development easier. * **Java Development Kit (JDK):** You need the correct version of the JDK to compile your mod. The version depends on the Minecraft version you're targeting. * **Gradle or Maven:** These are build automation tools that help you manage dependencies and build your mod. Forge and Fabric projects typically use Gradle. **General Steps for Mod Development (using MCP as a foundation):** 1. **Set up your development environment:** Install the JDK, IDE, and a build tool (Gradle). 2. **Download and set up Forge or Fabric:** Follow the instructions on the Forge or Fabric websites to set up a development environment. This usually involves downloading a starter project. 3. **Decompile Minecraft (if needed):** While Forge and Fabric provide pre-deobfuscated code, you might still need to decompile specific parts of Minecraft using MCP if you need to understand the original code very deeply. This is less common now. 4. **Write your mod code:** Use your IDE to write the Java code for your mod. Use the Forge or Fabric API to interact with the Minecraft world. 5. **Build your mod:** Use Gradle to build your mod into a `.jar` file. 6. **Test your mod:** Place the `.jar` file in the `mods` folder of your Minecraft installation. Run Minecraft with Forge or Fabric to test your mod. **If you want to run a Standard Minecraft Server:** * **Download the Minecraft Server Software:** Go to the official Minecraft website and download the server `.jar` file for the version of Minecraft you want to run. * **Create a Server Directory:** Create a new folder on your computer to hold the server files. * **Place the `.jar` file in the directory:** Move the downloaded `.jar` file into the server directory. * **Run the Server:** Open a command prompt or terminal, navigate to the server directory, and run the server using the command: `java -Xmx1024M -Xms1024M -jar server.jar nogui` (Adjust the `-Xmx` and `-Xms` values to allocate more or less memory to the server). * **Accept the EULA:** The first time you run the server, it will generate an `eula.txt` file. Open this file and change `eula=false` to `eula=true` to accept the Minecraft End User License Agreement. * **Configure the Server (server.properties):** The server will also generate a `server.properties` file. This file contains settings for the server, such as the game mode, difficulty, port, and maximum number of players. Edit this file to customize your server. * **Port Forwarding (if needed):** If you want people outside your local network to be able to connect to your server, you'll need to configure port forwarding on your router. The default Minecraft server port is 25565. * **Run the Server Again:** After configuring the server, run the server again using the same command as before. **Important Considerations:** * **Minecraft Version:** Make sure you're using the correct versions of MCP, Forge/Fabric, and the Minecraft server software. They all need to be compatible. * **Memory:** Allocate enough memory to the server. The `-Xmx` and `-Xms` parameters in the `java` command control the maximum and initial memory allocation, respectively. 1GB (1024M) is a good starting point, but you may need more if you have a lot of players or mods. * **Security:** Keep your server software up to date to protect against security vulnerabilities. Use a strong password for your server's RCON (Remote Console) if you enable it. * **Resources:** The Minecraft Forge and Fabric websites have excellent documentation and tutorials. There are also many helpful communities online. **Please tell me more about what you're trying to do so I can give you more specific instructions!**
Obsidian Diary MCP Server
Enables AI-powered journaling in Obsidian with dynamic reflection prompts generated from recent entries and automatic backlinks between related diary entries. Supports adaptive templates that learn from writing patterns and smart content similarity linking.
OpenManager Vibe V4 MCP Server
A natural language-based server analysis and monitoring system that automatically processes user queries about server status and provides detailed responses with visualizations.
Getting Started with Create React App
React application for MCP server test
Gmail MCP Server
Provides complete Gmail API integration for email management, including sending/receiving messages, managing labels and threads, creating drafts, and configuring settings through OAuth2 authentication.
MCP Server for Splunk
Enables AI agents to interact seamlessly with Splunk environments through 20+ tools for search, analytics, data discovery, administration, and health monitoring. Features AI-powered troubleshooting workflows and supports multiple Splunk instances with production-ready security.
mcp-4o-Image-Generator
mcp-4o-Image-Generator
rust-mcp-tutorial
Por supuesto, aquí tienes la traducción: "Probando un servidor MCP con Rust"
Knowledge Base MCP Server
Enables AI assistants to manage a personal markdown-based knowledge base with natural language interactions. Supports creating, searching, updating, and organizing notes across categories like people, recipes, meetings, and procedures.
Anki MCP Server
Espejo de
AWS Documentation MCP Server
Enables users to access, search, and get recommendations from AWS documentation through natural language queries. Supports both global AWS documentation and AWS China documentation with tools to fetch pages, search content, and discover related resources.
🌐 Welcome to Fetch-MCP Repository 🌟
Un servidor MCP para obtener URLs / transcripciones de videos de Youtube.
Remote MCP Server
A server implementation of the Model Context Protocol (MCP) that runs on Cloudflare Workers, enabling AI assistants like Claude to securely access external tools and APIs through OAuth authentication.
Jokes MCP Server
A Model Context Protocol server that delivers jokes on demand, supporting different joke categories like Chuck Norris jokes and Dad jokes through Microsoft Copilot Studio and GitHub Copilot.