Discover Awesome MCP Servers

Extend your agent with 27,188 capabilities via MCP servers.

All27,188
Vibetest Use

Vibetest Use

An MCP server that launches multiple Browser-Use agents to test websites for UI bugs, broken links, and accessibility issues. It supports automated testing of both live and localhost development sites using natural language prompts.

aleostudio MCP Server

aleostudio MCP Server

A lightweight MCP server providing utility tools for math, text processing, data conversion, and URL fetching. It supports both STDIO and SSE communication modes for seamless integration with Claude Desktop and remote AI agents.

Tempo MCP Server

Tempo MCP Server

Un servidor MCP (Protocolo de Contexto de Modelo) para Grafana Tempo

Redis MCP Server by CData

Redis MCP Server by CData

Redis MCP Server by CData

TRON Energy/Bandwidth MCP Server

TRON Energy/Bandwidth MCP Server

TRON Energy & Bandwidth marketplace for AI agents — 27 MCP tools for buying/selling resources, DEX swaps, and automated energy management via Streamable HTTP.

FlowZap MCP Server

FlowZap MCP Server

Enables AI assistants to create and validate workflow diagrams using FlowZap's text-based DSL. Generates shareable playground URLs for visualizing flowcharts, process diagrams, and CI/CD pipelines through natural language descriptions.

IEEE Xplore MCP Server

IEEE Xplore MCP Server

Allows users to search and retrieve academic papers, metadata, and citation counts from the IEEE Xplore digital library. It supports full-text search, author-specific queries, and publication tracking through the IEEE Xplore API.

amadeus-mcp-server

amadeus-mcp-server

Polyglot

Polyglot

An MCP server that provides standardized translation services across six languages (Arabic, Chinese, English, French, Russian, Spanish) using Claude Sonnet 3.5, with support for different domains and formality levels.

MCP Server

MCP Server

Here are a few ways to translate "MCP Server for GitHub API Integration" into Spanish, depending on the specific context and desired nuance: **Option 1 (Most Literal):** * **Servidor MCP para la Integración de la API de GitHub** * This is a direct translation and is generally well-understood. **Option 2 (Slightly More Natural):** * **Servidor MCP para Integrar la API de GitHub** * Using "Integrar" (to integrate) instead of "Integración" (integration) can sound a bit more natural in some contexts. **Option 3 (Emphasizing Purpose):** * **Servidor MCP para la Integración con la API de GitHub** * Using "con" (with) emphasizes the connection or interaction with the GitHub API. **Option 4 (If "MCP" is an acronym and commonly used as-is):** * **Servidor MCP para integración con la API de GitHub** * This assumes "MCP" is understood and doesn't need translation. **Which option is best depends on the context:** * If you need a very precise and technical translation, **Option 1** is a good choice. * If you want it to sound a bit more natural, **Option 2** is preferable. * If you want to emphasize the connection to the GitHub API, **Option 3** is a good choice. * If "MCP" is a well-known acronym, **Option 4** is the most concise. Therefore, I would recommend **Servidor MCP para la Integración de la API de GitHub** or **Servidor MCP para integrar la API de GitHub** as the most generally applicable translations.

Hyperliquid MCP Server

Hyperliquid MCP Server

Un servidor de Protocolo de Contexto de Modelo que envuelve el SDK de Hyperliquid, permitiendo a los asistentes de IA interactuar con el exchange de criptomonedas Hyperliquid para recuperar datos de mercado, ejecutar operaciones y gestionar posiciones.

Kustomize MCP

Kustomize MCP

An MCP server designed to help AI models refactor Kubernetes configurations by analyzing Kustomize dependencies and rendering manifest diffs across environments. It provides tools for computing file dependencies, rendering overlays, and comparing configuration changes through a checkpointing system.

mcp-brasil

mcp-brasil

An MCP server that connects AI agents to over 200 tools across 27 Brazilian public APIs, covering economic, legislative, transparency, and judicial data. It enables users to query and cross-reference extensive government datasets from sources like IBGE, the Central Bank, and the Brazilian Congress.

Lotus Wisdom MCP Server

Lotus Wisdom MCP Server

Servidor MCP para la resolución estructurada de problemas utilizando el marco de sabiduría del Sutra del Loto. Visualizaciones hermosas, múltiples enfoques de pensamiento, compatible con varios clientes MCP (por ejemplo, Claude Desktop, Cursor, Cherry Studio).

MedX MCP Server

MedX MCP Server

Provides AI-powered medical consultation and clinical decision support through diagnostic analysis and personalized healthcare recommendations using OpenAI integration.

Neo4j MCP

Neo4j MCP

Enables LLMs to interact with Neo4j graph databases using natural language to execute Cypher queries and introspect database schemas. It supports both read and write operations for local, Docker, and cloud-based instances like Neo4j Aura.

PiQrypt MCP Server

PiQrypt MCP Server

Enables AI agents to sign decisions with post-quantum cryptographic proofs and maintain secure audit trails for compliance. It provides tools for stamping events, verifying chain integrity, and exporting audit data across industries like finance and healthcare.

Observability MCP Server

Observability MCP Server

Provides comprehensive monitoring and observability for MCP server ecosystems with real-time health checks, performance metrics, distributed tracing, anomaly detection, and automated performance reports using OpenTelemetry and Prometheus.

MCP Gemini Server

MCP Gemini Server

Enables Claude Desktop to interact with Google's Gemini API, allowing users to query Gemini models directly or facilitate conversations between Claude and Gemini with conversation history management.

1、前言

1、前言

Aquí tienes un ejemplo de un servidor MCP (Minecraft Coder Pack): **Advertencia:** El MCP está obsoleto y ya no se mantiene. Se recomienda usar alternativas como Forge o Fabric para el desarrollo de mods de Minecraft. Este ejemplo es solo para fines educativos y de referencia histórica. Debido a que el MCP es un conjunto de herramientas para descompilar, desobfuscar y recompilar el código de Minecraft, no es un "servidor" en sí mismo. Más bien, *facilita* la creación de mods que pueden ser usados en un servidor de Minecraft. Aquí te muestro un ejemplo de cómo *podrías* usar el MCP para modificar el código del servidor de Minecraft: **1. Descompilar el código del servidor:** Después de configurar el MCP, usarías el comando `decompile.sh` (en Linux/macOS) o `decompile.bat` (en Windows) para descompilar el código del servidor de Minecraft. Esto creará una estructura de directorios con el código fuente descompilado. **2. Modificar el código del servidor:** Dentro de la estructura de directorios descompilada, encontrarías las clases que quieres modificar. Por ejemplo, podrías querer cambiar el comportamiento de la clase `net.minecraft.server.MinecraftServer` (la clase principal del servidor). **Ejemplo de modificación (MUY SIMPLE):** Digamos que quieres cambiar el mensaje que el servidor muestra al iniciarse. En la clase `net.minecraft.server.MinecraftServer`, podrías encontrar una línea como: ```java LOGGER.info("Starting minecraft server version 1.12.2"); // Ejemplo de versión ``` Podrías cambiarla a: ```java LOGGER.info("¡Mi servidor de Minecraft modificado está iniciando!"); ``` **3. Recompilar el código del servidor:** Después de hacer tus modificaciones, usarías el comando `recompile.sh` o `recompile.bat` para recompilar el código. Esto creará archivos `.class` modificados. **4. Reobfuscar el código del servidor:** Para que el código modificado sea compatible con el juego, necesitas reobfuscarlo usando el comando `reobfuscate.sh` o `reobfuscate.bat`. Esto aplicará la ofuscación original de Minecraft a tu código modificado. **5. Reemplazar los archivos originales del servidor:** Finalmente, tomarías los archivos `.class` reobfuscados y los reemplazarías en el archivo `minecraft_server.jar` original. **¡Ten mucho cuidado al hacer esto! Haz una copia de seguridad del archivo original antes de reemplazarlo.** **Código de ejemplo (modificación simple):** Este no es un código completo de servidor, sino un fragmento que muestra cómo *podrías* modificar una clase existente: ```java // Dentro de net.minecraft.server.MinecraftServer.java (después de descompilar) package net.minecraft.server; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; public class MinecraftServer implements ICommandListener, Runnable, IAsyncTaskHandlerReentrant { private static final Logger LOGGER = LogManager.getLogger(); public static void main(String[] args) { // ... (código existente) ... LOGGER.info("¡Mi servidor de Minecraft modificado está iniciando!"); // Línea modificada //LOGGER.info("Starting minecraft server version 1.12.2"); // Línea original comentada // ... (código existente) ... } // ... (más código de la clase) ... } ``` **Puntos importantes:** * **Complejidad:** Modificar el código del servidor directamente con MCP es un proceso complejo y propenso a errores. * **Actualizaciones:** Cada vez que Minecraft se actualiza, necesitas volver a descompilar, modificar y recompilar el código. * **Alternativas:** Forge y Fabric son frameworks mucho más modernos y fáciles de usar para crear mods. Te permiten modificar el juego sin tener que modificar directamente el código base. * **Licencia:** Ten en cuenta la licencia de Minecraft al modificar el juego. **En resumen:** El MCP no es un servidor en sí mismo, sino una herramienta para modificar el código del servidor. El ejemplo anterior muestra un proceso simplificado de cómo podrías usarlo para modificar el comportamiento del servidor. Sin embargo, se recomienda encarecidamente usar Forge o Fabric para el desarrollo de mods en la actualidad.

8th Wall MCP Server

8th Wall MCP Server

Enables building WebAR experiences using natural language through tools for Three.js scene creation, project management, and asset integration within 8th Wall Desktop. It supports advanced features like face tracking, image targets, and automated 3D model management.

AppFlowy Cloud MCP Server

AppFlowy Cloud MCP Server

Enables interaction with the AppFlowy Cloud API to manage workspaces, databases, and row operations. It provides tools for authentication, resource discovery, and full row manipulation including creation and upserts.

Dedalus MCP Documentation Server

Dedalus MCP Documentation Server

Enables serving and querying documentation with AI-powered capabilities including markdown file serving, keyword search, and intelligent Q\&A using OpenAI integration.

BigQuery MCP サーバー

BigQuery MCP サーバー

Flow MCP

Flow MCP

Proporciona herramientas para interactuar con la cadena de bloques Flow, incluyendo la verificación del saldo de Flow, la consulta del saldo de tokens y la recuperación de información de la cuenta propiedad de Cadence.

Lokalise MCP Tool

Lokalise MCP Tool

An MCP server that enables users to add translation keys to Lokalise projects using natural language through Cursor or standalone interfaces. It allows for the specification of project names, translation keys, default values, and target platforms.

Chronos MCP

Chronos MCP

Provides Claude with persistent local memory and a structured knowledge graph for tracking project states, task dependencies, and historical context. It enables users to store notes, manage task relationships, and perform time-travel queries to reconstruct past information without relying on cloud services.

PDF Reader MCP Server

PDF Reader MCP Server

Enables AI agents to securely read and extract information from PDF files including text content, metadata, and page counts from both local files and URLs within the project context.

SystemPrompt MCP TaskChecker

SystemPrompt MCP TaskChecker

Enterprise-grade MCP server for intelligent task management with 0-100 evaluation scoring, session-based workflow tracking, and real-time status monitoring for AI assistants.

MCPGame

MCPGame

A multiplayer first-person 3D virtual house environment with interactive elements including a TV with image display system and computer terminal for accessing MCP systems.