发现优秀的 MCP 服务器
通过 MCP 服务器扩展您的代理能力,拥有 26,307 个能力。
mcp-framework-starter
一个用于构建模型上下文协议 (MCP) 服务器的入门模板,使开发者能够创建和添加可与 Claude Desktop 集成的自定义工具。
ClickHouse MCP Server
一个模型上下文协议 (MCP) 服务器,它连接到 ClickHouse 数据库,并允许像 Claude 这样的大型语言模型通过自然语言查询来探索和分析数据。 (Alternative, slightly more formal translation:) 一种模型上下文协议 (MCP) 服务器,用于连接 ClickHouse 数据库,并使 Claude 等大型语言模型能够通过自然语言查询探索和分析数据。
FluentCommunity Manager
AI-powered management of FluentCommunity WordPress plugin content. Enables creating, updating, and managing community posts, spaces, comments, members, and chat through 26+ tools with bulk operations and advanced search capabilities.
MCP-TEAMATE
AI 协作的 MCP 服务器
Tana MCP Server
一个 MCP 服务器,连接到 Tana 的 Input API,允许大型语言模型和其他 MCP 客户端在 Tana 工作区中创建和操作数据。
Jadx MCP Server
一个通过 HTTP 暴露 Jadx 反编译器 API 的服务器,使 Claude 能够与反编译后的 Java/Android 代码进行交互,以列出类、获取源代码、检查方法/字段以及实时提取代码。
CCGLM MCP Server
Enables Claude Code (Anthropic Sonnet) to invoke Z.AI's GLM-4.6 model through a secondary Claude instance. Supports code generation, deep analysis, and general queries while maintaining file tracking and secure token management.
Xiaobai Print MCP
An MCP server and local HTTP bridge designed to integrate remote upstream MCP tools into OpenClaw skills or local environments. It enables users to generate skill wrappers and proxy tool calls via a local HTTP bridge for use in Claude Desktop, Cursor, or OpenClaw.
Bithumb MCP Server
Enables interaction with the Bithumb cryptocurrency exchange API to fetch market data, manage account balances, and execute trading operations including limit orders, market orders, and withdrawals.
Cloudflare Playwright MCP
A Model Control Protocol server that enables AI assistants to control a browser through web automation tasks like navigation, typing, clicking, and taking screenshots.
MCP Server POC
这个项目演示了如何创建和使用模型上下文协议 (MCP) 服务器,该服务器可以为 AI 助手(如 Claude 和其他支持 MCP 标准的助手)提供自定义工具和资源。该服务器包括: - 简单的数学运算(加法) - 动态问候语资源 - 使用 crawl4ai 库的网络爬取功能
mcp-server-unusualwhales
用于 Unusual Whales REST API 的 MCP 服务器
Heimdall
Heimdall 是一个轻量级的服务,用于管理本地 MCP 服务器,并且可以通过一个简单的 npx 命令安装。特定的 MCP 服务器工具可以被授权给你的 MCP 客户端,并且相同的配置可以被你设备上的所有 MCP 客户端访问。
Popmelt MCP Server
一个 MCP 服务器,提供对 Talent AI 档案的访问和动态 UI 组件样式功能,连接到 PostgreSQL 以提供包含美学特征和设计属性的详细人才档案。
Entscheidsuche MCP Server
一个 MCP 服务器,通过 entscheidsuche.ch API 提供对瑞士法院判决的标准化访问,允许 LLM 搜索、检索和分析来自瑞士司法管辖区的法律文件。
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.
Cheqd MCP Toolkit
cheqd 去中心化身份的 Model Context Protocol (MCP) 工具包
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?)
File system MCP
这是一个文件系统 MCP 服务器,它允许 LLM 从您本地机器上指定的安全目录中读取和列出文件。
GitLab + Jira MCP Server
Enables read-only access to GitLab and Jira data through MCP, allowing users to list projects, merge requests, issues, and search Jira tickets via natural language queries. Provides safe, structured access to project management data without write permissions.
PayBot MCP Server
Connects AI agents to the PayBot payment infrastructure, enabling automated USDC transactions and payment status management. It provides tools for submitting payments, tracking transaction histories, and monitoring payment IDs via the Model Context Protocol.
Remote MCP Server (Authless)
Enables deployment of MCP servers on Cloudflare Workers without authentication requirements. Allows connection from both web-based AI playgrounds and desktop clients like Claude through a remote proxy.
SFCC MCP Server
Trino MCP Server
一个 MCP 服务器,可以使用 Python 列出和查询 Trino 表,并通过模型控制协议 (Model-Control-Protocol) 提供对数据资源的访问。
MCP Server for stock and crypto
MCP Server for stock and crypto
postman-mcp-server
提供对 Postman 的无缝访问。
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.
Local_mcp_client_server_example
Fuzzy Memory MCP Server
Enables Claude to maintain persistent memory across conversations using a local knowledge graph with fuzzy search capabilities, allowing it to remember and recall information about users, relationships, and context.