发现优秀的 MCP 服务器

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

全部14,589
Fillout.io MCP Server

Fillout.io MCP Server

镜子 (jìng zi)

MCP Server

MCP Server

GIS Data Conversion MCP

GIS Data Conversion MCP

An MCP server that gives LLMs access to geographic data conversion tools, enabling transformations between different formats like WKT, GeoJSON, CSV, TopoJSON, and KML, as well as performing reverse geocoding.

A-MEM MCP Server

A-MEM MCP Server

用于 Agentic Memory (A-MEM) 系统的内存控制协议 (MCP) 服务器 - 一个为 LLM 代理设计的灵活、动态的内存系统

Vue MCP Server

Vue MCP Server

通过 Model Context Protocol 服务器公开组件树、状态、路由和 Pinia 数据,为 Vue 应用提供应用程序洞察。

MCPs for sports

MCPs for sports

一个用于实时体育赛事的 MCP 服务器。

Semantic PostgreSQL MCP Server

Semantic PostgreSQL MCP Server

一个具备语义搜索功能的 PostgreSQL MCP 服务器,用于 AI 聊天机器人

Mcp Base

Mcp Base

寻找最佳 MCP 服务器的目录

TypeScript MCP with Filesystem Server and Ollama Integration

TypeScript MCP with Filesystem Server and Ollama Integration

一个 TypeScript 示例,展示了 Ollama 与模型上下文协议 (MCP) 的集成,特别是文件系统 MCP 服务器。 该项目为 AI 代理提供了一个交互式命令行界面,该代理可以使用文件系统工具。

Azure MCP Server

Azure MCP Server

一个用于与 Azure 交互的 MCP 服务器。包含一些常见的计算和网络操作,并且可以扩展以添加更多操作。

Meta Prompt MCP Server

Meta Prompt MCP Server

A server that transforms a standard Language Model into a dynamic multi-agent system where the model simulates both a Conductor (project manager) and Experts (specialized agents) to tackle complex problems through a collaborative workflow.

AlibabaCloud MCP Server

AlibabaCloud MCP Server

A server that provides access to Alibaba Cloud resources including ECS, VPC, and CloudMonitor through API and OOS implementations, enabling resource management and monitoring via a unified interface.

MCP Design System Extractor

MCP Design System Extractor

Server that enables AI assistants to interact with Storybook design systems. Extract component HTML, analyze styles, and help with design system adoption and refactoring.

pumpfun-wallets-mcp

pumpfun-wallets-mcp

An MCP server that analyzes wallets’ trading activity and profitability on Pump.fun and PumpSwap.

MCP JIRA Server

MCP JIRA Server

A Model Context Protocol server that enables AI assistants to create and manage JIRA issues with rich markdown formatting and automatic conversion to Atlassian Document Format.

CongressMCP

CongressMCP

An MCP server for the Congress.gov API that consolidates 91 operations into 6 comprehensive legislative tools that can be used by any MCP client (i.e. Claude Desktop), or MCP-compatible AI agent, to query and reason about congressional data.

安装必要的依赖

安装必要的依赖

一个 MCP 服务器,用于收集互联网上的 MCP 服务器。

Flutter Inspector MCP Server

Flutter Inspector MCP Server

一个模型上下文协议服务器,用于连接 Flutter 应用程序和 AI 编码助手,例如 Cursor、Claude 和 Cline,从而实现对 Widget 树、导航和布局问题的 AI 驱动分析。

MCP Server for Windsurf/Roocode

MCP Server for Windsurf/Roocode

用于 Windsurf 集成的模型上下文协议 (MCP) 服务器,具有图像生成和网页抓取功能。

Test Mcp Helloworld

Test Mcp Helloworld

Okay, here's a "Hello, world!" example for an MCP (Minecraft Coder Pack) server, along with explanations to help you understand it: **Explanation:** * **MCP (Minecraft Coder Pack):** MCP is a toolset that deobfuscates and decompiles the Minecraft source code, making it readable and modifiable. It's the foundation for creating Minecraft mods. This example assumes you have an MCP development environment set up. * **Server-Side Mod:** This example creates a simple server-side mod. This means the code runs on the Minecraft server, not on the client (player's computer). Server-side mods can affect gameplay, add new features, and manage the server environment. * **`FMLInitializationEvent`:** This event is fired during the server's initialization phase. It's a good place to register commands, load configurations, and perform other setup tasks. * **`MinecraftServer`:** This class represents the Minecraft server instance. You can access it to get information about the server, players, world, etc. * **`ServerCommandManager`:** This class manages the commands available on the server. We'll use it to register our "hello" command. * **`CommandBase`:** This is the base class for all commands. We'll extend it to create our custom "hello" command. * **`ICommandSender`:** This interface represents the entity that executed the command (e.g., a player, the console). * **`ChatMessageComponent`:** This class is used to create formatted chat messages. **Code Example (Java):** ```java package com.example.helloworld; import net.minecraft.command.CommandBase; import net.minecraft.command.ICommandSender; import net.minecraft.server.MinecraftServer; import net.minecraft.util.ChatComponentText; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLServerStartingEvent; @Mod(modid = "helloworld", name = "Hello World Mod", version = "1.0") public class HelloWorldMod { @Mod.EventHandler public void init(FMLInitializationEvent event) { System.out.println("Hello World Mod Initializing!"); } @Mod.EventHandler public void serverLoad(FMLServerStartingEvent event) { System.out.println("Registering command!"); event.registerServerCommand(new CommandHello()); } public static class CommandHello extends CommandBase { @Override public String getCommandName() { return "hello"; } @Override public String getCommandUsage(ICommandSender sender) { return "/hello"; } @Override public void processCommand(ICommandSender sender, String[] args) { sender.addChatMessage(new ChatComponentText("Hello, world!")); } @Override public int getRequiredPermissionLevel() { return 0; // Everyone can use this command } } } ``` **Steps to Use:** 1. **Set up your MCP environment:** Follow the instructions for setting up MCP for your Minecraft version. 2. **Create the Java file:** Create a new Java file named `HelloWorldMod.java` (or whatever you prefer) in your mod's source directory (e.g., `src/main/java/com/example/helloworld`). Paste the code above into the file. Make sure the package name (`com.example.helloworld`) matches your directory structure. 3. **Create `mcmod.info`:** Create a file named `mcmod.info` in the `src/main/resources` directory. This file provides metadata about your mod. A simple example: ```json [ { "modid": "helloworld", "name": "Hello World Mod", "description": "A simple Hello World mod for Minecraft.", "version": "1.0", "mcversion": "1.12.2", // Replace with your Minecraft version "authorList": ["Your Name"] } ] ``` 4. **Recompile and Reobfuscate:** Use the MCP commands to recompile and reobfuscate the code. This will create the mod file. Typically, you'll use commands like: ```bash ./gradlew build ``` (or the equivalent commands for your MCP setup). The resulting mod file will be in the `build/libs` directory. 5. **Install the Mod:** Copy the generated `.jar` file (e.g., `helloworld-1.0.jar`) to the `mods` folder of your Minecraft server. 6. **Run the Server:** Start your Minecraft server. 7. **Use the Command:** In the Minecraft server console or in-game (if you have operator privileges), type `/hello` and press Enter. You should see the message "Hello, world!" in the chat. **Important Notes:** * **Minecraft Version:** Make sure the code is compatible with the Minecraft version you are using. The `@Mod` annotation and the `mcmod.info` file should reflect the correct version. * **Dependencies:** Ensure that your MCP environment is set up correctly with the necessary dependencies (Minecraft Forge). * **Error Handling:** This is a very basic example. In a real mod, you would want to add error handling and more robust code. * **Permissions:** The `getRequiredPermissionLevel()` method determines who can use the command. `0` means everyone. Higher numbers require operator privileges. **Chinese Translation (Simplified Chinese):** ```java package com.example.helloworld; import net.minecraft.command.CommandBase; import net.minecraft.command.ICommandSender; import net.minecraft.server.MinecraftServer; import net.minecraft.util.ChatComponentText; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLServerStartingEvent; @Mod(modid = "helloworld", name = "你好世界模组", version = "1.0") public class HelloWorldMod { @Mod.EventHandler public void init(FMLInitializationEvent event) { System.out.println("你好世界模组正在初始化!"); } @Mod.EventHandler public void serverLoad(FMLServerStartingEvent event) { System.out.println("注册命令!"); event.registerServerCommand(new CommandHello()); } public static class CommandHello extends CommandBase { @Override public String getCommandName() { return "hello"; } @Override public String getCommandUsage(ICommandSender sender) { return "/hello"; } @Override public void processCommand(ICommandSender sender, String[] args) { sender.addChatMessage(new ChatComponentText("你好,世界!")); } @Override public int getRequiredPermissionLevel() { return 0; // 所有人都可以使用这个命令 } } } ``` **Chinese Explanation:** * `你好世界模组 (Nǐ hǎo shìjiè mózǔ)`: Hello World Mod * `你好世界模组正在初始化! (Nǐ hǎo shìjiè mózǔ zhèngzài chūshǐhuà!)`: Hello World Mod is initializing! * `注册命令! (Zhùcè mìnglìng!)`: Registering command! * `你好,世界! (Nǐ hǎo, shìjiè!)`: Hello, world! * `所有人都可以使用这个命令 (Suǒyǒu rén dōu kěyǐ shǐyòng zhège mìnglìng)`: Everyone can use this command. The Chinese version changes the mod name and the chat message to Chinese. The command name remains "hello" because that's what the player will type. The comments are also translated to Chinese to help understand the code. Remember to save the Java file with UTF-8 encoding to properly display Chinese characters.

Mixpanel MCP Server

Mixpanel MCP Server

A Model Context Protocol server that enables AI assistants like Claude to interact with Mixpanel analytics, allowing them to track events, page views, user signups, and update user profiles directly through natural language requests.

Weather MCP Server

Weather MCP Server

一个天气 MCP 服务器,使用国家气象局 API 提供天气预报和警报。

AOAI Dalle3 MCP Server

AOAI Dalle3 MCP Server

EduChain MCP Integration Server

EduChain MCP Integration Server

An MCP-compatible Flask server that integrates with the educhain Python library to dynamically generate educational content for Claude Desktop, including multiple-choice questions, lesson plans, and flashcards.

棒読みちゃんMCPサーバー (Node.js版)

棒読みちゃんMCPサーバー (Node.js版)

A Node.js server that enables AI assistants to interact with Bouyomi-chan's text-to-speech functionality through Model Context Protocol (MCP), allowing for voice reading of text with adjustable parameters.

Unsplash MCP Server

Unsplash MCP Server

一个 Swift 版本的 hellokaton/unsplash-mcp-server,并添加了诸如 get_photo 和 random_photo 等额外功能。

Moliverse

Moliverse

将转换工具代理到 MCP 服务器

MCP Apple Mail

MCP Apple Mail

Enables integration with Apple Mail on macOS using JavaScript for Automation (JXA). Supports reading, searching, sending, and managing emails across multiple accounts with full mailbox hierarchy support.

NocoDB MCP Server

NocoDB MCP Server

Enables direct integration with NocoDB databases from Cursor IDE, providing complete CRUD operations, search capabilities, and specialized tools for Discord workflow automation. Features production-ready deployment with Docker support and comprehensive monitoring.

bluesky-daily-mcp

bluesky-daily-mcp

一个 MCP 服务器,可以帮助你每天从你关注的 Bluesky 用户中发现最有趣的话题。