Discover Awesome MCP Servers
Extend your agent with 27,188 capabilities via MCP servers.
- All27,188
- 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
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
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
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
一个 MCP (模型控制平面) 服务器实现,它使大型语言模型 (LLMs) 能够与 Rollbar 错误跟踪数据进行交互,允许用户列出和分析错误、查看事件发生情况、跟踪部署以及访问项目信息。
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
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
An MCP server providing video processing capabilities through FFmpeg, enabling dialog-based local video search, trimming, concatenation, and playback functionalities.
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
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
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 🚀
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
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
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
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
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
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
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
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
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
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
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
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
Rover MCP Server
A ModelContextProvider server that enables secure querying of Red Hat internal groups API using client certificate authentication.
Database Mcp
# 数据库 MCP 服务 一个具有数据库功能的 MCP (Metoro 控制协议) 服务,通过 GORM 支持多种数据库类型。 ## 特性 - 支持多种数据库类型: - MySQL - PostgreSQL - SQLite - SQL Server - ClickHouse - 通过以下方式配置: - 配置文件 (YAML) - 命令行参数 - 环境变量 - MCP 协议集成 - GORM ORM 支持 ## 安装 1. 克隆仓库 2. 安装依赖: ```bash go mod tidy ``` ## 配置 ### 配置文件 (config.yaml) 创建一个 `config.yaml` 文件,结构如下: ```yaml database: type: "mysql" # mysql, postgres, sqlite, sqlserver, clickhouse host: "localhost" port: 3306 username: "root" password: "password" database: "mydb" ssl_mode: "disable" # for postgres file: "database.db" # for sqlite ``` ### 命令行参数 您可以使用命令行参数覆盖配置文件中的设置: ```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 ``` 可用的命令行参数: - `--config`: 配置文件路径 (默认: "config.yaml") - `--db-type`: 数据库类型 (mysql, postgres, sqlite, sqlserver, clickhouse) - `--db-host`: 数据库主机 - `--db-port`: 数据库端口 - `--db-user`: 数据库用户名 - `--db-pass`: 数据库密码 - `--db-name`: 数据库名称 - `--db-ssl-mode`: SSL 模式 (适用于 PostgreSQL) - `--db-file`: 数据库文件 (适用于 SQLite) ## 用法 1. 启动服务: ```bash ./database-mcp ``` 2. 服务将: - 从文件和/或命令行加载配置 - 初始化数据库连接 - 启动 MCP 服务器 - 注册可用的工具和资源 ## MCP 配置 要使用 MCP 服务,请在您的 MCP 客户端中配置 MCP 端点: ``` http://127.0.0.1:8080/sse ``` 这将把您的 MCP 客户端连接到本地运行在 8080 端口的服务。 ## MCP 工具 该服务提供以下 MCP 工具: 1. `get_tables`: 获取数据库中的所有表 - 返回一个包含表名和注释的表列表 2. `get_table_detail`: 获取关于特定表的详细信息 - 参数: - `table_name`: 要获取详细信息的表名 - 返回表信息,包括: - 表名和注释 - 列信息(名称、类型、注释、是否可为空、默认值) 3. `execute_sql`: 执行 SQL 查询 - 参数: - `query`: 要执行的 SQL 查询 - 返回: - 对于 SELECT 查询:一个结果数组 - 对于其他查询:受影响的行数 ## 许可证 MIT 许可证
Memento
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
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
一个模型上下文协议服务器,使大型语言模型 (LLM) 能够与网页交互、截取屏幕截图、生成测试代码、抓取网页以及在真实的浏览器环境中执行 JavaScript。