Discover Awesome MCP Servers

Extend your agent with 17,166 capabilities via MCP servers.

All17,166
DynamoDB Read-Only MCP

DynamoDB Read-Only MCP

一个服务器,使像 Claude 这样的大型语言模型 (LLM) 能够通过自然语言请求查询 AWS DynamoDB 数据库,支持表管理、数据查询和模式分析。

Hologres MCP Server

Hologres MCP Server

一个通用接口,使AI Agent能够与Hologres数据库进行通信,从而检索数据库元数据并执行SQL操作。

Time

Time

Filesystem MCP Server

Filesystem MCP Server

LocaLLama MCP Server

LocaLLama MCP Server

一个与 Roo Code/Cline.Bot/Claude Desktop 协同工作的 MCP 服务器,通过智能地在本地 LLM、免费 API 和付费 API 之间路由编码任务来优化成本。

MCP Servers

MCP Servers

Arbitrum MCP Server

Arbitrum MCP Server

一个模型上下文协议 (MCP) 服务器,它使用 Arbiscan API 和 Claude AI 提供实时的 Arbitrum 区块链数据分析。

Github MCP Server

Github MCP Server

镜子 (jìng zi)

Dockerized GitHub MCP Server

Dockerized GitHub MCP Server

这是本地的 MCP 服务器。 (Zhè shì běndì de MCP fúwùqì.)

Ansible Tower MCP Server

Ansible Tower MCP Server

Ansible Tower 的 MCP 服务器

Langfuse Prompt Management MCP Server

Langfuse Prompt Management MCP Server

镜子 (jìng zi)

Playwright MCP

Playwright MCP

Playwright MCP 服务器通过允许与网页交互和元素检查,从而实现 AI 驱动的 Playwright 测试生成。它与 Cursor 等 IDE 集成,提供实时上下文,以提高测试的准确性和效率。

Local
MCP-Wikipedia-API-Server

MCP-Wikipedia-API-Server

一个 FastAPI-MCP 服务器,用于为 AI 助手获取维基百科摘要,使用 Google Colab 和 Ngrok 部署。

Alpha Vantage MCP Server 📈

Alpha Vantage MCP Server 📈

一个 MCP 服务器,提供与 Alpha Vantage API 的实时金融数据集成,从而能够访问股票市场数据、加密货币价格、外汇汇率和技术指标。

MCP Server

MCP Server

YouTube MCP Server

YouTube MCP Server

能够与 YouTube 视频互动,通过提取元数据、多种语言的字幕,并将内容转换为带有各种模板的 Markdown 格式。

🤖 MCPServe by @ryaneggz

🤖 MCPServe by @ryaneggz

简单 MCP 服务器,带 Shell 执行功能。通过 Ngrok 连接本地,或通过 Docker 托管 Ubuntu24 容器。

Mcp_server_client_assessment

Mcp_server_client_assessment

Booking System (Fixed)

Booking System (Fixed)

集成了 Google 日历、邮件确认和 MCP 服务器的固定预订系统

SEO Tools MCP Server

SEO Tools MCP Server

使大型语言模型能够通过自然语言与 DataForSEO 和其他 SEO API 交互,从而实现关键词研究、SERP 分析、反向链接分析和本地 SEO 任务。

Superset MCP Integration

Superset MCP Integration

MCP服务器支持AI代理以编程方式连接和控制Apache Superset实例,允许用户通过自然语言交互来管理仪表板、图表、数据库、数据集以及运行SQL查询。

Weather MCP Server

Weather MCP Server

Okay, here's an example of creating an MCP (Minecraft Coder Pack) server setup. This focuses on the core steps and assumes you have some basic familiarity with command lines and file management. Keep in mind that MCP is primarily used for *mod development*, not for running a standard Minecraft server. This setup is to allow you to decompile, modify, and recompile the Minecraft server code. **Important Considerations:** * **MCP is for Mod Development, Not Server Hosting:** MCP is designed to let you *modify* the Minecraft code. It's not a replacement for a standard Minecraft server (like the official server.jar or a Spigot/Paper server). You'll use MCP to change the code, then build a modified server jar. * **Minecraft Version Compatibility:** MCP is tied to specific Minecraft versions. You *must* use the correct MCP version for the Minecraft version you want to work with. Using the wrong versions will lead to errors. * **Legality:** You are allowed to modify the Minecraft code for personal use and mod development. Distributing the *original* Minecraft code (even modified) is generally not allowed. You can distribute your *mod* (the changes you made). * **Complexity:** Mod development with MCP is a complex process. This example provides a basic outline. Expect to encounter challenges and consult the MCP documentation and community resources. **Steps (Simplified):** 1. **Download MCP:** * Go to a reliable source for MCP downloads. A common place is often linked from the MinecraftForge forums or related modding communities. Search for "MCP [Minecraft Version]" (e.g., "MCP 1.19.2"). Make sure you download the correct version for the Minecraft version you want to mod. * Extract the downloaded MCP archive (usually a `.zip` or `.tar.gz` file) to a directory on your computer. For example, `C:\mcp` (Windows) or `/home/user/mcp` (Linux/macOS). This directory will be your MCP working directory. 2. **Download the Minecraft Server Jar:** * Download the official Minecraft server `.jar` file from the Minecraft website ([https://www.minecraft.net/en-us/download/server](https://www.minecraft.net/en-us/download/server)). Make sure it's the same version as the MCP version you downloaded. * Place the server `.jar` file in the `jars` subdirectory within your MCP directory. For example, `C:\mcp\jars\server.jar`. Rename the server jar to `minecraft_server.jar`. 3. **Configure MCP ( `mcp.cfg` ):** * Open the `mcp.cfg` file in your MCP directory with a text editor. * **Important:** Verify that the `MinecraftVersion` setting in `mcp.cfg` matches the Minecraft version of your server jar. If it doesn't, change it. For example: ``` MinecraftVersion = 1.19.2 ``` * You might need to adjust other settings in `mcp.cfg` depending on your specific needs and the MCP version. Refer to the MCP documentation for details. 4. **Decompile Minecraft:** * Open a command prompt or terminal. * Navigate to your MCP directory using the `cd` command. For example: ```bash cd C:\mcp (Windows) cd /home/user/mcp (Linux/macOS) ``` * Run the `decompile.sh` (Linux/macOS) or `decompile.bat` (Windows) script. This will decompile the Minecraft server code. ```bash ./decompile.sh (Linux/macOS) decompile.bat (Windows) ``` * **This step takes a significant amount of time (minutes to hours), depending on your computer and the Minecraft version.** Be patient. Watch the output in the command prompt/terminal for any errors. If you encounter errors, carefully read the error messages and consult the MCP documentation or online forums for solutions. Common errors are related to incorrect Java versions or missing dependencies. 5. **Understanding the Decompiled Code:** * After successful decompilation, the decompiled source code will be located in the `src/minecraft_server` directory within your MCP directory. * The code is organized into packages and classes, mirroring the structure of the original Minecraft code. * **Important:** The decompiled code is often obfuscated (variable and method names are meaningless). MCP uses mappings (stored in `.csv` files) to deobfuscate the code, making it more readable. 6. **Modifying the Code (Example):** * Open the `src/minecraft_server` directory in your IDE (Integrated Development Environment) like Eclipse or IntelliJ IDEA. You'll need to configure your IDE to use the MCP project structure. This usually involves creating a new project and importing the `src/minecraft_server` directory as the source folder. * **Example:** Let's say you want to change the default message that appears when a player joins the server. You would need to find the relevant class and method that handles player joining and modify the string that is sent to the player. This requires understanding the Minecraft server code. * **Important:** Make small, incremental changes and test frequently. It's easy to introduce errors that can prevent the server from starting or cause unexpected behavior. 7. **Recompiling and Reobfuscating:** * After making your changes, you need to recompile the code and reobfuscate it (convert it back to the original obfuscated form). * In your command prompt/terminal (still in the MCP directory), run the `recompile.sh` (Linux/macOS) or `recompile.bat` (Windows) script. ```bash ./recompile.sh (Linux/macOS) recompile.bat (Windows) ``` * If the recompilation is successful, run the `reobfuscate.sh` (Linux/macOS) or `reobfuscate.bat` (Windows) script. ```bash ./reobfuscate.sh (Linux/macOS) reobfuscate.bat (Windows) ``` * These steps will create a new, modified server `.jar` file in the `reobf/minecraft_server.jar` directory. 8. **Testing Your Modified Server:** * Copy the `reobf/minecraft_server.jar` file to a new directory where you want to run your modified server. * Create an `eula.txt` file in that directory and set `eula=true`. * Run the modified server jar: ```bash java -jar minecraft_server.jar ``` * Connect to your server using the Minecraft client and test your changes. **Example `mcp.cfg` (Illustrative):** ``` # Configuration file for MCP # Minecraft Version MinecraftVersion = 1.19.2 # Java location # If not set, MCP will try to find it in your PATH #JavaDir = C:\Program Files\Java\jdk1.8.0_201 # Options for the decompile process Decompile = true Recompile = true Reobfuscate = true # Location of the Minecraft server jar ServerJar = jars/minecraft_server.jar # Location of the Minecraft client jar (optional) ClientJar = jars/minecraft_client.jar # Location of the mappings #Mappings = conf/server.srg # Output directories OutputDir = bin ReobfDir = reobf SourceDir = src # Logging level (DEBUG, INFO, WARN, ERROR) LogLevel = INFO ``` **Chinese Translation of Key Terms:** * **MCP (Minecraft Coder Pack):** Minecraft 代码包 (Minecraft Dàimǎ Bāo) * **Decompile:** 反编译 (Fǎnbiānyì) * **Recompile:** 重新编译 (Chóngxīn Biānyì) * **Reobfuscate:** 重新混淆 (Chóngxīn Hùnxiáo) * **Server Jar:** 服务器 Jar 文件 (Fúwùqì Jar Wénjiàn) * **Mappings:** 映射 (Yìngshè) * **Source Code:** 源代码 (Yuán Dàimǎ) * **Mod:** 模组 (Mózǔ) **Important Notes and Troubleshooting:** * **Java Version:** MCP often requires a specific Java version (usually Java 8 or Java 17, depending on the Minecraft version). Make sure you have the correct Java Development Kit (JDK) installed and that your `JAVA_HOME` environment variable is set correctly. The `mcp.cfg` file may have a `JavaDir` setting you need to adjust. * **Errors During Decompilation/Recompilation:** Carefully read the error messages. Common causes include: * Incorrect Java version * Missing dependencies * Corrupted server jar file * Incorrect MCP version for the Minecraft version * **IDE Setup:** Configuring your IDE (Eclipse, IntelliJ IDEA) correctly is crucial for mod development. Refer to the MCP documentation and tutorials for instructions on setting up your IDE. * **MCP Documentation:** The official MCP documentation (if available for your version) is your best resource for detailed information and troubleshooting. * **Community Forums:** The MinecraftForge forums and other modding communities are excellent places to ask questions and get help from experienced modders. This is a simplified example. Mod development with MCP is a complex and challenging process. Be prepared to spend time learning and troubleshooting. Good luck!

Rootly MCP Server

Rootly MCP Server

从你的 IDE 管理事件。一个 MCP 服务器,允许使用 Rootly API 拉取事件及其相关的元数据。

Google Tasks MCP Server

Google Tasks MCP Server

一个模型上下文协议服务器,将 Claude 与 Google Tasks 连接起来,允许用户直接通过 Claude 界面管理任务列表和任务。 (Alternatively, a slightly more formal translation:) 一个模型上下文协议服务器,用于连接 Claude 和 Google Tasks,使用户能够直接通过 Claude 界面管理任务列表和任务。

search-fetch-server MCP Server

search-fetch-server MCP Server

镜子 (jìng zi)

YouTube transcript extractor for your LLM

YouTube transcript extractor for your LLM

This could be translated in a few ways, depending on the nuance you want to convey. Here are a few options: **Option 1 (Most straightforward and likely best):** * **Simplified Chinese:** 下载 YouTube 字幕的 MCP 服务器 (Xiàzài YouTube zìmù de MCP fúwùqì) * **Traditional Chinese:** 下載 YouTube 字幕的 MCP 伺服器 (Xiàzài YouTube zìmù de MCP sìfúqì) * This is a direct translation. "下载 (xiàzài)" means "download," "YouTube" is the same, "字幕 (zìmù)" means "subtitles/captions/transcripts," and "服务器 (fúwùqì/sìfúqì)" means "server." "MCP" is left as is, assuming it's an acronym that doesn't need translation. **Option 2 (More descriptive, emphasizing the function):** * **Simplified Chinese:** 用于下载 YouTube 字幕的 MCP 服务器 (Yòng yú xiàzài YouTube zìmù de MCP fúwùqì) * **Traditional Chinese:** 用於下載 YouTube 字幕的 MCP 伺服器 (Yòng yú xiàzài YouTube zìmù de MCP sìfúqì) * This adds "用于 (yòng yú)" which means "used for" or "for the purpose of." It makes the purpose of the server slightly clearer. **Option 3 (More technical, if the audience is technical):** * **Simplified Chinese:** 用于 YouTube 字幕下载的 MCP 服务器 (Yòng yú YouTube zìmù xiàzài de MCP fúwùqì) * **Traditional Chinese:** 用於 YouTube 字幕下載的 MCP 伺服器 (Yòng yú YouTube zìmù xiàzài de MCP sìfúqì) * This uses "字幕下载 (zìmù xiàzài)" which is a more technical term for "subtitle download." **Which one to choose?** * **Option 1 is generally the best choice** unless you have a specific reason to use the others. It's clear, concise, and accurate. * If you want to emphasize the *purpose* of the server, use Option 2. * If you're talking to a technical audience, Option 3 might be appropriate. **Important Considerations:** * **MCP:** If "MCP" is an acronym that has a well-known Chinese translation in your specific context, you should use that translation instead of leaving it as "MCP." Without knowing what MCP stands for, I can't provide a better translation. * **Simplified vs. Traditional:** Choose the appropriate character set based on your target audience (Mainland China uses Simplified Chinese, while Taiwan, Hong Kong, and Macau primarily use Traditional Chinese). Therefore, my recommendation is: **Simplified Chinese:** 下载 YouTube 字幕的 MCP 服务器 **Traditional Chinese:** 下載 YouTube 字幕的 MCP 伺服器

MCP-SSE3

MCP-SSE3

从 MCP 服务器演示创建。

🔗 GitHub MCP Server for Claude Desktop

🔗 GitHub MCP Server for Claude Desktop

将 Claude Desktop 连接到 GitHub 仓库,使用户能够通过自然对话执行 git 操作和 GitHub API 交互。

mcp-server-ntopng

mcp-server-ntopng

用于网络监控软件 ntopng 的 MCP 服务器。

UI-TARS Desktop

UI-TARS Desktop

一个基于 UI-TARS (视觉-语言模型) 的 GUI 代理应用程序,它允许你使用自然语言来控制你的电脑。