发现优秀的 MCP 服务器

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

全部23,247
MCP Rust CLI server template

MCP Rust CLI server template

模型上下文协议的 "Hello, World!" 服务器

mcp-open-webresearch

mcp-open-webresearch

A proxy-aware MCP server that enables web searching across multiple engines and automated markdown content extraction from webpages. It features a deep research agent for recursive searching and synthesis, supporting complex network environments through SOCKS5 and HTTP proxies.

AAP MCP Server

AAP MCP Server

Enables comprehensive management of Ansible Automation Platform Controller and Gateway through 17 specialized tools covering job execution, inventory management, workflows, credentials, user administration, and system monitoring.

ComplianceCow MCP Server

ComplianceCow MCP Server

Enables AI agents to interact with the ComplianceCow platform to retrieve compliance insights, dashboard data, and auditable evidence through a Compliance Graph. It also supports automated remediation actions such as fixing policies and creating tickets in external tools.

RAG-MCP Server

RAG-MCP Server

A server that integrates Retrieval-Augmented Generation (RAG) with the Model Control Protocol (MCP) to provide web search capabilities and document analysis for AI assistants.

chainlist-mcp

chainlist-mcp

chainlist-mcp

AnythingLLM MCP Server

AnythingLLM MCP Server

Enables seamless integration with AnythingLLM instances, providing complete workspace management, chat operations, document handling, user administration, and AI agent configuration through natural language.

Remote MCP Server Authless

Remote MCP Server Authless

A template for deploying a remote Model Context Protocol server on Cloudflare Workers without authentication. It enables users to build custom tools and expose them to remote clients like Claude Desktop and the Cloudflare AI Playground using Server-Sent Events (SSE).

MySQL MCP Server

MySQL MCP Server

Enables comprehensive MySQL database operations including cross-database queries, performance analysis, health monitoring, and AI-assisted database management with role-based access control.

Bazel MCP Server

Bazel MCP Server

一个本地 MCP 服务器,向 AI 代理公开 Bazel 构建系统的功能,使它们能够通过自然语言构建、测试、查询和管理 Bazel 项目,即使在无法直接访问 Bazel 的环境中也能实现。

How to build an MCP server - Calculator Example

How to build an MCP server - Calculator Example

一个展示如何构建简单 MCP 服务器(并将其部署在 Smithery 上!)的示例项目

Finance MCP

Finance MCP

Enables financial research and analysis through AI agents that combine web search, content crawling, entity extraction, and deep research workflows. Supports extracting stock/fund entities with security codes and conducting structured financial investigations.

Notes MCP Server

Notes MCP Server

Enables creating, managing, and searching Markdown notes with support for tags, timestamps, and full-text search. Includes AI prompts for analyzing and summarizing notes.

Awels PDF Processing Server

Awels PDF Processing Server

Enables conversion of PDF files to Markdown format with optional image extraction using docling. Supports batch processing of multiple PDFs with structured output including metadata and processing statistics.

buildkite-mcp-server

buildkite-mcp-server

这是一个用于 Buildkite 的 mcp 服务器。

ASUS Merlin Router MCP Server

ASUS Merlin Router MCP Server

Enables management of ASUS routers running Asuswrt-Merlin firmware via SSH/SCP. Supports system monitoring, device management, WiFi control, service restarts, NVRAM operations, file transfers, VPN management, and custom command execution.

CTF MCP Server

CTF MCP Server

Exposes common CTF and cybersecurity tools (crypto, forensics, malware analysis, steganography, reverse engineering, pwn, OSINT) so LLMs can help solve capture-the-flag challenges in a controlled lab environment.

Crunchbase MCP Server

Crunchbase MCP Server

一个模型上下文协议(MCP)服务器,为人工智能助手提供访问 Crunchbase 数据的能力。该服务器允许人工智能助手从 Crunchbase 搜索公司、获取公司详情、融资信息、收购信息和人员数据。

Visum Thinker MCP Server

Visum Thinker MCP Server

Provides structured sequential thinking capabilities for AI assistants to break down complex problems into manageable steps, revise thoughts, and explore alternative reasoning paths.

HotNews MCP Server

HotNews MCP Server

Provides real-time hot trending topics and heat indices from nine major Chinese social media and news platforms including Weibo, Zhihu, and Bilibili. It enables users to fetch markdown-formatted news summaries and clickable links via the get_hot_news tool.

LanceDB Node

LanceDB Node

一个使用 LanceDB 和 Ollama 嵌入模型实现的 Node.js 向量搜索方案。

Mcp Server Docker

Mcp Server Docker

好的,这是一个使用 Docker 创建 Minecraft (MCP) 服务器的示例: **Dockerfile:** ```dockerfile FROM openjdk:17-slim # 设置工作目录 WORKDIR /app # 下载 Minecraft 服务器 JAR 文件 (请替换为最新版本) RUN wget https://piston-data.mojang.com/v1/objects/84194a277db3d86080a99d8dc001263030b9a7ff/server.jar -O minecraft_server.jar # 设置环境变量 ENV EULA=TRUE # 暴露 Minecraft 服务器端口 EXPOSE 25565 # 启动 Minecraft 服务器 CMD ["java", "-Xms2G", "-Xmx2G", "-jar", "minecraft_server.jar", "nogui"] ``` **说明:** * **`FROM openjdk:17-slim`**: 使用基于 Debian 的 OpenJDK 17 镜像作为基础镜像。 选择 `slim` 版本可以减少镜像大小。 确保选择与你的 Minecraft 服务器版本兼容的 Java 版本。 * **`WORKDIR /app`**: 设置容器内的工作目录为 `/app`。 * **`RUN wget ...`**: 下载 Minecraft 服务器 JAR 文件。 **重要:** 你需要从 Mojang 官方网站获取最新的服务器 JAR 文件链接,并替换这里的 URL。 `piston-data.mojang.com` 是官方下载源。 * **`ENV EULA=TRUE`**: 自动接受 Minecraft 的 EULA (最终用户许可协议)。 **重要:** 在使用 Minecraft 服务器之前,请务必阅读并理解 EULA。 * **`EXPOSE 25565`**: 声明容器暴露 25565 端口,这是 Minecraft 服务器的默认端口。 * **`CMD ["java", "-Xms2G", "-Xmx2G", "-jar", "minecraft_server.jar", "nogui"]`**: 定义容器启动时执行的命令。 * `java`: 调用 Java 运行时环境。 * `-Xms2G`: 设置初始堆大小为 2GB。 * `-Xmx2G`: 设置最大堆大小为 2GB。 根据你的服务器需求和可用内存调整这些值。 * `-jar minecraft_server.jar`: 运行 Minecraft 服务器 JAR 文件。 * `nogui`: 以无图形界面模式运行服务器。 **构建镜像:** 1. 将上面的 `Dockerfile` 保存到一个目录中 (例如 `minecraft-server`)。 2. 打开终端,进入该目录。 3. 运行以下命令构建 Docker 镜像: ```bash docker build -t minecraft-server . ``` 这会创建一个名为 `minecraft-server` 的 Docker 镜像。 **运行容器:** ```bash docker run -d -p 25565:25565 -v minecraft_data:/app minecraft-server ``` **说明:** * **`-d`**: 在后台运行容器。 * **`-p 25565:25565`**: 将主机的 25565 端口映射到容器的 25565 端口。 这样你就可以通过主机的 IP 地址和 25565 端口连接到 Minecraft 服务器。 * **`-v minecraft_data:/app`**: 创建一个名为 `minecraft_data` 的 Docker 卷,并将其挂载到容器的 `/app` 目录。 这会将 Minecraft 服务器的数据 (例如世界数据、配置文件) 持久化存储在卷中。 即使容器被删除,数据也不会丢失。 你可以将 `minecraft_data` 替换为你想要使用的卷名。 如果你想将数据存储在主机上的特定目录中,可以使用 `-v /path/to/host/directory:/app`。 * **`minecraft-server`**: 指定要运行的镜像名称。 **重要注意事项:** * **EULA:** 请务必阅读并理解 Minecraft 的 EULA。 * **内存:** 根据你的服务器需求和可用内存调整 `-Xms` 和 `-Xmx` 参数。 * **端口:** 确保你的防火墙允许通过 25565 端口的流量。 * **版本:** 始终使用最新的 Minecraft 服务器 JAR 文件。 * **数据持久化:** 使用 Docker 卷来持久化存储 Minecraft 服务器的数据。 * **配置:** 你可以通过修改 `server.properties` 文件来配置 Minecraft 服务器。 该文件位于 `/app` 目录中 (在容器内)。 你可以通过 `docker exec -it <container_id> bash` 进入容器,然后编辑该文件。 `<container_id>` 可以通过 `docker ps` 命令找到。 * **资源限制:** 考虑使用 Docker 的资源限制功能 (例如 CPU 和内存限制) 来防止 Minecraft 服务器占用过多的系统资源。 **示例 `docker-compose.yml` (可选):** 如果你想使用 Docker Compose 来管理你的 Minecraft 服务器,可以创建一个 `docker-compose.yml` 文件: ```yaml version: "3.8" services: minecraft: image: minecraft-server ports: - "25565:25565" environment: EULA: "TRUE" volumes: - minecraft_data:/app restart: unless-stopped volumes: minecraft_data: ``` 然后,运行 `docker-compose up -d` 来启动服务器。 这个例子提供了一个基本的 Minecraft 服务器 Docker 镜像和容器的设置。 你可以根据你的具体需求进行修改和定制。

MCP Python REPL Server

MCP Python REPL Server

Provides interactive Python REPL capabilities with persistent sessions, virtual environment support, package management via uv, and development tools like testing, linting, and code formatting for Python projects.

Twilio Microvisor MCP Server

Twilio Microvisor MCP Server

An MCP server that enables communication with Twilio's Microvisor API, allowing interaction with IoT devices managed by Twilio's Microvisor through natural language.

Prompt for User Input MCP Server

Prompt for User Input MCP Server

Enables AI models to interactively prompt users for input or clarification directly through their code editor. It facilitates real-time communication between assistants and users during development tasks.

Huly MCP Server

Huly MCP Server

Enables interaction with Huly workspaces via WebSocket API to manage projects and issues with correct field mapping. It allows users to create and list issues while automatically resolving project-specific task type IDs for accurate data synchronization.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

Claude Code MCP Server

Claude Code MCP Server

A server that allows LLMs to run Claude Code with all permissions bypassed automatically, enabling code execution and file editing without permission interruptions.

File System MCP Server

File System MCP Server

Enables safe file system operations including reading, writing, updating, and deleting files with built-in security safeguards, automatic backups, and comprehensive error handling. Provides directory listing, file metadata extraction, and protects against operations on system-critical paths.

PBIXRay MCP Server

PBIXRay MCP Server

镜子 (jìng zi)