Discover Awesome MCP Servers
Extend your agent with 26,882 capabilities via MCP servers.
- All26,882
- 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
Lark MCP Server
一个服务器,使大型语言模型能够与Lark/飞书服务进行交互,目前支持通过Lark的通讯录API查询员工信息。
Open Food Facts MCP Server
Enables LLMs to search for food products and retrieve detailed nutritional information from the Open Food Facts database using product names or barcodes.
Uupt Mcp Server
一个轻量级的 Python 包,用于通过 MCP 协议在 uupt.com OpenAPI 平台上创建订单。
MCP Server for stock and crypto
MCP Server for stock and crypto
Bedrock Prompts MCP Server
Enables management and invocation of AWS Bedrock managed prompts with support for variable substitution, streaming responses, batch processing, and multiple AI models including Claude, Titan, Llama, and Mistral.
Webpage MCP Server
Enables querying and retrieving webpage content from websites by parsing sitemap.xml files and fetching HTML content. Includes rate limiting protection and supports listing available pages and accessing raw sitemap data.
Kluster.ai Verify MCP
Enables fact-checking of AI responses against reliable sources and validation of responses against document content to ensure accuracy and reliability.
VTEX Headless CMS MCP Server
An MCP Server that enables interaction with VTEX's Headless Content Management System API, allowing users to manage content through natural language commands.
Maton MCP Server
与你的SaaS工具对话,包括HubSpot、Salesforce等。
Gmail MCP Server
Enables natural language interaction with Gmail, providing email search, categorized daily summaries, and Home Assistant integration through REST API with read-only access to your inbox.
telegram-mcp
An MCP server that enables interaction with Telegram to send, read, and search messages across chats and dialogs. It supports waiting for incoming messages and retrieving conversation history through natural language commands.
Kite MCP Server
Enables trading and portfolio management on Zerodha Kite Connect through natural language. Supports placing orders, viewing positions/holdings, accessing real-time market data, and managing GTT orders.
Graphiti MCP
Provides persistent memory and context continuity for AI agents using Zep's Graphiti and Neo4j graph database. Enables storing, retrieving, and linking memories to build a knowledge graph accessible across Cursor and Claude.
WinsecMCP
Windows Hardening MCP Server
MCP Base Server
A TypeScript-based template for rapidly developing MCP servers with modular tool architecture, built-in validation using Zod schemas, and comprehensive error handling.
Create your first own server
好的,这是将一个简单的 MCP 服务器翻译成中文,用于计算字符 "r" 的数量: **标题:一个简单的 MCP 服务器,用于统计字符 "r" 的数量** **描述:** 这个程序是一个简单的 Minecraft Coder Pack (MCP) 服务器模组,它的功能是统计服务器中所有玩家发送的消息中字符 "r" 的数量。 **功能:** * **监听聊天消息:** 监听服务器中所有玩家发送的聊天消息。 * **统计字符 "r":** 对于每条消息,统计其中字符 "r" (包括大小写 "R") 的数量。 * **存储计数:** 将总的 "r" 计数存储在一个变量中。 * **提供命令 (可选):** 可以添加一个命令,允许玩家查询当前的 "r" 总数。例如,`/rcount`。 * **配置文件 (可选):** 可以添加一个配置文件,允许管理员配置一些参数,例如是否区分大小写,或者是否忽略某些玩家的消息。 **技术细节:** * **MCP (Minecraft Coder Pack):** 使用 MCP 反编译和修改 Minecraft 服务器代码。 * **Java:** 使用 Java 编程语言编写模组。 * **事件处理:** 使用 Minecraft 的事件系统来监听聊天消息事件。 * **数据存储:** 使用 Java 变量来存储 "r" 的总数。 **使用方法:** 1. 安装 MCP。 2. 创建一个新的 MCP 项目。 3. 编写 Java 代码来实现上述功能。 4. 编译模组。 5. 将模组添加到 Minecraft 服务器的 `mods` 文件夹中。 6. 启动服务器。 **示例代码 (伪代码):** ```java // 监听聊天消息事件 public void onChatMessage(ChatMessageEvent event) { String message = event.getMessage(); int rCount = 0; // 遍历消息中的每个字符 for (int i = 0; i < message.length(); i++) { char c = message.charAt(i); // 统计字符 "r" (包括大小写) if (c == 'r' || c == 'R') { rCount++; } } // 更新总的 "r" 计数 totalRCount += rCount; // (可选) 发送消息给玩家,告知他们 "r" 的数量 // event.getPlayer().addChatMessage("你发送的消息中包含 " + rCount + " 个 'r' 字符。"); } // (可选) 处理 /rcount 命令 public void onRCountCommand(CommandEvent event) { // 发送总的 "r" 计数给玩家 event.getPlayer().addChatMessage("服务器中总共有 " + totalRCount + " 个 'r' 字符。"); } ``` **注意事项:** * 这是一个非常简单的示例,可能需要根据实际需求进行修改和扩展。 * 需要熟悉 MCP 和 Java 编程才能实现这个模组。 * 请确保遵守 Minecraft 的模组开发规则。 **总结:** 这个简单的 MCP 服务器模组提供了一个有趣的方式来统计服务器中聊天消息中字符 "r" 的数量。 它可以作为学习 MCP 模组开发的入门项目。 This translation provides a detailed explanation of the MCP server, including its functionality, technical details, usage, and example code. It also includes important considerations and a summary. This should be helpful for someone looking to understand or implement this project.
CBCI MCP
Enables dynamic database querying through natural language questions using LLM-powered parameter extraction and template-based SQL generation. Supports flexible configuration for various domains and databases with automated response formatting.
Compiler Explorer MCP
一个模型上下文协议服务器,将大型语言模型(LLM)连接到 Compiler Explorer API,使它们能够编译代码、探索编译器特性,以及分析不同编译器和语言之间的优化。
Mermaid Validator MCP
An MCP server that validates Mermaid diagram syntax and identifies diagram types across all major formats. It provides detailed parse-error messages for invalid diagrams without requiring external rendering processes.
MCP DeFiLlama Airdrops
Enables users to fetch, filter, and rank cryptocurrency airdrop data from DeFiLlama with intelligent caching and advanced filtering capabilities. Supports automated scraping of airdrop information including values, deadlines, chains, and status for integration with automation workflows.
Grok AI Image Generation MCP Server
一个连接到 xAI/Grok 图像生成 API 的服务器,允许用户通过文本提示生成图像,并支持生成多张图像和不同的响应格式。
Postman MCP Server
提供对 Postman 的无缝访问。
OWASP Cheatsheets MCP Server
A minimal Model Context Protocol server that provides access to OWASP security cheat sheets through a simple HTTP API, enabling users to list, retrieve, and search security best practices.
Local_mcp_client_server_example
MAGI MCP Server
一个实现了模型上下文协议(MCP)的服务器,用于使用包含 Melchior、Balthasar 和 Casper 代理的多代理系统来编排代码审查。
Swiss Health MCP Server
Provides AI assistants access to 1.6 million Swiss health insurance premium records from 55 insurers across 11 years (2016-2026), enabling price comparisons, historical analysis, and finding the cheapest insurance options based on location, age, and coverage preferences.
Code Review MCP
Enables comprehensive GitHub PR reviews through Cursor's AI by fetching PR diffs, running static analysis tools (ESLint, Prettier, TypeScript, Semgrep), executing tests, and generating detailed code review reports with inline comments.
MySQL MCP服务器
在 Cursor 工具中使用 MySQL MCP 服务读取本地 MySQL 数据库,方便通过 AI 进行编程开发。
mcp-shipcheck
Audits local package folders to generate publish-readiness reports and previews of NPM tarball contents. It helps developers identify and resolve configuration issues like missing types or broken exports before releasing code.
MySQL MCP Server
A Model Context Protocol server that allows AI agents to execute SQL queries against a MySQL database, supporting operations like reading data, creating tables, inserting, updating, and deleting records.