发现优秀的 MCP 服务器

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

全部16,289
Resume Parser MCP

Resume Parser MCP

Enables parsing of raw resume text into structured JSON format with organized sections for skills, experience, education, and projects. Uses Google's Gemini AI model to extract and categorize resume information from unstructured text input.

FastAPI MCP Server

FastAPI MCP Server

A production-ready Model Context Protocol server built with FastAPI, featuring JWT authentication, PostgreSQL database support, Redis caching, and comprehensive health monitoring for building secure async API applications.

RanchHand

RanchHand

Enables interaction with OpenAI-compatible APIs (like Ollama) through MCP tools. Provides access to chat completions, model listings, and embeddings generation from local or remote OpenAI-style endpoints.

MCP Server Boilerplate

MCP Server Boilerplate

MCP 服务器样板是一个 Node.js 示例,演示了如何使用自定义工具构建 MCP 服务器,包括一个从配置文件加载环境变量的工具,以便与 Cursor AI 等 AI 辅助环境无缝集成。

Excel MCP Server

Excel MCP Server

A Model Context Protocol server that enables AI agents to freely operate Excel spreadsheets, providing tools for workbook creation, cell manipulation, formatting, formula handling, and data export.

🧠  DeepSeek MCP Server

🧠 DeepSeek MCP Server

镜子 (jìng zi)

Needle MCP server

Needle MCP server

镜子 (jìng zi)

Movie MCP Server

Movie MCP Server

A Model Context Protocol server that enables searching and retrieving detailed information about movies and TV shows using The Movie Database (TMDB) API.

Homey MCP Server

Homey MCP Server

Enables interaction with Homey smart home devices through natural language, allowing users to control devices, manage zones, and trigger automation flows.

mcp-sequentialthinking-tools

mcp-sequentialthinking-tools

一个改编自 MCP 序列思维服务器的系统,旨在指导问题解决中的工具使用。该服务器帮助将复杂问题分解为可管理的步骤,并为每个阶段推荐最有效的 MCP 工具。

mcp-server-firecrawl

mcp-server-firecrawl

一个实现了模型上下文协议 (MCP) 的服务器,并集成了 FireCrawl 以提供高级网页抓取功能。

Dodo Payments

Dodo Payments

Dodo Payments MCP 服务器与代理框架集成,为 AI 驱动的支付操作(如账单、订阅和客户管理)提供轻量级、与无服务器兼容的接口。它使自主代理能够使用 Dodo Payments 安全地代表用户执行操作。

Database Bridge MCP Server

Database Bridge MCP Server

Enables secure database interactions with MySQL, PostgreSQL, and SQLite through granular permissions, multi-database support, and cloud-ready SSL/TLS connections. Supports read-only modes, schema-specific permissions, and transaction management for safe database operations.

ACOMO MCP Server

ACOMO MCP Server

Enables interaction with ACOMO API through MCP tools and resources. Provides comprehensive API exploration, operation calling, and schema inspection capabilities for ACOMO backend services.

Supabase MCP Server

Supabase MCP Server

一个连接像 GitHub Copilot 这样的 AI 助手和 Supabase 数据库的桥梁,使 AI 能够理解数据库模式,协助编写查询,并提供与您的数据模型相关的上下文感知建议。

DocketBird MCP Server

DocketBird MCP Server

由 DocketBird 托管的 API 的 MCP 服务器。

Wordware MCP

Wordware MCP

一个模型上下文协议服务器,它将像 Claude 这样的人工智能助手与 Wordware 的专业代理能力连接起来,允许通过标准化的接口动态加载和访问任何 Wordware 流程。

Weather MCP Server

Weather MCP Server

Okay, here's the translation of "MCP Server 和风天气API例子" and some context to help you understand what it means and how to use it: **Translation:** * **MCP Server:** MCP服务器 (MCP fúwùqì) * **和风天气API:** 和风天气API (Héfēng Tiānqì API) * **例子:** 例子 (lìzi) **Full Translation:** MCP服务器 和风天气API 例子 **Pinyin:** MCP fúwùqì Héfēng Tiānqì API lìzi **Meaning:** MCP Server HeWeather API Example(s) **Explanation and Context:** This phrase likely refers to examples of how to use the HeWeather API (a popular weather API in China) within the context of an MCP Server. An MCP Server could be a server running a Minecraft mod, or some other type of server. **To provide a more helpful example, I need more information. Specifically, what kind of MCP server are you using? For example:** * **Are you using a Minecraft MCP server?** If so, what modding framework are you using (Forge, Fabric, etc.)? * **What programming language are you using?** (Java, Python, etc.) * **What specific weather data do you want to retrieve?** (Current conditions, forecast, etc.) **However, I can give you a general example of how to use the HeWeather API in Python (which is a common language for server-side scripting):** ```python import requests import json # Replace with your HeWeather API key API_KEY = "YOUR_HEWEATHER_API_KEY" # Replace with the city you want weather data for (e.g., Beijing) CITY = "Beijing" # API endpoint for current weather conditions URL = f"https://devapi.qweather.com/v7/weather/now?location={CITY}&key={API_KEY}" try: response = requests.get(URL) response.raise_for_status() # Raise an exception for bad status codes data = response.json() if data["code"] == "200": current_weather = data["now"] temperature = current_weather["temp"] condition = current_weather["text"] print(f"Current weather in {CITY}:") print(f"Temperature: {temperature}°C") print(f"Condition: {condition}") else: print(f"Error: {data['code']} - {data['status']}") except requests.exceptions.RequestException as e: print(f"Request error: {e}") except json.JSONDecodeError as e: print(f"JSON decode error: {e}") ``` **Explanation of the Python Example:** 1. **Import Libraries:** Imports the `requests` library for making HTTP requests and the `json` library for parsing JSON data. 2. **API Key and City:** You **MUST** replace `"YOUR_HEWEATHER_API_KEY"` with your actual HeWeather API key. You can get one by signing up for a free account on the HeWeather website ([https://www.qweather.com/en/](https://www.qweather.com/en/)). Also, replace `"Beijing"` with the city you want weather data for. 3. **API Endpoint:** Constructs the URL for the HeWeather API endpoint to retrieve current weather conditions. 4. **Make the Request:** Uses `requests.get()` to make a GET request to the API endpoint. 5. **Error Handling:** `response.raise_for_status()` checks for HTTP errors (like 404 Not Found). 6. **Parse JSON:** Parses the JSON response from the API using `response.json()`. 7. **Check Status Code:** Checks the `code` field in the JSON response. `"200"` indicates success. 8. **Extract Data:** Extracts the temperature and weather condition from the `now` object in the JSON data. 9. **Print Results:** Prints the weather information to the console. 10. **Error Handling (Exceptions):** Includes `try...except` blocks to handle potential errors during the request or JSON parsing. **Important Notes:** * **Get an API Key:** You *must* register for a HeWeather API key to use their service. * **API Usage Limits:** Be aware of the API usage limits for your HeWeather account. The free tier has limitations. * **Location Codes:** HeWeather uses specific location codes. You can use their API to find the correct code for a city. * **MCP Server Integration:** To integrate this into your MCP server, you would need to adapt this code to run within your server's environment. This will depend on the specific server framework you are using. For example, if you are using a Minecraft Forge server, you would need to create a Forge mod that uses this code to fetch weather data and then display it in the game. **To get a more specific example, please provide more details about your MCP server and what you are trying to achieve.**

MCP Forge

MCP Forge

一个用于为 Smithery 生成 MCP 服务器的工具,该工具与 Cursor IDE 集成,允许用户从诸如 Basic、Web Search 或 Database interactions 等模板快速创建服务器。 Or, a slightly more natural translation: 一个可以为 Smithery 生成 MCP 服务器的工具,它与 Cursor IDE 集成,让用户能够使用 Basic、Web Search 或 Database interactions 等模板快速创建服务器。

mcp-freecad

mcp-freecad

这个项目旨在使用模型上下文协议(MCP)在人工智能助手和FreeCAD CAD软件之间提供强大的集成。它允许外部应用程序通过标准化的接口与FreeCAD交互,提供多种连接方式和专用工具。

http-4-mcp

http-4-mcp

HTTP-4-MCP 配置工具让您可以轻松地将 HTTP API 转换为 MCP 工具,无需编写代码。通过简单的界面操作,您可以快速配置一个 mcp-server。

MCP Server - Twitter NoAuth

MCP Server - Twitter NoAuth

一个无头的 MCP 服务器,提供 Twitter API 访问,无需本地凭据设置,即可实现核心 Twitter 操作,例如搜索推文、获取用户推文、发布推文和回复推文。

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

A server implementation of the Model Context Protocol (MCP) that runs on Cloudflare Workers, allowing AI assistants like Claude to access tools through OAuth authentication.

Cursor Notion MCP - Chat Logger

Cursor Notion MCP - Chat Logger

Logs Cursor AI chat interactions to Notion databases for documentation and knowledge management. Captures prompts, responses, context, and timestamps in a structured format for analysis and reference.

Image Generation MCP Server

Image Generation MCP Server

允许用户使用 Replicate 的模型,通过文本提示生成图像,并提供可配置的参数和完全符合 MCP 协议。

PostgreSQL MCP Server

PostgreSQL MCP Server

MCP 服务器,用于与 PostgreSQL 数据库交互和检查。 (MCP fúwùqì, yòng yú yǔ PostgreSQL shùjùkù jiāohù hé jiǎnchá.)

ramp-mcp: A Ramp MCP server

ramp-mcp: A Ramp MCP server

一个模型上下文协议服务器,它使大型语言模型(LLM)能够与 Ramp 的财务数据进行交互,通过检索、分析和运行任务,利用 Ramp 的开发者 API,并使用内存中的 SQLite 数据库来克服令牌限制。

MCP-Serve 多语言翻译服务

MCP-Serve 多语言翻译服务

A custom MCP protocol service that enhances AI models by providing multilingual translation capabilities and resource management, allowing for automatic text extraction and translation through external APIs.

Hacker News MCP Server

Hacker News MCP Server

Enables AI assistants to access Hacker News content through 9 comprehensive tools for fetching stories, comments, user profiles, and job postings. Supports flexible output formats, pagination, and various story categories (top, new, best, Ask HN, Show HN).

mcp-langchain-ts-client

mcp-langchain-ts-client

用于模型上下文协议的 LangChain.js 客户端。