发现优秀的 MCP 服务器
通过 MCP 服务器扩展您的代理能力,拥有 16,320 个能力。
Beanquery MCP Server
一个实验性的服务器,它实现了模型上下文协议,允许 AI 助手使用 Beancount 查询语言查询和分析存储在 Beancount 账本文件中的财务数据。
Browser Manager MCP Server
Enables comprehensive browser automation and control through Playwright, including launching browsers, managing tabs, web navigation, element interaction, and screenshot capture. Supports detecting and controlling external browsers with remote debugging capabilities.
Yachtsy MCP Server
Research, Search, and compare sailboats with real-time listings, market insights, specs, and price history.
Claude MCP Protocol Practice
MCP服务器示例实践
MasterGO-McpServer
好的,这句话翻译成中文是: **基于 MasterGo 构建 MCP 服务** (Jī yú MasterGo gòu jiàn MCP fúwù) This translates directly to: **Building an MCP service based on MasterGo.**
mcp-render-server
fm-mcp-comfyui-bridge
用于图像生成的带有 ComfyUI 的 LLM MCP 服务器
Video Clip MCP
A Model Context Protocol server that provides video manipulation capabilities, allowing users to clip, merge, and split video files through MCP integration.
Game Asset Generator
一个 MCP 服务器,它使用来自 Hugging Face Spaces 的 AI 模型,通过文本提示生成 2D 和 3D 游戏素材,从而允许开发者通过 Claude Desktop 或其他 MCP 客户端轻松创建游戏美术资源。
Wakapi MCP Server
Enables tracking and analyzing development time through the Wakapi API. Provides tools to retrieve coding statistics, project details, leaderboards, and recent activity logs for productivity insights.
Kubernetes MCP Server
用于 Kubernetes 和 OpenShift 容器的 Model Context Protocol (MCP) 服务器,上下文,kubernetes,mcp,模型,模型上下文协议,openshift,协议
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.
Pippa MCP Memory Manager
一个全面的 Cursor IDE 内存管理系统,允许 AI 助手通过用户友好的界面记住、回忆和管理跨对话的信息。
Office Word MCP Server
一个模型上下文协议服务器,它使 AI 助手能够通过标准化的工具和资源来创建、读取、编辑和格式化 Microsoft Word 文档。
SMMS_Semantic-Map-MCP-Server
SMMS 仓库创建了一个 MCP 服务器,用于实例级别的语义地图,并为语义地图中的 3D 实例对象提供了一系列功能模块。
Awesome Claude MCP Servers 🤖
一个精选的、针对 Claude AI 助手优化的模型上下文协议 (MCP) 服务器列表。
WinsecMCP
Windows 强化 MCP 服务器 (Windows Qiánghuà MCP Fúwùqì)
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.
MCP Server
一个服务器,通过聚合网络资源并将它们组织成结构化的学习路径,来生成任何主题的“主内容计划”(MCP)。
Transport NSW API Client MCP
一个 MCP 服务,用于与新南威尔士州交通局 (Transport NSW) 的 API 交互,使用户能够查找位置周围的交通站点,并检索有关交通警报和中断的信息。
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.
MCP Notes
一个个人知识管理系统,它使用模型上下文协议将每日笔记转化为有组织的、可搜索的知识。
Fast MCP Local
A minimal FastMCP server implementation that provides basic mathematical and greeting tools. Enables users to perform simple operations like adding numbers and greeting people by name through a lightweight MCP interface.
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.
MCP Note-Taking Server
Enables structured note-taking with markdown support, dynamic tagging system, advanced search capabilities, and markdown export functionality through natural language conversations in Claude Desktop.
Cheqd MCP Toolkit
cheqd 去中心化身份的 Model Context Protocol (MCP) 工具包
GitHub MCP Server Tutorial
GitHub MCP 服务器的教程仓库
Databricks MCP Server Template
Enables AI assistants like Claude to interact with Databricks workspaces through secure OAuth authentication. Supports custom prompts, tools for workspace management, and seamless deployment to Databricks Apps.
Zerodha Kite Connect MCP Server
A Cloudflare Worker that provides a RESTful API interface to Zerodha trading functionalities, enabling users to authenticate, access profile information, manage orders, and view holdings and positions.
MCP Server: ComfyUI Selfie
生成自拍像? (Shēngchéng zìpāixiàng?)