Discover Awesome MCP Servers

Extend your agent with 24,278 capabilities via MCP servers.

All24,278
MCP サーバー/クライアント サンプル

MCP サーバー/クライアント サンプル

Mingli MCP Server

Mingli MCP Server

Enables AI tools to perform Chinese fortune-telling analysis including Ziwei Doushu (Purple Star Astrology) and Bazi (Four Pillars) chart generation, fortune reading, and element analysis. Supports multiple calendar systems and output formats for comprehensive divination services.

MCP Puppet Pipeline

MCP Puppet Pipeline

Enables browser automation and AI-driven workflows through Puppeteer integration, with file management, agent coordination, and QNAP network storage support.

Consult LLM MCP

Consult LLM MCP

An MCP server that lets Claude Code consult stronger AI models (o3, Gemini 2.5 Pro, DeepSeek Reasoner) when you need deeper analysis on complex problems.

Mailbox.org MCP Server

Mailbox.org MCP Server

Integrates mailbox.org email and calendar services with Claude, enabling email search, composition, management, calendar access, and Sieve email filter configuration through a secure, locally-hosted interface.

Playwright HTML Render

Playwright HTML Render

Enables HTML page analysis, verification, and automated correction using Playwright for rendering and Mistral AI for visual inspection. Captures screenshots, analyzes renders against specifications, and generates fixes for HTML issues.

MCP Server - VSCode Tutorial

MCP Server - VSCode Tutorial

Okay, here's a breakdown of how to build an MCP (Minecraft Coder Pack) server and use VS Code as an MCP client, translated into Chinese. I'll focus on clarity and accuracy for a Chinese-speaking audience familiar with programming concepts. **标题: 构建 MCP 服务器并使用 VS Code 作为 MCP 客户端的教程** **简介:** 本教程将指导您如何搭建一个 Minecraft Coder Pack (MCP) 服务器,并配置 Visual Studio Code (VS Code) 作为 MCP 客户端,以便进行 Minecraft Mod 开发。 MCP 提供反编译、反混淆和重新编译 Minecraft 代码的工具,使 Mod 开发更加容易。 VS Code 作为一个强大的代码编辑器,可以与 MCP 集成,提供代码补全、调试等功能。 **第一部分: 安装和配置 MCP 服务器** 1. **下载 MCP:** * **中文:** 从 MCP 的官方网站或可靠的第三方资源下载最新版本的 MCP。 确保下载的版本与您要修改的 Minecraft 版本相对应。 * **英文:** Download the latest version of MCP from the official MCP website or a reliable third-party source. Make sure the version you download corresponds to the Minecraft version you want to modify. 2. **解压 MCP:** * **中文:** 将下载的 MCP 压缩包解压到一个合适的目录。 建议创建一个专门用于 MCP 的文件夹,例如 `C:\mcp`. * **英文:** Extract the downloaded MCP archive to a suitable directory. It is recommended to create a dedicated folder for MCP, such as `C:\mcp`. 3. **配置 MCP:** * **中文:** 打开 MCP 目录下的 `mcp.cfg` 文件。 这个文件包含了 MCP 的配置信息。 * **英文:** Open the `mcp.cfg` file in the MCP directory. This file contains the MCP configuration information. * **中文:** 在 `mcp.cfg` 文件中,找到 `MinecraftVersion` 选项,并将其设置为您要修改的 Minecraft 版本。 例如: `MinecraftVersion = 1.19.2` * **英文:** In the `mcp.cfg` file, find the `MinecraftVersion` option and set it to the Minecraft version you want to modify. For example: `MinecraftVersion = 1.19.2` * **中文:** 根据您的需求,修改其他配置选项。 例如,您可以设置 `ClientPath` 和 `ServerPath` 来指定 Minecraft 客户端和服务器的路径(如果 MCP 无法自动找到它们)。 * **英文:** Modify other configuration options according to your needs. For example, you can set `ClientPath` and `ServerPath` to specify the paths to the Minecraft client and server (if MCP cannot find them automatically). 4. **运行 MCP:** * **中文:** 打开命令提示符或终端,导航到 MCP 目录。 * **英文:** Open a command prompt or terminal and navigate to the MCP directory. * **中文:** 运行 `./gradlew setupDecompWorkspace` 命令。 这个命令会下载 Minecraft 客户端和服务器,并反编译它们。 这个过程可能需要一些时间。 * **英文:** Run the `./gradlew setupDecompWorkspace` command. This command will download the Minecraft client and server and decompile them. This process may take some time. * **中文:** 运行 `./gradlew eclipse` 或 `./gradlew idea` 命令,根据您使用的 IDE 生成 Eclipse 或 IntelliJ IDEA 项目文件。 虽然我们使用 VS Code,但生成这些文件可以帮助 MCP 更好地组织代码。 * **英文:** Run the `./gradlew eclipse` or `./gradlew idea` command to generate Eclipse or IntelliJ IDEA project files, depending on the IDE you are using. Although we are using VS Code, generating these files can help MCP better organize the code. **第二部分: 配置 VS Code 作为 MCP 客户端** 1. **安装 Java Development Kit (JDK):** * **中文:** 确保您的系统上安装了 JDK。 VS Code 需要 JDK 来编译 Java 代码。 建议安装与您要修改的 Minecraft 版本兼容的 JDK 版本。 * **英文:** Make sure you have the JDK installed on your system. VS Code needs the JDK to compile Java code. It is recommended to install a JDK version compatible with the Minecraft version you want to modify. 2. **安装 VS Code 扩展:** * **中文:** 在 VS Code 中,安装以下扩展: * **Java Extension Pack:** 提供 Java 开发所需的基本功能,例如代码补全、调试等。 * **Gradle Language Support:** 提供 Gradle 构建文件的语法高亮和代码补全。 * **英文:** In VS Code, install the following extensions: * **Java Extension Pack:** Provides basic functions required for Java development, such as code completion, debugging, etc. * **Gradle Language Support:** Provides syntax highlighting and code completion for Gradle build files. 3. **导入 MCP 项目到 VS Code:** * **中文:** 在 VS Code 中,选择 "文件" -> "打开文件夹",然后选择 MCP 目录下的 `eclipse` 或 `idea` 文件夹(取决于您之前运行的 Gradle 命令)。 * **英文:** In VS Code, select "File" -> "Open Folder", and then select the `eclipse` or `idea` folder under the MCP directory (depending on the Gradle command you ran earlier). 4. **配置 VS Code 的 Java 设置:** * **中文:** 打开 VS Code 的设置 (文件 -> 首选项 -> 设置)。 * **英文:** Open VS Code settings (File -> Preferences -> Settings). * **中文:** 搜索 "java.home",并将其设置为您的 JDK 安装目录。 * **英文:** Search for "java.home" and set it to your JDK installation directory. 5. **开始 Mod 开发:** * **中文:** 现在,您可以在 VS Code 中浏览和修改 Minecraft 的源代码。 MCP 会自动处理反编译和反混淆的代码,使代码更易于理解。 * **英文:** Now you can browse and modify the Minecraft source code in VS Code. MCP automatically handles the decompiled and deobfuscated code, making the code easier to understand. * **中文:** 您可以在 `src/main/java` 目录下创建您的 Mod 类。 * **英文:** You can create your Mod classes in the `src/main/java` directory. 6. **构建和运行 Mod:** * **中文:** 在 VS Code 的终端中,导航到 MCP 目录。 * **英文:** In the VS Code terminal, navigate to the MCP directory. * **中文:** 运行 `./gradlew build` 命令来构建您的 Mod。 * **英文:** Run the `./gradlew build` command to build your Mod. * **中文:** 构建完成后,您的 Mod 将位于 `build/libs` 目录下。 * **英文:** After the build is complete, your Mod will be located in the `build/libs` directory. * **中文:** 将您的 Mod 文件复制到 Minecraft 的 `mods` 文件夹中。 * **英文:** Copy your Mod file to the Minecraft `mods` folder. * **中文:** 启动 Minecraft 并测试您的 Mod。 * **英文:** Launch Minecraft and test your Mod. **注意事项:** * **中文:** MCP 的配置和使用可能比较复杂,请仔细阅读 MCP 的文档和教程。 * **英文:** MCP configuration and usage can be complex, please read the MCP documentation and tutorials carefully. * **中文:** 确保您的 JDK 版本与 Minecraft 版本兼容。 * **英文:** Make sure your JDK version is compatible with the Minecraft version. * **中文:** 如果遇到问题,请查阅 MCP 的论坛或社区寻求帮助。 * **英文:** If you encounter problems, consult the MCP forum or community for help. * **中文:** Gradle 构建过程可能需要下载大量的依赖项,请确保您的网络连接稳定。 * **英文:** The Gradle build process may require downloading a large number of dependencies, please ensure your network connection is stable. **总结:** 本教程介绍了如何搭建 MCP 服务器并使用 VS Code 作为 MCP 客户端。 通过这种方式,您可以更方便地进行 Minecraft Mod 开发。 希望本教程对您有所帮助! This translation aims to be clear, accurate, and helpful for Chinese-speaking developers. It includes explanations of the purpose of each step and provides context for better understanding. Good luck with your modding!

AnyList MCP Server

AnyList MCP Server

Enables AI assistants to interact with AnyList for managing shopping lists, recipes, and meal planning. Users can retrieve recipe details, add ingredients to lists, and schedule meals on their AnyList calendar.

MCPKG - Model Context Protocol Knowledge Graph

MCPKG - Model Context Protocol Knowledge Graph

一个 MCP (模型上下文协议) 服务器,它公开了用于与知识图谱交互的原语。

Prometheus MCP Server

Prometheus MCP Server

Enables AI assistants to query Prometheus metrics, monitor alerts, and analyze system health through read-only access to your Prometheus server with built-in query safety and optional AI-powered metric analysis.

Todoist MCP Server

Todoist MCP Server

Enables AI assistants to manage Todoist tasks, projects, sections, and labels through natural language, supporting task creation, updates, completion, and intelligent organization of your workflow.

Python MCP Korea Weather Service

Python MCP Korea Weather Service

MCP server that provides Korean weather information using grid coordinates and the Korea Meteorological Administration API, allowing users to query current weather conditions and forecasts for specific locations in Korea.

MCP SSH Server with Streamable HTTP

MCP SSH Server with Streamable HTTP

Enables remote server control via SSH through Claude, supporting command execution, file transfers, and multi-server management with both standard and streamable HTTP protocols.

mcp-server-zep-cloud

mcp-server-zep-cloud

mcp-server-zep-cloud

Aladin Book Search MCP Server

Aladin Book Search MCP Server

MCP server that allows searching and retrieving book information from Aladin's book store API, including book details, bestseller lists, and category-based searches.

PubMed MCP Server

PubMed MCP Server

Cursorshare

Cursorshare

Collective Brain MCP Server

Collective Brain MCP Server

Enables teams to create a shared knowledge base where members can store, search, and validate information collectively. Provides semantic search across team memories with granular permissions and collaborative verification features.

GPTers Search MCP Server

GPTers Search MCP Server

这是一个 MCP 服务器,用于搜索 GPTers AI 学习社区的知识。

MCP TypeScript Demo Server

MCP TypeScript Demo Server

A TypeScript implementation of the Model Context Protocol server that enables searching arXiv papers and extracting paper information through standardized client-server communication.

HPC-MCP

HPC-MCP

A server that provides Model Control Protocol (MCP) tools for High Performance Computing, designed to integrate with Large Language Models in IDEs like Cursor and VSCode for debugging and other HPC tasks.

Weather MCP Server

Weather MCP Server

Enables users to get real-time weather data for any city and generate broadcast-style weather news reports. Uses the OpenMeteo API to provide current weather conditions including temperature, humidity, and weather descriptions.

Sentice MCP Server

Sentice MCP Server

Provides user balance information by connecting to a backend service through the users_balance tool. Built with TypeScript and Express for retrieving financial data.

Weather MCP Server

Weather MCP Server

Enables real-time weather information retrieval and local search history management using Open Meteo APIs. Allows users to get current weather data for any city and access their weather query history through natural language.

MySQL MCP Server

MySQL MCP Server

Provides MySQL database integration for AI assistants and other MCP clients, allowing them to list tables, read table data, and execute SQL queries.

AWS MCP Server

AWS MCP Server

Provides read-only access to AWS resources including S3 buckets, EC2 instances, IAM users, and caller identity verification through the Model Context Protocol.

Fusion 360 MCP Server

Fusion 360 MCP Server

一个用于 Autodesk Fusion 的模型上下文协议 (MCP) 服务器,它向 AI 客户端(例如 Claude 或 Cursor)提供来自 ADSK 的资源和工具。

BlenderMCP

BlenderMCP

Connects Blender to Claude AI through the Model Context Protocol, enabling AI-assisted 3D modeling, scene creation, object manipulation, and material control. Supports asset integration from Poly Haven and AI-generated 3D models through Hyper3D Rodin.

Test MCP Server

Test MCP Server

A dual-transport MCP server that exposes your API as tools to LLM clients, supporting both stdio transport for local clients like Claude Desktop and HTTP/SSE transport for remote clients like OpenAI's Responses API.

Xero MCP Server by CData

Xero MCP Server by CData

Xero MCP Server by CData