Discover Awesome MCP Servers

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

All27,188
Taiwan Government Open Data MCP Server

Taiwan Government Open Data MCP Server

Enables searching and querying Taiwan government open datasets from data.gov.tw using AI-powered search through Cloudflare Workers.

VNStock MCP Server

VNStock MCP Server

Provides access to Vietnam stock market data including real-time quotes, historical prices, company financials, trading statistics, mutual fund information, and exchange rates through the vnstock library.

Jeneen's MCP Agent

Jeneen's MCP Agent

A multi-functional AI agent with an Arabic legal chatbot, Google search capability, and a VAE model that generates handwritten digit images.

Rollbar MCP Server

Rollbar MCP Server

Implementación de un servidor MCP que permite a los LLM interactuar con los datos de seguimiento de errores de Rollbar, permitiendo a los usuarios listar y analizar errores, ver ocurrencias, rastrear implementaciones y acceder a la información del proyecto.

Resend MCP Server

Resend MCP Server

An MCP (Multi-Agent Conversation Protocol) Server for interacting with Resend's email API, auto-generated using AG2's MCP builder to enable sending emails through natural language.

mcp-tailscale

mcp-tailscale

An MCP server for managing and monitoring Tailscale networks through natural language. It enables users to list devices, check connection status, monitor for client updates, and retrieve detailed tailnet summaries.

FFmpeg-MCP Server

FFmpeg-MCP Server

An MCP server providing video processing capabilities through FFmpeg, enabling dialog-based local video search, trimming, concatenation, and playback functionalities.

MCP Code Reviewer

MCP Code Reviewer

An AI-powered server for code analysis, requirements validation, and automated fix proposals with human-in-the-loop confirmation. It supports multiple LLM providers and ensures safe file modifications through automatic backups and path validation.

Salesforce MCP Server

Salesforce MCP Server

Enables natural language interactions with Salesforce data and metadata, supporting queries, data manipulation, custom object/field management, Apex code operations, and debug logging across multiple authentication methods.

App Store Connect MCP Server

App Store Connect MCP Server

Enables AI assistants to access App Store Connect data including financial metrics, subscription analytics, app performance data, and revenue insights. Provides real-time iOS app metrics through secure API integration with rate limiting and comprehensive reporting capabilities.

Awesome-MCP-Server 🚀

Awesome-MCP-Server 🚀

Stape MCP Server

Stape MCP Server

Enables interaction with the Stape platform through the Model Context Protocol. Provides access to Stape's server-side tagging and data management capabilities with support for both US and EU endpoints.

OpenStreetMap MCP Server

OpenStreetMap MCP Server

A comprehensive MCP server providing 30 tools for geocoding, routing, and OpenStreetMap data analysis. It enables AI assistants to search for locations, calculate travel routes, and perform quality assurance checks on map data.

SSI Stock Data MCP Server

SSI Stock Data MCP Server

A Model Context Protocol server that enables AI assistants to query Vietnam stock intraday data from SSI FastConnect API, providing access to stock codes, detailed information, index data, and OHLC information through natural language queries.

MCP Employee API Server

MCP Employee API Server

Enables AI assistants to manage employee data through a REST API with full CRUD operations. Provides tools to create, read, update, and delete employee records via the Model Context Protocol.

Basecamp MCP Server

Basecamp MCP Server

Enables AI assistants to interact with Basecamp projects through natural language commands. Supports managing projects, to-do lists, messages, and creating tasks with full content rendering capabilities.

LearnMCP Server

LearnMCP Server

Extracts and summarizes learning content from YouTube videos, PDFs, and web articles to provide context for project-based learning. It features automated background processing and integrates with Forest's HTA builder for informed task generation.

Godette

Godette

An MCP server for Godot game development that provides 45 tools for reading, analyzing, and editing projects. It enables users to manage scene trees, navigate GDScript symbols, and interact with the Godot runtime for debugging and state capture.

xmcp Demo Application

xmcp Demo Application

A demonstration MCP server showcasing the xmcp framework's structured approach to defining tools, prompts, and resources with automatic discovery from their respective directories.

Digital Zen Garden (數位枯山水) MCP Server

Digital Zen Garden (數位枯山水) MCP Server

Enables AI agents to create and interact with ASCII-based Zen gardens through tools for raking sand, placing stones, and practicing digital meditation. It provides resources for random Zen koans and generates meditation guides based on the current garden state.

Notion MCP Server

Notion MCP Server

Enables interaction with Notion workspaces through the Notion API, allowing users to search, read, comment on, and create pages and databases using natural language commands.

Transcripts MCP Server

Transcripts MCP Server

A remote Model Context Protocol server that retrieves and cleans Microsoft Teams meeting transcripts via the Microsoft Graph API using delegated OAuth 2.0 authentication. It enables AI agents to discover meetings, extract speaker-attributed text, and save transcripts to SharePoint for analysis and automation.

Binance MCP Server

Binance MCP Server

Enables AI agents to interact with Binance cryptocurrency exchange for trading operations, real-time market data access, portfolio management, and account monitoring through secure API integration.

Marketo MCP Server by CData

Marketo MCP Server by CData

Marketo MCP Server by CData

Rover MCP Server

Rover MCP Server

A ModelContextProvider server that enables secure querying of Red Hat internal groups API using client certificate authentication.

Database Mcp

Database Mcp

# Servicio MCP de Base de Datos Un servicio MCP (Protocolo de Control de Metoro) con capacidades de base de datos, que soporta múltiples tipos de bases de datos a través de GORM. ## Características - Soporte para múltiples tipos de bases de datos: - MySQL - PostgreSQL - SQLite - SQL Server - ClickHouse - Configuración a través de: - Archivo de configuración (YAML) - Argumentos de línea de comandos - Variables de entorno - Integración del protocolo MCP - Soporte de GORM ORM ## Instalación 1. Clona el repositorio 2. Instala las dependencias: ```bash go mod tidy ``` ## Configuración ### Archivo de Configuración (config.yaml) Crea un archivo `config.yaml` con la siguiente estructura: ```yaml database: type: "mysql" # mysql, postgres, sqlite, sqlserver, clickhouse host: "localhost" port: 3306 username: "root" password: "password" database: "mydb" ssl_mode: "disable" # para postgres file: "database.db" # para sqlite ``` ### Argumentos de Línea de Comandos Puedes sobrescribir la configuración del archivo usando argumentos de línea de comandos: ```bash ./database-mcp --config=config.yaml \ --db-type=mysql \ --db-host=localhost \ --db-port=3306 \ --db-user=root \ --db-pass=password \ --db-name=mydb \ --db-ssl-mode=disable \ --db-file=database.db ``` Argumentos de línea de comandos disponibles: - `--config`: Ruta al archivo de configuración (predeterminado: "config.yaml") - `--db-type`: Tipo de base de datos (mysql, postgres, sqlite, sqlserver, clickhouse) - `--db-host`: Host de la base de datos - `--db-port`: Puerto de la base de datos - `--db-user`: Nombre de usuario de la base de datos - `--db-pass`: Contraseña de la base de datos - `--db-name`: Nombre de la base de datos - `--db-ssl-mode`: Modo SSL (para PostgreSQL) - `--db-file`: Archivo de la base de datos (para SQLite) ## Uso 1. Inicia el servicio: ```bash ./database-mcp ``` 2. El servicio: - Carga la configuración desde el archivo y/o la línea de comandos - Inicializa la conexión a la base de datos - Inicia el servidor MCP - Registra las herramientas y recursos disponibles ## Configuración MCP Para usar el servicio MCP, configura el endpoint MCP en tu cliente MCP: ``` http://127.0.0.1:8080/sse ``` Esto conectará tu cliente MCP al servicio local que se ejecuta en el puerto 8080. ## Herramientas MCP El servicio proporciona las siguientes herramientas MCP: 1. `get_tables`: Obtiene todas las tablas de la base de datos - Devuelve una lista de tablas con sus nombres y comentarios 2. `get_table_detail`: Obtiene información detallada sobre una tabla específica - Argumentos: - `table_name`: El nombre de la tabla para obtener detalles - Devuelve información de la tabla incluyendo: - Nombre y comentario de la tabla - Información de la columna (nombre, tipo, comentario, nullable, valor predeterminado) 3. `execute_sql`: Ejecuta una consulta SQL - Argumentos: - `query`: La consulta SQL a ejecutar - Devuelve: - Para consultas SELECT: Un array de resultados - Para otras consultas: El número de filas afectadas ## Licencia Licencia MIT

Memento

Memento

AI Agent Template MCP Server

AI Agent Template MCP Server

An MCP server that enhances AI agents' coding capabilities by providing zero hallucinations, improved code quality, security-first approach, high test coverage, and efficient context management.

UniCloudDB-MCP

UniCloudDB-MCP

A database operation tool for uniCloud based on MCP protocol that allows AI assistants to perform database CRUD operations through standardized interfaces.

Playwright MCP Server

Playwright MCP Server

Un servidor de Protocolo de Contexto de Modelo que permite a los LLM interactuar con páginas web, tomar capturas de pantalla, generar código de prueba, extraer datos de páginas web y ejecutar JavaScript en un entorno de navegador real.