发现优秀的 MCP 服务器

通过 MCP 服务器扩展您的代理能力,拥有 19,124 个能力。

全部19,124
Jokes By Api Ninjas

Jokes By Api Ninjas

Enables users to fetch random jokes from the API Ninjas Jokes API. Supports retrieving 1-30 jokes per request through a simple interface.

Spotify MCP Server

Spotify MCP Server

Enables control of Spotify playback through OAuth authentication, including play/pause, track navigation, volume control, device management, and searching/playing songs by artist or track name.

JSON Logs MCP Server

JSON Logs MCP Server

JSON Logs MCP Server

MCPM CLI

MCPM CLI

在 Claude App 中管理 MCP 服务器的命令行工具。

Work Memory MCP Server

Work Memory MCP Server

Manages persistent work memories and context across AI tools, enabling structured storage, search, and retrieval of work content, tasks, and knowledge with session-based project organization.

Model Context Protocol (MCP) Tips and Best Practices

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)

SearchAPI 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.

Python MCP Server Template

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.

ScottOS MCP Calendar Server

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.

santa-mcp

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.

Everything MCP Server

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.

MCP Utils

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.

comet-mcp

comet-mcp

An MCP server that connects Claude to Perplexity Comet for agentic web browsing and deep research via an isolated browser instance. It enables Claude to delegate complex navigation, login flows, and real-time task monitoring to Perplexity's specialized research intelligence.

GitLab MCP Server

GitLab MCP Server

Connects AI assistants to GitLab projects, enabling users to query merge requests, review discussions, view test results and pipelines, search by branch, and respond to comments through natural language commands.

Remote MCP AuthKit

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.

Docker MCP

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.

MCP JS Server Template

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` 的方法来读取和解析数据。 * **错误处理:** 这个模板包含基本的错误处理,但你应该根据你的需求进行更完善的错误处理。 * **安全性:** 在生产环境中,你需要考虑安全性问题,例如防止恶意攻击。 这个模板提供了一个起点,你需要根据你的具体需求进行修改和扩展。 祝你编码愉快!

Qontinui Web MCP Server

Qontinui Web MCP Server

Enables AI assistants to create and manage visual automation configurations, workflows, and UI states through the Qontinui API. It supports project management, workflow execution, and configuration handling for automated web interactions.

🚀 GitHub MCP Server - FastAPI Implementation

🚀 GitHub MCP Server - FastAPI Implementation

Weather MCP Server

Weather MCP Server

Enables users to get weather forecasts and alerts for any US city and state through natural language queries using the National Weather Service API.

f2c-mcp-server

f2c-mcp-server

f2c-mcp-server

Anava MCP Server

Anava MCP Server

A bridge between AI assistants like Claude and Anava-enabled Axis cameras, enabling real-time image analysis, event monitoring, and camera management through natural language commands.

Vertex AI MCP Server

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

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.

Products API MCP Server

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.

Heptabase MCP

Heptabase MCP

A Model Context Protocol service that enables AI assistants to search, retrieve, analyze, and export data from Heptabase backups.

MCP Continuity Server (Versão Simplificada)

MCP Continuity Server (Versão Simplificada)

MCP Continuity Server 兼容 SDK 1.7.0 的修正版本

GibsonAI

GibsonAI

AI-Powered Cloud databases: Empower your LLMs to build, migrate, and deploy database instances with AI

MCP Server for WordPress

MCP Server for WordPress

使用 WordPress REST API 实现 MCP 服务器

MCP Calculator Server

MCP Calculator Server

Provides basic and advanced mathematical operations including addition, subtraction, multiplication, division, power, square root, and factorial calculations through an SSE-based MCP interface.