Discover Awesome MCP Servers

Extend your agent with 53,204 capabilities via MCP servers.

All53,204
Superset MCP Integration

Superset MCP Integration

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

Alpha Vantage MCP Server 📈

Alpha Vantage MCP Server 📈

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

🤖 MCPServe by @ryaneggz

🤖 MCPServe by @ryaneggz

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

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!

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 服务器演示创建。

MCP-Wikipedia-API-Server

MCP-Wikipedia-API-Server

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

Playwright MCP

Playwright MCP

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

Local
Google Tasks MCP Server

Google Tasks MCP Server

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

Twitch MCP Server

Twitch MCP Server

镜子 (jìng zi)

Chargebee

Chargebee

pactly-mcp-server

pactly-mcp-server

mcp-slack

mcp-slack

适用于 Slack 的 MCP 服务器

Semantic Scholar API MCP server

Semantic Scholar API MCP server

语义学者的MCP服务器,用于搜索论文。

model-context-protocol-templates

model-context-protocol-templates

MCP 模板和指南集合,用于快速开发 Model Context Protocol (MCP) 服务器。

Mavae Image Toolbox

Mavae Image Toolbox

MAVAE IMAGE TOOLBOX 是一个模型上下文协议 (MCP) 服务器,用于与图像媒体工具进行交互。🚀 图像生成 | 🚀 图像编辑 | 🚀 收藏管理 | 🚀 模型和 Lora 管理

Puppeteer-Extra MCP Server

Puppeteer-Extra MCP Server

一个模型上下文协议(Model Context Protocol)服务器,它使用带有 Stealth 插件的 Puppeteer-Extra 提供增强的浏览器自动化功能,使大型语言模型(LLMs)能够以更贴近人类行为的方式与网页交互,并避免被检测为自动化程序。

MCP SSH Server

MCP SSH Server

镜子 (jìng zi)

Amazon Ads Manager MCP Server

Amazon Ads Manager MCP Server

MySQL MCP Server

MySQL MCP Server

🚀 MCP Server with Docker, Redis, and TimescaleDB

🚀 MCP Server with Docker, Redis, and TimescaleDB

使用 Docker 部署 MCP 服务器,包含 Redis 和 TimescaleDB

Untappd Model Context Protocol Server

Untappd Model Context Protocol Server

一个模型上下文协议服务器,允许 Claude 查询 Untappd 啤酒数据库 API,以搜索啤酒并检索详细的啤酒信息。

OpenSearch MCP Server

OpenSearch MCP Server

一个模型上下文协议(Model Context Protocol)服务器实现,它能够实现与 OpenSearch 集群的自然语言交互,允许用户通过简单的对话式命令来搜索文档、分析索引和管理集群。

Flux Image Generator

Flux Image Generator

一个 MCP 服务器,它使用黑森林实验室 (Black Forest Lab) 的 FLUX 模型,根据文本提示生成图像,并允许自定义图像尺寸、提示词放大 (upsampling)、安全设置和批量生成。

SQLite MCP Server

SQLite MCP Server

镜子 (jìng zi)

MCP Tool Template

MCP Tool Template

使用 MCP 服务器模板

Testing-of-FakePixelPe-Mcpe-Server

Testing-of-FakePixelPe-Mcpe-Server

我是阿比南达,我是这个项目的主要负责人。我正在尝试在 MCPE 中创建一个像 Hypixel 这样的服务器,使用私有和公共+付费插件。

Browse your entire Notion workspace, not just one database

Browse your entire Notion workspace, not just one database

这个基于 TypeScript 的 MCP 服务器允许用户通过使用模型上下文协议 (MCP) 创建和总结文本笔记来管理一个简单的笔记系统。

Party Time MCP Server

Party Time MCP Server

一个简单的简易 MCP 服务器。

mcp-server-ntopng

mcp-server-ntopng

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