Discover Awesome MCP Servers

Extend your agent with 13,709 capabilities via MCP servers.

All13,709
ExternalAttacker MCP Server

ExternalAttacker MCP Server

Una herramienta modular de mapeo de la superficie de ataque externa que integra herramientas para el reconocimiento automatizado y flujos de trabajo de recompensas por errores (bug bounty).

User Prompt MCP

User Prompt MCP

Un servidor de Protocolo de Contexto de Modelo (MCP) para Cursor que permite solicitar la entrada del usuario durante la generación.

Alpaca Trading MCP Server

Alpaca Trading MCP Server

Un servidor de Protocolo de Contexto de Modelo que interactúa con la API de trading de Alpaca, permitiendo a los usuarios gestionar carteras, realizar operaciones y acceder a datos de mercado a través de interacciones en lenguaje natural.

lsp-mcp

lsp-mcp

A multi-language code analysis server that helps LLMs or humans automatically lint, type-check, and improve code with minimal installation friction, currently supporting Python with plans for other languages.

VPS Initialize

VPS Initialize

Enables automated VPS initialization and management through SSH connections. Supports installing common services like Node.js, Nginx, and Redis, configuring domains with SSL certificates, and setting up GitHub CI/CD pipelines with deploy keys.

Another™ MCP Server for Binary Ninja

Another™ MCP Server for Binary Ninja

Otro servidor MCP™ para Binary Ninja con superpoderes 🥵

Jina Reader MCP Server

Jina Reader MCP Server

Jina Reader MCP Server

Web-LLM MCP Server

Web-LLM MCP Server

A server that enables browser-based local LLM inference using Playwright to automate interactions with @mlc-ai/web-llm, supporting text generation, chat sessions, model switching, and status monitoring.

MCP Git Explorer

MCP Git Explorer

Here are a few options for translating "Simple MCP server for fetching the remote git repository content as a structured text file" into Spanish, with slightly different nuances: **Option 1 (Most direct and common):** > Servidor MCP simple para obtener el contenido de un repositorio Git remoto como un archivo de texto estructurado. **Option 2 (Emphasizing the purpose):** > Servidor MCP sencillo para la obtención del contenido de un repositorio Git remoto en forma de un archivo de texto estructurado. **Option 3 (Using "recuperar" which can mean "retrieve" or "recover"):** > Servidor MCP simple para recuperar el contenido de un repositorio Git remoto como un archivo de texto estructurado. **Explanation of Choices:** * **Servidor MCP simple/sencillo:** "Simple" translates directly to "simple" or "sencillo." Both are fine, "sencillo" might imply a bit more "easy to use." * **para obtener/para la obtención/para recuperar:** "For fetching" can be translated as "para obtener" (to obtain), "para la obtención" (for the obtaining - more formal), or "para recuperar" (to retrieve/recover). "Obtener" is the most common and straightforward. * **el contenido de un repositorio Git remoto:** This part is a direct translation and works well. * **como un archivo de texto estructurado:** This is also a direct and accurate translation. I would recommend **Option 1** as the most natural and widely understood translation.

MCP Background Job Server

MCP Background Job Server

An MCP server that enables coding agents to execute and manage long-running shell commands asynchronously with capabilities for process monitoring, interaction, and lifecycle management.

@magicuidesign/mcp

@magicuidesign/mcp

Servidor oficial de MCP para Magic UI.

MCP Collections

MCP Collections

Colección de servidores MCP

🚀 Welcome to the Lara-MCP Repository!

🚀 Welcome to the Lara-MCP Repository!

Canvas MCP Server

Canvas MCP Server

Permite que los asistentes de IA como Claude interactúen con Canvas LMS a través de la API de Canvas, proporcionando herramientas para gestionar cursos, anuncios, rúbricas, tareas y datos de los estudiantes.

Spring Web to MCP Converter 🚀

Spring Web to MCP Converter 🚀

Okay, I can help you understand the general process of converting a Spring REST API to an MCP (Minecraft Coder Pack) server using OpenRewrite. However, a direct, automated conversion is unlikely to be possible. This is because they are fundamentally different types of applications with different purposes and architectures. Instead, you'll need to *re-architect* and *re-implement* significant portions of your code, using OpenRewrite to help with some of the more mechanical refactoring tasks. Here's a breakdown of the challenges, the general approach, and how OpenRewrite can assist: **Challenges:** * **Different Environments:** Spring REST APIs run in a Java web server environment (like Tomcat or Jetty) and respond to HTTP requests. MCP servers run within the Minecraft environment, interacting with the game world and players. * **Different APIs:** Spring uses Spring MVC annotations and classes for handling requests and responses. MCP uses the Minecraft Forge API for interacting with the game. * **Different Purpose:** Spring APIs typically serve data or perform actions based on external requests. MCP servers modify the game world, add new features, or provide custom gameplay mechanics. * **Event-Driven vs. Request-Response:** MCP is largely event-driven (e.g., player joins, block broken), while REST APIs are request-response. * **Dependencies:** Spring relies on a vast ecosystem of libraries. MCP relies on the Minecraft Forge API and its dependencies. **General Approach (High-Level):** 1. **Understand Your Spring API:** Thoroughly document what your Spring API *does*. What endpoints exist? What data is exchanged? What business logic is performed? This is crucial because you'll need to *re-implement* that functionality in the Minecraft context. 2. **Design the Minecraft Equivalent:** How will the functionality of your API translate to the Minecraft world? Will it be a new block, a new item, a command, a GUI, or a combination of these? This is the most important and creative step. 3. **Set up an MCP Development Environment:** Install Minecraft Forge and set up a development environment (e.g., using IntelliJ IDEA or Eclipse). 4. **Create a Forge Mod:** Create a new Forge mod project. This will be the foundation of your MCP server. 5. **Re-implement Functionality:** This is the core of the conversion. You'll need to write new code that uses the Minecraft Forge API to achieve the same results as your Spring API. This will involve: * **Event Handling:** Register event handlers for relevant Minecraft events (e.g., `PlayerEvent.PlayerLoggedInEvent`, `BlockEvent.BreakEvent`). * **Command Handling:** Register custom commands that players can use. * **Block/Item Creation:** Create new blocks or items if needed. * **GUI Development:** Create custom GUIs for interacting with the server. * **Data Storage:** Implement data storage mechanisms (e.g., using NBT data, configuration files, or a database). * **Networking:** If your API involves communication with external services, you'll need to re-implement that using Minecraft's networking capabilities. 6. **Refactor and Optimize:** Once you have the basic functionality working, refactor your code to improve its readability, maintainability, and performance. **How OpenRewrite Can Help (Limited Scope):** OpenRewrite is primarily useful for *mechanical* refactoring tasks. It can't magically translate the *logic* of your Spring API to Minecraft. However, it can help with: * **Dependency Management:** If you need to replace Spring dependencies with Forge-compatible libraries, OpenRewrite can help update your `pom.xml` or `build.gradle` files. For example, if you're using a specific JSON library in Spring and want to use a different one in your MCP mod, OpenRewrite can help with the replacement. * **Code Style Changes:** If you want to enforce a consistent code style in your MCP mod, OpenRewrite can apply formatting rules and other style changes. * **Annotation Updates (Limited):** If you have some common annotations that need to be replaced with Forge-specific annotations, OpenRewrite *might* be able to help, but this is highly dependent on the specific annotations and the complexity of the transformation. For example, you *might* be able to replace a generic `@Service` annotation with a custom annotation that you define for your mod. * **Simple Code Transformations:** If you have some simple code patterns that need to be changed, OpenRewrite can help automate those changes. For example, if you're using a specific logging framework in Spring and want to use a different one in your MCP mod, OpenRewrite can help with the replacement. **Example (Illustrative - Very Simplified):** Let's say your Spring API has an endpoint that returns a greeting: ```java @RestController public class GreetingController { @GetMapping("/greeting") public String greeting(@RequestParam(value = "name", defaultValue = "World") String name) { return "Hello, " + name + "!"; } } ``` In Minecraft, you might implement this as a command: ```java import net.minecraft.command.CommandBase; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; import net.minecraft.server.MinecraftServer; import net.minecraft.util.text.TextComponentString; public class GreetingCommand extends CommandBase { @Override public String getName() { return "greet"; } @Override public String getUsage(ICommandSender sender) { return "/greet <name>"; } @Override public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { String name = "World"; if (args.length > 0) { name = args[0]; } sender.sendMessage(new TextComponentString("Hello, " + name + "!")); } } ``` You would then register this command in your mod's initialization code. **Using OpenRewrite (Example - Dependency Update):** Let's say you want to replace the `com.fasterxml.jackson.databind` dependency with a different JSON library. You could use an OpenRewrite recipe like this (in `rewrite.yml`): ```yaml type: specs.openrewrite.maven.ChangeDependencyGroupIdAndArtifactId oldGroupId: com.fasterxml.jackson.core oldArtifactId: jackson-databind newGroupId: com.google.code.gson newArtifactId: gson ``` Then, you would run OpenRewrite to update your `pom.xml` or `build.gradle` file. **Key Takeaways:** * **No Automatic Conversion:** A direct, automated conversion is not possible. * **Re-architecture is Required:** You need to re-design and re-implement the functionality of your Spring API in the Minecraft context. * **OpenRewrite for Mechanical Tasks:** OpenRewrite can help with dependency management, code style changes, and some simple code transformations. * **Focus on Understanding and Re-implementing:** The most important part of the process is understanding what your Spring API does and then re-implementing that functionality using the Minecraft Forge API. Remember to consult the Minecraft Forge documentation and tutorials for more information on developing MCP mods. Good luck!

Kaggle MCP Server

Kaggle MCP Server

Servidor MCP para interactuar con competiciones de Kaggle.

Sequential Thinking MCP Server (Python Implementation)

Sequential Thinking MCP Server (Python Implementation)

Aquí tienes una implementación en Python de un servidor MCP de Pensamiento Secuencial utilizando el SDK oficial de Python del Protocolo de Contexto de Modelo (MCP). Este servidor facilita un proceso de pensamiento detallado, paso a paso, para la resolución de problemas y el análisis.

UNHCR Population Data MCP Server

UNHCR Population Data MCP Server

Proporciona acceso a las estadísticas de refugiados de ACNUR a través de una interfaz estandarizada, permitiendo a los agentes de IA consultar datos por país de origen, país de asilo y año.

Freqtrade Test Repository

Freqtrade Test Repository

Test repository for MCP server functionality

MCP_Server

MCP_Server

Here are a few possible translations, depending on the specific context of "MCP Server" and "LLM Integration Process": **Option 1 (Most General):** * **Servidor MCP para el Proceso de Integración de LLM** * This is a direct translation and works well if "MCP Server" is a specific server with that name. **Option 2 (If "MCP" is an acronym and you want to keep it):** * **Servidor MCP para el Proceso de Integración de LLM** (Keeping the acronym) **Option 3 (If "MCP" needs further explanation or is a general type of server):** * **Servidor [Explanation of MCP] para el Proceso de Integración de LLM** * Example: **Servidor de Control de Mensajes para el Proceso de Integración de LLM** (If MCP stands for Message Control Protocol) **Option 4 (Focusing on the function of the server):** * **Servidor para la Integración de LLM basado en MCP** (MCP-based LLM Integration Server) **Important Considerations:** * **What does "MCP" stand for?** Knowing the full name of "MCP" is crucial for an accurate translation. * **What is the function of the MCP Server?** Understanding its role in the LLM integration process will help choose the most appropriate translation. * **Who is the target audience?** Technical audiences might be fine with the acronym "LLM," while a more general audience might need "Modelos de Lenguaje Grandes" (Large Language Models). **Therefore, to give you the *best* translation, please provide more context about what "MCP" means.**

Google Sheets MCP Server by CData

Google Sheets MCP Server by CData

Google Sheets MCP Server by CData

Remote MCP Server

Remote MCP Server

A Cloudflare Workers-based server implementing the Model Context Protocol that enables AI assistants like Claude to securely access external tools through OAuth authentication.

Whodis MCP Server

Whodis MCP Server

A Model Context Protocol server that enables AI assistants to check domain name availability using WHOIS lookups.

MCP Server C# Quickstart

MCP Server C# Quickstart

Shipping Service MCP Server

Shipping Service MCP Server

Provides a Model Context Protocol server for managing shipping orders and address book functionality with support for connecting to real shipping services via HTTP API.

Indigo MCP Server Plugin

Indigo MCP Server Plugin

A Model Context Protocol server that enables AI assistants like Claude to interact with Indigo home automation systems through natural language queries for searching and controlling devices, variables, and actions.

Better Playwright MCP

Better Playwright MCP

A client-server browser automation solution that reduces HTML token usage by up to 90% through semantic snapshots, enabling complex web interactions without exhausting AI context windows.

DataJud MCP TJMA

DataJud MCP TJMA

A server that integrates with the CNJ DataJud API for the Maranhão Court of Justice (TJMA), enabling automated access to case data for queries, analysis, and AI-based predictions to optimize judicial activities.

Jamb MCP Server

Jamb MCP Server

Servidor MCP de Jamb

Mcp_server_integration_with_ollama

Mcp_server_integration_with_ollama

Este repositorio tiene el servidor MCP con Ollama.