Discover Awesome MCP Servers

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

All27,058
agent-rules-mcp

agent-rules-mcp

MCP server that enables your agents to use coding rules from any or your GitHub repository. Instead of workspace rules files, you can now prompt agents to access the your coding rules from any repository.

Solid Multi-Tenant DevOps MCP Server

Solid Multi-Tenant DevOps MCP Server

Enables AI-first DevOps management of multi-tenant Solid SaaS platforms through natural language conversation. Monitor thousands of tenant instances, track AI agent performance, handle errors, manage billing, and provision new tenants directly through Claude Desktop.

Growth Hacker MCP

Growth Hacker MCP

Enables creators and marketers to generate viral social media hooks, format text into Twitter threads with proper character limits, and audit sales copy with actionable feedback on power words and CTAs.

MCPAuth

MCPAuth

A self-hostable OAuth 2.0 server designed for the Model-Context-Protocol (MCP) that enables you to secure your MCP applications with a robust implementation you control.

Futarchy MCP Server

Futarchy MCP Server

A server implementation that enables interaction with the Futarchy protocol on Solana, allowing users to manage DAOs and proposals through both API endpoints and Cursor's chat interface.

google-search-console-mcp

google-search-console-mcp

Query Google Search Console search analytics, inspect URL indexing status, manage sitemaps, and analyze keyword performance. 13 tools covering search queries, page performance, sitemap management, and index coverage.

MCP Server Cookiecutter Template

MCP Server Cookiecutter Template

Una forma fácil y manejable de crear tu propio servidor MCP (Minecraft Coder Pack).

Dynamics 365 MCP Server 🚀

Dynamics 365 MCP Server 🚀

Servidor MCP para Microsoft Dynamics 365

Filesystem MCP Server

Filesystem MCP Server

A Model Context Protocol server that provides AI agents with secure access to local filesystem operations, enabling reading, writing, and managing files through a standardized interface.

Web3 Research MCP

Web3 Research MCP

Deep Research for crypto - free & fully local

Config MCP Server

Config MCP Server

Enables AI assistants to search documentation, read and update configuration files, and discover settings across your development workspace. Supports JSON, YAML, TOML, and Markdown files with seamless integration for GitHub Copilot and other MCP clients.

Codebase MCP Server

Codebase MCP Server

A Model Context Protocol server that analyzes application codebases with real-time file watching, providing AI assistants like Claude with deep insights into project structure, code patterns, and architecture.

MS SQL MCP Server

MS SQL MCP Server

A bridge that allows AI assistants like Claude to directly query and explore Microsoft SQL Server databases without requiring coding experience.

Puppeteer Vision MCP Server

Puppeteer Vision MCP Server

Scrapes webpages and converts them to markdown using AI-powered interaction to automatically handle cookie banners, CAPTCHAs, paywalls, and other blocking elements before extracting clean content.

OpenNews MCP

OpenNews MCP

A cryptocurrency news aggregation server providing AI-powered sentiment ratings, trading signals, and real-time market updates. It allows users to search news by coin, source, or engine type and filter results based on AI impact scores and bullish/bearish signals.

MCP SQL Server Data Warehouse Connector

MCP SQL Server Data Warehouse Connector

Enables AI assistants to interact with SQL Server Data Warehouses using natural language for automatic schema discovery and report generation. It ensures security by restricting operations to read-only SELECT queries through both code validation and database permissions.

MCP-Weather

MCP-Weather

Enables retrieval of weather information for major cities across Japan using the Japan Meteorological Agency API. Supports weather overviews, precipitation probability, and wind speed data with both local and remote OAuth 2.0 authenticated deployment options.

MCP Mempool

MCP Mempool

An MCP server that provides AI agents with real-time and historical Bitcoin network data by wrapping the mempool.space WebSocket and REST APIs. It enables tracking addresses, monitoring blocks, and retrieving transaction details or fee estimates through natural language.

Guía de Instalación de Supabase MCP Server

Guía de Instalación de Supabase MCP Server

Aquí tienes una guía detallada de instalación para Supabase MCP Server (asumiendo que "MCP" se refiere a un componente específico dentro del ecosistema Supabase, ya que "MCP Server" no es un término estándar en la documentación oficial de Supabase. **Por favor, proporciona más contexto si "MCP Server" se refiere a algo específico que no es ampliamente conocido.** Esta guía asume que se refiere a un componente que necesita ser configurado manualmente): **Guía Detallada de Instalación para Supabase [Componente MCP] Server** **Importante:** Esta guía asume que tienes un conocimiento básico de la línea de comandos, Docker, y la configuración de variables de entorno. Asegúrate de tener Docker y Docker Compose instalados en tu sistema. Además, esta guía es genérica. **Necesitarás adaptar los pasos específicos a la documentación oficial del componente MCP que estás intentando instalar.** **Paso 1: Requisitos Previos** * **Docker y Docker Compose:** Asegúrate de tener Docker y Docker Compose instalados y funcionando correctamente. Puedes descargarlos desde el sitio web oficial de Docker: [https://www.docker.com/](https://www.docker.com/) * **Cuenta de Supabase:** Necesitarás una cuenta de Supabase y un proyecto creado. Ve a [https://supabase.com/](https://supabase.com/) para crear una cuenta y un proyecto. * **Claves API de Supabase:** Necesitarás la URL de la API de tu proyecto Supabase y la clave API `anon` (pública). Encuentra estas credenciales en el panel de control de tu proyecto Supabase, en la sección "Configuración" -> "API". * **Repositorio del Componente MCP (si aplica):** Si el componente MCP tiene un repositorio de código fuente (por ejemplo, en GitHub), clónalo en tu máquina local. **Paso 2: Configuración del Entorno** 1. **Crear un Directorio de Proyecto:** Crea un directorio para tu proyecto MCP Server. ```bash mkdir supabase-mcp-server cd supabase-mcp-server ``` 2. **Crear un Archivo `.env`:** Crea un archivo `.env` en el directorio de tu proyecto para almacenar las variables de entorno. Este archivo contendrá información sensible, así que asegúrate de no subirlo a un repositorio público. ```bash touch .env ``` 3. **Definir las Variables de Entorno:** Abre el archivo `.env` con un editor de texto y agrega las siguientes variables (ajusta los valores según tu configuración): ``` SUPABASE_URL=tu_url_de_supabase SUPABASE_ANON_KEY=tu_clave_anon_de_supabase MCP_SERVER_PORT=8000 # Puerto en el que se ejecutará el servidor MCP # Otras variables específicas del componente MCP (consulta su documentación) ``` * Reemplaza `tu_url_de_supabase` con la URL de la API de tu proyecto Supabase. * Reemplaza `tu_clave_anon_de_supabase` con la clave API `anon` de tu proyecto Supabase. * Ajusta `MCP_SERVER_PORT` al puerto deseado. * **Importante:** Consulta la documentación del componente MCP para conocer las variables de entorno específicas que necesita. **Paso 3: Configuración de Docker Compose (si aplica)** Si el componente MCP se distribuye como una imagen de Docker, puedes usar Docker Compose para simplificar la configuración. 1. **Crear un Archivo `docker-compose.yml`:** Crea un archivo `docker-compose.yml` en el directorio de tu proyecto. ```bash touch docker-compose.yml ``` 2. **Definir el Servicio en `docker-compose.yml`:** Abre el archivo `docker-compose.yml` con un editor de texto y define el servicio para el componente MCP. Aquí tienes un ejemplo básico: ```yaml version: "3.9" services: mcp-server: image: tu_imagen_docker_del_mcp # Reemplaza con la imagen correcta ports: - "${MCP_SERVER_PORT}:${MCP_SERVER_PORT}" environment: SUPABASE_URL: ${SUPABASE_URL} SUPABASE_ANON_KEY: ${SUPABASE_ANON_KEY} MCP_SERVER_PORT: ${MCP_SERVER_PORT} # Otras variables específicas del componente MCP restart: always ``` * Reemplaza `tu_imagen_docker_del_mcp` con el nombre de la imagen de Docker del componente MCP. Consulta la documentación del componente para obtener el nombre correcto. * Asegúrate de que los puertos estén configurados correctamente. * Pasa las variables de entorno definidas en el archivo `.env` al contenedor Docker. * `restart: always` asegura que el contenedor se reinicie automáticamente si falla. **Paso 4: Construcción y Ejecución (Dependiendo del Componente)** * **Si usas Docker Compose:** 1. **Ejecutar Docker Compose:** En el directorio de tu proyecto, ejecuta el siguiente comando para iniciar el servicio: ```bash docker-compose up -d ``` El `-d` flag ejecuta el contenedor en segundo plano. 2. **Verificar los Logs:** Verifica los logs del contenedor para asegurarte de que se está ejecutando correctamente: ```bash docker-compose logs mcp-server ``` * **Si no usas Docker Compose (y tienes el código fuente):** 1. **Instalar Dependencias:** Navega al directorio del código fuente del componente MCP y instala las dependencias necesarias (por ejemplo, usando `npm install` o `pip install -r requirements.txt`). 2. **Ejecutar el Servidor:** Ejecuta el servidor usando el comando apropiado (por ejemplo, `node index.js` o `python app.py`). Asegúrate de que las variables de entorno estén configuradas correctamente antes de ejecutar el servidor. **Paso 5: Verificación** 1. **Acceder al Servidor:** Abre un navegador web y ve a `http://localhost:${MCP_SERVER_PORT}` (reemplaza `${MCP_SERVER_PORT}` con el puerto que configuraste). Si el servidor se está ejecutando correctamente, deberías ver una respuesta. La respuesta específica dependerá del componente MCP. 2. **Verificar la Conexión a Supabase:** Verifica que el componente MCP se esté conectando correctamente a tu proyecto Supabase. Consulta los logs del servidor para obtener información sobre la conexión. **Paso 6: Configuración Adicional (Dependiendo del Componente)** * **Configuración de la Base de Datos:** Algunos componentes MCP pueden requerir configuración adicional de la base de datos. Consulta la documentación del componente para obtener instrucciones específicas. * **Configuración de la Autenticación:** Si el componente MCP requiere autenticación, deberás configurarla según las instrucciones de la documentación. * **Configuración de la Autorización:** Si el componente MCP requiere autorización, deberás configurarla según las instrucciones de la documentación. **Consideraciones Adicionales:** * **Seguridad:** Asegúrate de proteger tu servidor MCP con las medidas de seguridad adecuadas, como la configuración de un firewall y la implementación de la autenticación y autorización. * **Escalabilidad:** Si necesitas escalar tu servidor MCP, considera usar un orquestador de contenedores como Kubernetes. * **Monitorización:** Implementa la monitorización para rastrear el rendimiento de tu servidor MCP y detectar problemas. **Recuerda:** Esta es una guía genérica. **La documentación oficial del componente MCP es la fuente de información más precisa y completa.** Consulta la documentación para obtener instrucciones específicas sobre la instalación, configuración y uso del componente. **Si puedes proporcionar más detalles sobre el componente "MCP Server" al que te refieres, puedo proporcionar una guía más específica y precisa.**

Google Contacts MCP Server

Google Contacts MCP Server

Enables AI assistants to access and search Google Contacts through per-user OAuth authentication on serverless AWS Lambda. Provides read-only access to personal contacts with zero data storage and real-time API queries.

OCI MCP Server

OCI MCP Server

Enables interaction with Oracle Cloud Infrastructure services through a unified interface. Supports comprehensive OCI resource management including compute instances, storage, networking, databases, and monitoring through natural language commands in VS Code.

WordPress Reader for Claude Desktop

WordPress Reader for Claude Desktop

Connects your WordPress.com account to Claude Desktop, enabling you to read your feed, check notifications, manage tags and follows, and discover new blogs through natural conversation.

PM Counter Monitoring MCP Server

PM Counter Monitoring MCP Server

Enables monitoring and querying of telecom performance management (PM) counters from remote SFTP locations, providing access to interface statistics, CPU/memory utilization, BGP peer data, and system metrics through a conversational interface.

Enact Protocol MCP

Enact Protocol MCP

Here are a few ways to translate "MCP Server for enact protocol," depending on the context: * **Most General:** Servidor MCP para el protocolo enact * **If "enact" is a specific, proper-noun protocol name:** Servidor MCP para el protocolo Enact * **If you want to emphasize the server's purpose:** Servidor MCP para la implementación del protocolo enact / Servidor MCP para implementar el protocolo enact **Explanation of Choices:** * **Servidor:** This is the standard translation of "server." * **MCP:** Assuming MCP is an acronym, it's generally left as is. * **Protocolo:** This is the standard translation of "protocol." * **Enact:** If "enact" is a specific protocol name, capitalize it like "Enact." If it's a more general term, leave it lowercase. * **Implementación / Implementar:** If you want to emphasize that the server *implements* the protocol, you can use these options. "Implementación" is the noun (implementation), and "implementar" is the verb (to implement). To give you the *best* translation, I'd need a little more context about what "enact protocol" refers to.

DIE MCP Server

DIE MCP Server

An MCP server that enables AI agents to analyze executable files using Detect It Easy (DIE), providing capabilities to examine file structures, detect packers, compilers, and gather other forensic information.

AI Answer Copier

AI Answer Copier

A Model Context Protocol (MCP) server that gives your AI assistant the power to convert Markdown into 14 professional document formats — PDF, DOCX, HTML, LaTeX, CSV, JSON, XML, XLSX, RTF, PNG, and more. Stop copy-pasting. Let the AI do the exporting.

Steam MCP Server

Steam MCP Server

Provides tools for interacting with the Steam Web API to access player profiles, game libraries, achievements, statistics, inventories, and game information through natural language.

YouTube Media Downloader

YouTube Media Downloader

Enables comprehensive YouTube data access including video details, playlists, channels, comments, search, and subtitle operations through the YouTube Media Downloader API.

CLI Agent MCP

CLI Agent MCP

Provides unified access to multiple CLI AI agents (Codex, Gemini, Claude, and OpenCode) through a single MCP interface with real-time task monitoring, enabling specialized code analysis, UI design, implementation, and prototyping workflows.

DrissionPageMCPServer_Modified

DrissionPageMCPServer_Modified

An MCP server providing robust browser automation tools for AI assistants, including page navigation, element interaction, and screenshot capabilities. It leverages the DrissionPage library to enable standardized DOM analysis, network monitoring, and complex web task automation.