发现优秀的 MCP 服务器
通过 MCP 服务器扩展您的代理能力,拥有 68,146 个能力。
A2A Client MCP Server
Enables LLMs to interact with Agent-to-Agent (A2A) protocol compatible agents, allowing them to send tasks, receive responses, track task status, and query agent capabilities through the Model Context Protocol.
stockup-mcp
Connects AI agents to StockUp Quan's financial reasoning models with real-time stock data from Yahoo Finance, enabling grounded financial analysis and queries.
Qase MCP Server
Official MCP server for Qase Test Management Platform. Enables AI assistants to manage test cases, test runs, defects, and other Qase entities through natural language.
smart-contract-scanner-api
Enables scanning Solidity smart contracts for 13 vulnerability classes using pattern-based analysis; provides full audit, quick scan, gas analysis, and detector catalog through MCP tools.
Memory MCP
A production-grade memory server for LibreChat that stores conversation turns and distills durable memories like decisions, constraints, and assumptions. It provides hybrid retrieval and consistency auditing to ensure AI plans remain aligned with established context and previous decisions.
mcp-wiki
Exposes any project wiki to AI assistants with features like fuzzy search, content search, lazy loading, and auto-reload.
AEGIS Governance
Quantitative governance gate for AI agents. Six gates (risk, profit, novelty, complexity, quality, utility) return PROCEED/PAUSE/HALT/ESCALATE with confidence scores and hash-chained, tamper-evident audit trails. Generates NIST AI RMF and EU AI Act Annex IV artifacts. 10 MCP tools; local stdio and hosted Streamable HTTP with a free tier.
AllRatesToday MCP Server
Real-time currency exchange rates for 160+ currencies from Reuters/Refinitiv. 4 tools, stdio transport.
PostgREST
This is an MCP server for PostgREST. It allows LLMs perform database queries and operations on Postgres databases via PostgREST. This server works with both Supabase projects (which use PostgREST) and standalone PostgREST servers.
Korean National Assembly MCP Server
Enables AI assistants to access real-time legislative data from the Korean National Assembly including members, bills, votes, and schedules through 276 Open APIs. Supports dual transport modes (stdio/HTTP), configurable Lite/Full tool profiles, and in-memory caching for efficient querying.
mcp-altair-studio
MCP server that enables Claude to control Altair AI Studio for data mining and machine learning tasks, including data import, cleaning, transformation, model training, clustering, association rules, and executing saved processes.
mcp-server
好的,以下是一些学习制作 Minecraft (MCP) 服务器的资源和步骤: **理解 Minecraft 服务器类型 (Understanding Minecraft Server Types)** 首先,你需要了解不同类型的 Minecraft 服务器: * **Vanilla (原版):** 官方 Minecraft 服务器,使用 Mojang 提供的服务器软件。最简单,但功能最少。 * **Bukkit/Spigot/Paper:** 基于 Vanilla 服务器,但添加了插件 API。允许你使用插件来扩展服务器功能,例如添加经济系统、权限管理、小游戏等。Paper 是 Spigot 的优化版本,性能更好。 * **Forge:** 允许你安装 Mod (模组)。Mod 可以大幅度改变游戏内容,例如添加新的生物、物品、维度等。 * **Fabric:** 另一种 Mod 加载器,通常比 Forge 更轻量级,更新速度更快。 **选择服务器类型 (Choosing a Server Type)** 对于初学者,我建议从 **Paper** 开始。它易于设置,性能好,并且有大量的插件可用。 **步骤 (Steps):** 1. **安装 Java (Install Java):** Minecraft 服务器需要 Java 才能运行。确保你安装了最新版本的 Java Development Kit (JDK)。你可以从 Oracle 网站或 Adoptium (Temurin) 下载 JDK。 * **Oracle JDK:** [https://www.oracle.com/java/technologies/javase-downloads.html](https://www.oracle.com/java/technologies/javase-downloads.html) * **Adoptium (Temurin):** [https://adoptium.net/](https://adoptium.net/) 确保安装的是 JDK,而不是 JRE (Java Runtime Environment)。 2. **下载 Paper 服务器软件 (Download Paper Server Software):** 访问 PaperMC 网站下载最新版本的 Paper 服务器软件。 * **PaperMC:** [https://papermc.io/downloads](https://papermc.io/downloads) 选择与你的 Minecraft 客户端版本相对应的 Paper 版本。 3. **创建服务器文件夹 (Create a Server Folder):** 在你的电脑上创建一个新的文件夹,用于存放服务器文件。例如,你可以命名为 "MinecraftServer"。 4. **将 Paper 服务器软件放入文件夹 (Place Paper Server Software in the Folder):** 将你下载的 Paper .jar 文件放入你创建的服务器文件夹中。 5. **创建启动脚本 (Create a Startup Script):** 创建一个文本文件,并将其重命名为 `start.bat` (Windows) 或 `start.sh` (Linux/macOS)。将以下内容添加到文件中: * **Windows (start.bat):** ```batch java -Xms2G -Xmx4G -jar paper-版本号.jar nogui pause ``` * **Linux/macOS (start.sh):** ```bash #!/bin/bash java -Xms2G -Xmx4G -jar paper-版本号.jar nogui ``` 然后,你需要给 `start.sh` 文件执行权限: `chmod +x start.sh` 将 `paper-版本号.jar` 替换为你下载的 Paper .jar 文件的实际名称。 `-Xms2G` 和 `-Xmx4G` 分别设置服务器的最小和最大内存分配。根据你的电脑配置调整这些值。`nogui` 参数禁用图形界面,使用命令行界面。 6. **运行启动脚本 (Run the Startup Script):** 双击 `start.bat` (Windows) 或在终端中运行 `./start.sh` (Linux/macOS) 来启动服务器。 7. **同意 EULA (Accept the EULA):** 首次运行服务器时,它会生成一个 `eula.txt` 文件。打开该文件,将 `eula=false` 更改为 `eula=true`,以同意 Minecraft 的最终用户许可协议。 8. **再次运行启动脚本 (Run the Startup Script Again):** 再次运行启动脚本以启动服务器。 9. **连接到服务器 (Connect to the Server):** 启动 Minecraft 客户端,选择 "多人游戏",然后点击 "添加服务器"。输入 `localhost` 作为服务器地址,然后点击 "完成"。你应该能够看到你的服务器并连接到它。 **配置服务器 (Configuring the Server)** * **server.properties:** 这个文件包含服务器的各种设置,例如游戏模式、难度、最大玩家数量等。你可以在服务器文件夹中找到它。 * **plugins 文件夹:** 将插件 .jar 文件放入此文件夹中,服务器启动时会自动加载它们。 **学习资源 (Learning Resources):** * **PaperMC 文档:** [https://docs.papermc.io/](https://docs.papermc.io/) * **SpigotMC 论坛:** [https://www.spigotmc.org/](https://www.spigotmc.org/) * **YouTube 教程:** 在 YouTube 上搜索 "Minecraft server tutorial" 可以找到大量的教程视频。 **重要提示 (Important Notes):** * **安全性 (Security):** 确保你的服务器安全。使用强密码,并定期更新服务器软件和插件。 * **端口转发 (Port Forwarding):** 如果你想让其他人从互联网上连接到你的服务器,你需要配置端口转发。这涉及到你的路由器设置。 * **资源 (Resources):** 运行 Minecraft 服务器需要大量的 CPU 和内存。确保你的电脑有足够的资源来支持服务器。 * **备份 (Backups):** 定期备份你的服务器数据,以防止数据丢失。 **中文翻译 (Chinese Translation):** * **Vanilla (原版):** 原版 * **Bukkit/Spigot/Paper:** Bukkit/Spigot/Paper (基于原版,但添加了插件 API) * **Forge:** Forge (允许安装 Mod) * **Fabric:** Fabric (另一种 Mod 加载器) * **插件 (Plugins):** 插件 * **Mod (模组):** 模组 * **Java Development Kit (JDK):** Java 开发工具包 * **Java Runtime Environment (JRE):** Java 运行时环境 * **服务器文件夹 (Server Folder):** 服务器文件夹 * **启动脚本 (Startup Script):** 启动脚本 * **同意 EULA (Accept the EULA):** 同意最终用户许可协议 * **连接到服务器 (Connect to the Server):** 连接到服务器 * **server.properties:** 服务器配置文件 * **plugins 文件夹:** 插件文件夹 * **端口转发 (Port Forwarding):** 端口转发 * **备份 (Backups):** 备份 希望这些信息对你有所帮助!祝你学习愉快!
PresentationMcpServer
Autonomously generates university-level educational presentations as interactive Reveal.js decks with time-synced presenter scripts from source materials, respecting target audience pedagogical level.
Icecast MCP Server
Analyzes and optimizes Icecast streaming server configurations with automated security audits, performance recommendations, and capacity planning for internet radio stations.
Mistral OCR MCP Server
Enables OCR processing of local files and public URLs using Mistral OCR. Provides tools for health checks, key management, page listing, and generating Markdown output.
HidrateSpark MCP Server
Enables tracking hydration, analyzing water intake patterns, and managing HidrateSpark smart water bottle data through Claude Desktop.
GIM-MCP
An educational interaction management system that uses MCP and Ollama to create and manage flashcards and other learning content. It enables dynamic content generation and transformation through natural language processing using local AI models.
Remote MCP Server on Cloudflare
我的 MCP 服务器(无身份验证) (Wǒ de MCP fúwùqì (wú shēnfèn yànzhèng))
ONLYOFFICE DocSpace MCP Server
Connects AI agents to ONLYOFFICE DocSpace, enabling them to manage rooms, collaborate on files, and handle permissions via natural language. It supports multiple transport protocols and authentication methods to facilitate document workflow automation.
AutoLearn MCP Server
An MCP server that enables AI agents to dynamically create and reuse executable skills (Python functions) from natural language descriptions, with automatic skill crystallization and real-time MCP spec updates.
xls-mcp-servers
MCP server for reading and writing .xls (Excel 97-2003) files, enabling data manipulation, sheet listing, and metadata retrieval.
Uncover MCP
发现 MCP 服务器 (Fāxiàn MCP fúwùqì)
QR Code Generator MCP
Enables AI-powered generation of styled QR codes with 10 design presets, supporting single or batch creation with custom logos and formats (SVG/PNG) directly from AI tools.
Salesforce MCP Server
Enables authenticated interaction with Salesforce through OAuth Bearer token forwarding. Allows users to make API calls to Salesforce instances while maintaining secure session-based authentication throughout the MCP lifecycle.
Discord MCP Server
Enables interaction with Discord channels through a bot, allowing users to send messages and files, retrieve messages with advanced filtering, and download attachments of any type.
neko-browser
Headed Playwright browser MCP server with persistent profile, providing 23 tools for full browser automation while masking PII data.
Crowdlistening
Crowdlistening
writers-muse-mcp
一个MCP服务器,用于分析作者的写作风格并生成一篇博文。 (Alternatively, more literally: 一个分析作者写作风格并生成博文的MCP服务器。)
lilo-vacation-rentals
The only MCP server with AI guest risk scoring and extortion detection. Search properties, book instantly, protect hosts. 41 tools across 5 layers. Instant API key, 10 free credits.
SkillGuard
Enables scanning of Claude Code skills, plugins, or MCP servers for malware before installation via static analysis.