Discover Awesome MCP Servers
Extend your agent with 14,529 capabilities via MCP servers.
- All14,529
- 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
options-chain-mcp
Here are a few possible translations, depending on the context: * **Cadena de opciones, servidor MCP:** This is a direct translation and is generally understandable. It's suitable if you're talking about a server specifically designed for handling option chain data and using the MCP protocol (if that's what you mean by "MCP"). * **Servidor MCP para cadenas de opciones:** This emphasizes that the MCP server is *for* option chains. It might be clearer if the server's purpose is the main point. * **Servidor de cadena de opciones MCP:** This is less common but could be used if "MCP" is an adjective describing the type of option chain. Without more context about what "Option Chain MCP server" refers to, it's difficult to give the *perfect* translation. However, the first two options are the most likely to be understood.
Mcp Base
Directorio de los mejores servidores de MCP
simple_mcp_server_with_langgraph
Simple MCP server with Langgraph.
Reaper MCP Server
Espejo de
GitHub MCP Server with Organization Support
Here are a few ways to translate "GitHub MCP server with organization support" into Spanish, depending on the nuance you want to convey: **Option 1 (Most straightforward):** * **Servidor MCP de GitHub con soporte para organizaciones.** This is a direct translation and is perfectly understandable. **Option 2 (Emphasizing the "organization" aspect):** * **Servidor MCP de GitHub con soporte organizacional.** This uses the adjective "organizacional" which emphasizes that the support is related to the organization's structure and needs. **Option 3 (More descriptive, if needed):** * **Servidor MCP de GitHub que soporta organizaciones.** This translates to "GitHub MCP server that supports organizations." It's slightly more verbose but can be useful if you want to be very clear. **Option 4 (Using "para la gestión de"):** * **Servidor MCP de GitHub para la gestión de organizaciones.** This translates to "GitHub MCP server for the management of organizations." This is a good option if the MCP server is specifically used for managing organizations. **Which one to choose?** * If you want the simplest and most common translation, use **"Servidor MCP de GitHub con soporte para organizaciones."** * If you want to emphasize the organizational aspect, use **"Servidor MCP de GitHub con soporte organizacional."** * If you need to be very explicit, use **"Servidor MCP de GitHub que soporta organizaciones."** * If the server is specifically for managing organizations, use **"Servidor MCP de GitHub para la gestión de organizaciones."** In most cases, the first option is perfectly suitable.
Fillout.io MCP Server
Mirror of
MCP Server for Windsurf/Roocode
Model Context Protocol (MCP) server for Windsurf integration with image generation and web scraping capabilities.
100-tool-mcp-server-json-example
My last working mcp-server Claude app JSON
MCPs for sports
Un servidor MCP para deportes en tiempo real.
mcp-all
Building MCP Servers and Clients with Spring AI
Central MCP Host
Centralize mcp server to run on a home lab instead of individually on every machine.
WordPress MCP Server
Mirror of
Jira communication server MCP Server
Espejo de
Minesweeper MCP Server 🚀
An MCP server for playing Minesweeper
Template for Bun MCP Server
template for Bun + MCP server project
MCP server in Python
Creating a barebones MCP server around python (plus uv), encapsulated in a nix flake
mcp-jira-server
MCP Jira Server
Anti-Bullshit MCP Server
Espejo de
aivengers-mcp MCP server
MCP server with dynamic tool searching/calling using AIvengers smart tools
Twilio Messaging MCP Server
Espejo de
WebSockets MCP Math Demo
Demostración de cliente/servidor MCP utilizando objetos duraderos para el seguimiento del estado.
MCP Server Neurolorap
Mirror of
mcp-server-notifier
Lightweight Node.js server sending webhook notifications. Ideal for devs using AI agents (e.g., Cursor) on multi-projects, alerting task completion for efficient switching. Features webhook alerts, multi-project dev, AI integration, easy setup for dev tools & automation.
mcp-taskwarrior
A simple MCP Server for Taskwarrior

mcp_rs_testWhat is MCP RS Test?How to use MCP RS Test?Key features of MCP RS Test?Use cases of MCP RS Test?FAQ from MCP RS Test?
MCP server implementation in Rust
Kafka MCP Server
Espejo de
MCP Server Logger
Vale, aquí tienes algunas opciones para implementar `console.log` (o una funcionalidad similar) para tu servidor MCP (si entiendo correctamente, un servidor para Minecraft Protocol): **Opciones y consideraciones:** * **`console.log` nativo de Node.js (si estás usando Node.js):** Esta es la opción más sencilla si tu servidor está escrito en Node.js. Simplemente usa `console.log("Tu mensaje aquí");`. La salida aparecerá en la consola donde ejecutas el servidor. ```javascript // Ejemplo en Node.js const net = require('net'); const server = net.createServer((socket) => { console.log('Cliente conectado:', socket.remoteAddress, socket.remotePort); socket.on('data', (data) => { console.log('Recibido:', data.toString()); // Muestra los datos recibidos socket.write('ACK: ' + data.toString()); // Envía un acuse de recibo }); socket.on('close', () => { console.log('Cliente desconectado:', socket.remoteAddress, socket.remotePort); }); socket.on('error', (err) => { console.error('Error de socket:', err); // Muestra errores }); }); server.listen(25565, () => { console.log('Servidor MCP escuchando en el puerto 25565'); }); ``` **Traducción:** ```javascript // Ejemplo en Node.js const net = require('net'); const server = net.createServer((socket) => { console.log('Cliente conectado:', socket.remoteAddress, socket.remotePort); socket.on('data', (data) => { console.log('Recibido:', data.toString()); // Muestra los datos recibidos socket.write('ACK: ' + data.toString()); // Envía un acuse de recibo }); socket.on('close', () => { console.log('Cliente desconectado:', socket.remoteAddress, socket.remotePort); }); socket.on('error', (err) => { console.error('Error de socket:', err); // Muestra errores }); }); server.listen(25565, () => { console.log('Servidor MCP escuchando en el puerto 25565'); }); ``` * **Librerías de Logging (si necesitas más control):** Si quieres formatear la salida, agregar niveles de severidad (DEBUG, INFO, WARN, ERROR), o escribir a un archivo, considera usar una librería de logging. Algunas opciones populares en Node.js son: * **Winston:** Muy flexible y configurable. * **Morgan:** Especialmente buena para logging de peticiones HTTP (si tu servidor MCP también sirve contenido web). * **Bunyan:** Diseñada para logging en formato JSON. **Ejemplo con Winston:** ```javascript const winston = require('winston'); const logger = winston.createLogger({ level: 'info', // Nivel mínimo de log a mostrar format: winston.format.combine( winston.format.timestamp(), winston.format.printf(({ timestamp, level, message }) => { return `${timestamp} [${level.toUpperCase()}] ${message}`; }) ), transports: [ new winston.transports.Console(), // Muestra en la consola new winston.transports.File({ filename: 'server.log' }) // Guarda en un archivo ] }); // Usando el logger logger.info('Servidor MCP iniciado'); logger.warn('Algo sospechoso ha ocurrido'); logger.error('Error crítico!'); // Dentro de tu código del servidor: // logger.debug('Datos recibidos:', data); ``` **Traducción:** ```javascript const winston = require('winston'); const logger = winston.createLogger({ level: 'info', // Nivel mínimo de log a mostrar format: winston.format.combine( winston.format.timestamp(), winston.format.printf(({ timestamp, level, message }) => { return `${timestamp} [${level.toUpperCase()}] ${message}`; }) ), transports: [ new winston.transports.Console(), // Muestra en la consola new winston.transports.File({ filename: 'server.log' }) // Guarda en un archivo ] }); // Usando el logger logger.info('Servidor MCP iniciado'); logger.warn('Algo sospechoso ha ocurrido'); logger.error('¡Error crítico!'); // Dentro de tu código del servidor: // logger.debug('Datos recibidos:', data); ``` * **`process.stdout.write` (Alternativa básica):** Si no quieres usar `console.log` directamente, puedes escribir a la salida estándar usando `process.stdout.write("Tu mensaje\n");`. Es similar a `console.log` pero requiere que agregues el salto de línea (`\n`) manualmente. ```javascript process.stdout.write("Mensaje a la consola\n"); ``` **Traducción:** ```javascript process.stdout.write("Mensaje a la consola\n"); ``` * **Para otros lenguajes (no Node.js):** Si tu servidor está escrito en otro lenguaje (por ejemplo, Java, Python, C++), la forma de imprimir a la consola dependerá del lenguaje. Por ejemplo: * **Java:** `System.out.println("Tu mensaje");` * **Python:** `print("Tu mensaje")` * **C++:** `std::cout << "Tu mensaje" << std::endl;` **Recomendaciones:** 1. **Elige la opción más simple que satisfaga tus necesidades.** Si solo necesitas logging básico, `console.log` es suficiente. 2. **Considera usar una librería de logging si necesitas más control sobre el formato, los niveles de severidad o la salida a archivos.** 3. **Asegúrate de incluir información útil en tus logs:** Fecha/hora, nivel de severidad, información relevante sobre el evento que estás registrando. 4. **No loguees información sensible (como contraseñas o claves privadas).** 5. **Piensa en la legibilidad de tus logs.** Un formato consistente y claro hará que sea mucho más fácil diagnosticar problemas. Para darte una respuesta más específica, necesito saber en qué lenguaje está escrito tu servidor MCP. Por favor, proporciona esa información y puedo darte un ejemplo más preciso.
Zig MCP Server
Mirror of
Symbol Model Context Protocol (MCP)
Spiking - Symbol MCP Server.
Hologres MCP Server
Mirror of