Discover Awesome MCP Servers
Extend your agent with 53,434 capabilities via MCP servers.
- All53,434
- 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
MySQL MCP Server by CData
MySQL MCP Server by CData
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.
Smart Warehouse MCP Agent
Claude-powered warehouse management system that coordinates inventory, AGVs, and order processing through specialized agents using Model Context Protocol patterns.
camofox-browser-mcp
MCP server for controlling a local camofox-browser instance, enabling LLM agents to perform web automation tasks such as navigation, interaction, snapshotting, and content extraction.
airlock
MCP server that vets package installations and shell commands to block dangerous actions by AI coding agents.
Skolverket-MCP
Enables easy access to open data from the Swedish National Agency for Education, allowing querying and integration of educational statistics and facts through large language models.
astrbot-mcp
Provides tools for AstrBot plugin development including documentation access and hook inventory.
gerbil-mcp
Provides AI assistants with live access to a Gerbil Scheme environment to evaluate expressions, look up module exports, and check syntax. It enables real-time interaction with the gxi runtime for macro expansion and symbol searching.
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.
xhs-mcp
A lightweight MCP server that provides read-only access to Xiaohongshu (Little Red Book) data, enabling search, note details, user profiles, and trending feeds via direct HTTP APIs.
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.
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
Okay, here's a quickstart guide for setting up an MCP (Minecraft Coder Pack) server, translated into Spanish: **Inicio Rápido del Servidor MCP (Minecraft Coder Pack)** This guide assumes you have a basic understanding of command lines and file management. **Prerrequisitos:** * **Java Development Kit (JDK):** Asegúrate de tener instalado el JDK (Java Development Kit) más reciente. Puedes descargarlo desde el sitio web de Oracle o Adoptium (preferiblemente Adoptium). Asegúrate de que la variable de entorno `JAVA_HOME` esté configurada correctamente. * **Python:** Necesitarás Python 3. Asegúrate de que Python esté en tu PATH. * **Minecraft Coder Pack (MCP):** Descarga la versión de MCP que corresponda a la versión de Minecraft que deseas modificar. Puedes encontrarlo en varios foros de Minecraft o en GitHub (busca "Minecraft Coder Pack"). **Pasos:** 1. **Extraer MCP:** Descomprime el archivo ZIP de MCP en una carpeta de tu elección. Por ejemplo, `C:\mcp` o `/home/usuario/mcp`. 2. **Configurar MCP:** * **`conf/mcp.cfg`:** Abre el archivo `conf/mcp.cfg` con un editor de texto. * **`ClientVersion` y `ServerVersion`:** Asegúrate de que los valores de `ClientVersion` y `ServerVersion` coincidan con la versión de Minecraft que estás usando. Por ejemplo, `ClientVersion = 1.19.2` y `ServerVersion = 1.19.2`. Si solo estás trabajando con el servidor, puedes dejar `ClientVersion` en blanco. * **`MCPDeobfuscated`:** Asegúrate de que `MCPDeobfuscated = True`. Esto es importante para el desarrollo. 3. **Descargar Minecraft:** * Abre una terminal o línea de comandos y navega hasta el directorio de MCP (donde extrajiste el archivo ZIP). * Ejecuta el siguiente comando: ```bash python ./mcp.py --download ``` Esto descargará el JAR del cliente y del servidor de Minecraft. Si solo necesitas el servidor, puedes usar `--download-server`. 4. **Descompilar Minecraft:** * Ejecuta el siguiente comando: ```bash python ./mcp.py --decompile ``` Esto descompilará el código de Minecraft en código Java legible. Este proceso puede tardar un tiempo. 5. **Aplicar Parches (Opcional):** * Si tienes parches (patches) para aplicar, colócalos en la carpeta `patches`. * Ejecuta el siguiente comando: ```bash python ./mcp.py --patch ``` 6. **Recompilar Minecraft:** * Ejecuta el siguiente comando: ```bash python ./mcp.py --recompile ``` Esto recompilará el código Java modificado en archivos JAR. 7. **Reobfuscar Minecraft:** * Ejecuta el siguiente comando: ```bash python ./mcp.py --reobfuscate ``` Esto reobfuscará el código para que sea compatible con el juego original. 8. **Copiar a la carpeta del servidor:** * Después de la reobfuscación, los archivos JAR modificados se encontrarán en la carpeta `jars/reobf`. * Copia el archivo `minecraft_server.jar` (o el nombre correspondiente a tu versión) desde `jars/reobf` a la carpeta donde normalmente ejecutas tu servidor de Minecraft. 9. **Ejecutar el Servidor:** * Ejecuta el servidor de Minecraft como lo harías normalmente. **Resumen de Comandos:** * `python ./mcp.py --download`: Descarga los archivos JAR de Minecraft. * `python ./mcp.py --decompile`: Descompila el código de Minecraft. * `python ./mcp.py --patch`: Aplica parches. * `python ./mcp.py --recompile`: Recompila el código de Minecraft. * `python ./mcp.py --reobfuscate`: Reobfusca el código de Minecraft. **Notas Importantes:** * **Errores:** Es probable que encuentres errores durante el proceso. Lee los mensajes de error cuidadosamente para identificar el problema. A menudo, los errores se deben a versiones incorrectas, dependencias faltantes o problemas de configuración. * **Documentación:** Consulta la documentación de MCP para obtener información más detallada y opciones de configuración. * **Versiones:** Asegúrate de que todas las versiones (JDK, Python, MCP, Minecraft) sean compatibles entre sí. * **Carpeta `src`:** El código fuente descompilado se encuentra en la carpeta `src`. Aquí es donde realizarás tus modificaciones. * **Respaldos:** Siempre haz una copia de seguridad de tus archivos antes de modificarlos. This should get you started. Good luck!
PingOne Advanced Identity Cloud MCP Server
Enables AI assistants to interact with PingOne Advanced Identity Cloud environments through natural language, supporting user management, authentication theme customization, log analysis, and identity data queries with secure OAuth 2.0 authentication.
Remember Me
Here are a few options for translating "MCP server to persist chat artefacts and rules," depending on the specific context: **Option 1 (General):** * **Spanish:** Servidor MCP para persistir artefactos de chat y reglas. * This is a direct translation and works well if you're simply stating the purpose of the server. **Option 2 (More descriptive):** * **Spanish:** Servidor MCP para almacenar de forma persistente artefactos de chat y reglas. * This option uses "almacenar" (to store) which can be more descriptive. **Option 3 (Focus on data retention):** * **Spanish:** Servidor MCP para la persistencia de artefactos de chat y reglas. * This option emphasizes the persistence of the data itself. **Option 4 (More technical):** * **Spanish:** Servidor MCP para persistir artefactos de chat y reglas (almacenamiento persistente). * This option includes "(almacenamiento persistente)" which translates to "(persistent storage)" for added clarity in a technical context. **Which option is best depends on the context. Consider:** * **Your audience:** Are they technical or non-technical? * **The specific function:** Are you emphasizing storage, persistence, or something else? I would lean towards **Option 1 (Servidor MCP para persistir artefactos de chat y reglas.)** unless you have a specific reason to choose a different option. It's clear and concise.
mcp-rag-server
MCP RAG Server is a Python MCP server that indexes documents in multiple formats (Markdown, text, PowerPoint, PDF) using multilingual-e5-large embeddings and enables vector search for retrieval-augmented generation.
turbopuffer-mcp
Enables interaction with the Turbopuffer vector database, providing tools for managing namespaces, schema configuration, and performing advanced vector queries. It supports secure DAuth-style authentication and covers both v1 and v2 Turbopuffer API endpoints for comprehensive data operations.
Echo MCP Server
A simple demonstration MCP server that provides an echo tool and resource for learning how to build MCP servers. Serves as a starting point and template for creating custom MCP server implementations.
CLI-Anything · ArcGIS Pro
Drive Esri's ArcGIS Pro from an AI agent — the ArcGIS Pro counterpart to QGIS MCP. A headless ArcPy CLI plus an in-process .NET 8 add-in that exposes the live Pro session as MCP tools (ping, zoom_to, query, run_gp, export_layout) so an agent drives the running project while you watch.
Wellness Manager
Wellness-Master is the first pay-per-call wellness API where AI agents are first-class citizens, not an afterthought. Two distinct corpora — warm content for humans, pragmatic content for agents. Settled per call in USDC on Solana via x402. Free showroom tier, then $0.01 per item. Happy agents are productive agents.
LibreLink MCP Server
Enables access to FreeStyle Libre glucose data through Claude Desktop, providing current readings, historical data, statistics, and trend analysis from LibreLinkUp accounts with secure credential storage.
NFTGo MCP Server
Provides access to NFTGo's Developer API for retrieving NFT collection details, asset information, market data, wallet information, and search capabilities on the Ethereum blockchain.
notebooklm-mcp-pro
Production-grade Model Context Protocol server for Google NotebookLM that lets any MCP-capable client (Claude, ChatGPT, Cursor, etc.) interact with NotebookLM notebooks, sources, chats, and artifacts.
gpal
An MCP server that gives your IDE or agent access to Google Gemini with autonomous codebase exploration, enabling deep code analysis, architectural reviews, and bug hunting.
M365 Roadmap MCP Server
A Python-based MCP server that enables AI agents to query the Microsoft 365 Roadmap programmatically.
kite-mcp-server
Indian stock market trading via Zerodha Kite Connect. 78 tools for order execution, portfolio analytics, options Greeks, paper trading, backtesting, technical indicators, price alerts with Telegram, and SEBI compliance. Multi-user OAuth with remote Streamable HTTP transport.
Alfred MCP Server
Enables AI assistants to create, manage, and execute Alfred workflow automation skills, manage MCP server connections, view execution history, and handle API keys through Alfred's REST API.
gametheory-mcp
Equilibrium-aware primitives for AI agents — negotiation, auctions, mechanism design — exposed over MCP and importable as a Python library.
MCP Server: Memory
vscode-notebook-mcp
Exposes VSCode Jupyter notebooks to MCP-compatible AI agents, enabling them to read, edit, and run cells against the same kernel.