发现优秀的 MCP 服务器
通过 MCP 服务器扩展您的代理能力,拥有 14,732 个能力。

JSON Logs MCP Server
JSON Logs MCP Server

WinAutoWx
Enables automated WeChat operations on Windows through pywinauto, allowing users to send messages to multiple friends or groups programmatically. Provides tools for searching contacts, sending bulk messages, and controlling WeChat interface elements via MCP protocol.
MCP Server for Dust Agent Integration
通过 HTTP 调用连接到 Dust Agent

EVE-NG MCP Server
A Model Context Protocol server that enables LLMs to manage network topologies, labs, nodes, and configurations in the EVE-NG network emulation platform through a standardized interface.
Vapi MCP Server
镜子 (jìng zi)

SharkMCP
A Model Context Protocol server that provides network packet capture and analysis capabilities through Wireshark/tshark integration, enabling AI assistants to perform network security analysis and troubleshooting.
MCP Server for apple calendar
一个简单的 MCP 服务器,用于添加日历事件。 (Yī gè jiǎndān de MCP fúwùqì, yòng yú tiānjiā rìlì shìjiàn.)
santa-mcp
给圣诞老人的概念验证 MCP 服务器 (Gěi Shèngdàn Lǎorén de gàiniàn yànzhèng MCP fúwùqì) Alternatively, if you want to emphasize that it's a *proof-of-concept* server: 圣诞老人的概念验证 MCP 服务器原型 (Shèngdàn Lǎorén de gàiniàn yànzhèng MCP fúwùqì yuánxíng) Which translates more literally to: Santa's proof-of-concept MCP server prototype.

PDF Reader MCP Server
An MCP server that provides comprehensive PDF processing capabilities including text extraction, image extraction, table detection, annotation extraction, metadata retrieval, page rendering, and document structure analysis.

Docker MCP
Enables Docker container management directly through Claude using the Model Context Protocol. Provides 14 tools for managing containers, images, volumes, and Docker Compose deployments through natural language commands.
@demoway/mcp-server
Demoway MCP 独立服务 (Demoway MCP dúlì fúwù)
Docker MCP Server 🐳⚡
这是一个用于 Docker 的 MCP 服务器,可以进行创建容器、获取容器以及停止/启动/移除容器等基本操作。 (Alternatively, a more literal translation could be:) 这是一个 Docker 的 MCP 服务器,用于基本的创建容器、获取容器和停止/启动/移除容器。

f2c-mcp-server
f2c-mcp-server

SearchAPI MCP Server
Connects AI assistants to external data sources (Google, Bing, etc.) via SearchAPI.site, implementing the Model Context Protocol (MCP) for secure and contextual access to web information.

Remote MCP AuthKit
Enables remote MCP client connections with WorkOS AuthKit authentication and organization-based permission control. Demonstrates how to gate tool access based on user permissions, including features like image generation behind specific authorization checks.

Everything MCP Server
A test MCP server implementing all protocol features including tools, resources, prompts, and sampling to help developers build and test MCP clients.

Heptabase MCP
A Model Context Protocol service that enables AI assistants to search, retrieve, analyze, and export data from Heptabase backups.
Model Context Protocol (MCP) Tips and Best Practices
以下是一些使用模型上下文协议 (MCP) 服务器的技巧和最佳实践: (Yīxiē shǐyòng móxíng shàngxiàwén xiéyì (MCP) fúwùqì de jìqiǎo hé zuìjiā shíjiàn:) Alternatively, a more concise translation: 使用模型上下文协议 (MCP) 服务器的技巧和最佳实践 (Shǐyòng móxíng shàngxiàwén xiéyì (MCP) fúwùqì de jìqiǎo hé zuìjiā shíjiàn)

MCP Utils
A comprehensive utilities library for building Model Context Protocol servers, providing standardized tools for response formatting, caching, rate limiting, logging, and WebSocket management.

MCP Weather Server
A demonstration MCP server created for learning purposes, allowing Claude AI to interact with local files and a Postgres database while implementing a custom Model Context Protocol.

Vertex AI MCP Server
Implementation of Model Context Protocol (MCP) server that provides tools for accessing Google Cloud's Vertex AI Gemini models, supporting features like web search grounding and direct knowledge answering for coding assistance and general queries.

WOL MCP Server
Provides read-only access to the Watchtower Online Library (WOL) with advanced search capabilities, document retrieval, and multilingual support. Enables users to search and browse Jehovah's Witnesses publications through natural language interactions.

Python MCP Server Template
A template repository for creating custom Model Context Protocol (MCP) servers in Python that can be integrated with applications like Claude Desktop or Cursor.

Products API MCP Server
An MCP server that retrieves product data from the DummyJSON API, supporting filtering by various parameters like ID, title, category, brand, price and rating.

ScottOS MCP Calendar Server
Enables ChatGPT to interact with Google Calendar through a remote MCP server. Provides tools to list, create, update, and delete calendar events with OAuth authentication.
PayPal Java MCP Server
PayPal-Java-MCP 服务器
MCP JS Server Template
好的,这是一个简化的 Node.js MCP (Minecraft Protocol) 服务器模板: ```javascript const net = require('net'); const server = net.createServer((socket) => { console.log('客户端已连接:', socket.remoteAddress, socket.remotePort); // 处理数据接收 socket.on('data', (data) => { console.log('收到数据:', data); // TODO: 解析 Minecraft 协议数据并进行处理 // 示例:发送一个简单的响应 socket.write(Buffer.from([0x00, 0x00])); // 示例:保持连接包 }); // 处理连接关闭 socket.on('close', () => { console.log('客户端已断开连接:', socket.remoteAddress, socket.remotePort); }); // 处理错误 socket.on('error', (err) => { console.error('Socket 错误:', err); }); }); const port = 25565; // 默认 Minecraft 端口 server.listen(port, () => { console.log('服务器正在监听端口:', port); }); // 处理服务器错误 server.on('error', (err) => { console.error('服务器错误:', err); }); ``` **翻译成简体中文:** ```javascript const net = require('net'); const server = net.createServer((socket) => { console.log('客户端已连接:', socket.remoteAddress, socket.remotePort); // 处理数据接收 socket.on('data', (data) => { console.log('收到数据:', data); // TODO: 解析 Minecraft 协议数据并进行处理 // 示例:发送一个简单的响应 socket.write(Buffer.from([0x00, 0x00])); // 示例:保持连接包 }); // 处理连接关闭 socket.on('close', () => { console.log('客户端已断开连接:', socket.remoteAddress, socket.remotePort); }); // 处理错误 socket.on('error', (err) => { console.error('Socket 错误:', err); }); }); const port = 25565; // 默认 Minecraft 端口 server.listen(port, () => { console.log('服务器正在监听端口:', port); }); // 处理服务器错误 server.on('error', (err) => { console.error('服务器错误:', err); }); ``` **解释:** * **`net` 模块:** Node.js 的 `net` 模块用于创建 TCP 服务器。 * **`net.createServer()`:** 创建一个新的 TCP 服务器。 * **`socket` 对象:** 代表与客户端的连接。 * **`socket.on('data', ...)`:** 监听客户端发送的数据。 **重要:** 你需要在这里解析 Minecraft 协议数据。 * **`socket.write()`:** 向客户端发送数据。 **重要:** 你需要根据 Minecraft 协议格式化数据。 * **`socket.on('close', ...)`:** 监听客户端断开连接事件。 * **`socket.on('error', ...)`:** 监听 socket 错误。 * **`server.listen(port, ...)`:** 服务器开始监听指定的端口。 * **`server.on('error', ...)`:** 监听服务器错误。 **重要提示:** * **Minecraft 协议:** 这个模板只是一个框架。 你需要深入了解 Minecraft 协议才能正确地解析和处理客户端发送的数据,并构建正确的响应。 搜索 "Minecraft Protocol" 可以找到相关文档。 * **数据解析:** `socket.on('data', ...)` 中的 `data` 是一个 `Buffer` 对象。 你需要使用 `Buffer` 的方法来读取和解析数据。 * **错误处理:** 这个模板包含基本的错误处理,但你应该根据你的需求进行更完善的错误处理。 * **安全性:** 在生产环境中,你需要考虑安全性问题,例如防止恶意攻击。 这个模板提供了一个起点,你需要根据你的具体需求进行修改和扩展。 祝你编码愉快!
MCPM CLI
在 Claude App 中管理 MCP 服务器的命令行工具。
🚀 GitHub MCP Server - FastAPI Implementation

Microsoft Graph MCP Server
A comprehensive server that enables AI applications to interact with Microsoft 365 and Azure AD services through standardized Model Context Protocol interfaces.