Discover Awesome MCP Servers

Extend your agent with 84,469 capabilities via MCP servers.

All84,469
MCP Resume Chat Server

MCP Resume Chat Server

Enables AI-powered conversations about resume/CV content and email notification sending through a comprehensive MCP server. Features a modern Next.js frontend with resume chat interface, email forms, and resume viewer for SE interview demonstrations.

SAP Ariba Procurement MCP Server by CData

SAP Ariba Procurement MCP Server by CData

This project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our free CData MCP Server for SAP Ariba Procurement (beta): https://www.cdata.com/download/download.aspx?sku=PAZK-V&type=beta

caniuse-mcp

caniuse-mcp

An MCP server that provides browser compatibility data and web API support information using caniuse.com, MDN BCD, and Web Features, enabling developers to check feature support across browsers and against browserslist configurations.

rocket-cli

rocket-cli

Rocket.Chat bridge with a local SQLite/FTS5 cache — CLI for humans, MCP server for LLM agents.

OpenFeature MCP Server

OpenFeature MCP Server

Provides OpenFeature SDK installation guidance for various programming languages and enables feature flag evaluation through the OpenFeature Remote Evaluation Protocol (OFREP). Supports multiple AI clients and can connect to any OFREP-compatible feature flag service.

天气 MCP 服务器

天气 MCP 服务器

这是一个基于 FastMCP 构建的天气查询 MCP 服务器。 (This translates to: "This is a weather query MCP server built on FastMCP.")

packforai-mcp

packforai-mcp

Converts PDF, DOCX, PPTX, XLSX, CSV, and JSON into clean, compact, AI-ready Markdown, reducing tokens up to 65%.

browse

browse

Headless browser automation via MCP using Playwright WebKit.

Interactive Feedback MCP

Interactive Feedback MCP

MCP server that enables human-in-the-loop workflow in AI-assisted development tools by allowing users to provide direct feedback to AI agents without consuming additional premium requests.

SkillMCP

SkillMCP

Serves project-specific skills and behavioral rules to AI agents via MCP, enabling automatic injection of behavioral rules and on-demand knowledge for coding assistants like Claude Code and Gemini CLI.

satellite-mcp

satellite-mcp

Full-spectrum GEOINT server with 171 tools covering satellite imagery, aircraft tracking, maritime surveillance, military intelligence, conflict monitoring, environmental analysis, critical infrastructure, sanctions compliance, and cyber-geo intelligence from open-source data.

MCP Node Tasks 05 - Sampling

MCP Node Tasks 05 - Sampling

An MCP server that demonstrates sampling, enabling the server to request LLM completions from the client to assist in workflow tasks like planning work sessions.

Engram

Engram

A self-hosted MCP server enabling multiple AI coding agents to share state, preserve context across sessions, and coordinate with each other.

MCP Server Implementations

MCP Server Implementations

使用服务器发送事件 (SSE) 的模型控制协议 (MCP) 自定义服务器实现

FAA Advisory Circular MCP

FAA Advisory Circular MCP

Enables searching, retrieving, and tracking FAA Advisory Circulars for airport operations with filtering by airport type, bookmarking, and export capabilities.

mcp-stackexchange

mcp-stackexchange

Wraps the StackExchange API v2.3 to enable reading StackExchange data (questions, answers, etc.) without authentication. Allows AI agents to query StackExchange content through natural language or direct tool calls.

Directmedia MCP

Directmedia MCP

Provides programmatic access to the Directmedia Publishing 'Digitale Bibliothek' collection, a 1990s German electronic book library containing 101 volumes of classic literature and philosophy with text extraction, search, and navigation capabilities.

Karbon MCP Server

Karbon MCP Server

An unofficial Model Context Protocol server that connects MCP-compatible clients to Karbon practice management, enabling natural language interaction with contacts, work items, notes, timesheets, and more.

meta-ads-mcp

meta-ads-mcp

A self-hosted Model Context Protocol (MCP) server that gives AI agents secure, multi-tenant access to the Meta Marketing API for Facebook Ads and Instagram Ads. It enables campaign management, audience targeting, insights, lead management, and more across multiple ad accounts.

Sample Model Context Protocol Demos

Sample Model Context Protocol Demos

好的,这是关于如何将模型上下文协议与 AWS 结合使用的一些示例: **总览** 模型上下文协议 (Model Context Protocol, MCP) 是一种标准化方法,用于将上下文信息传递给机器学习模型。这使得模型能够根据手头的任务更好地理解和响应。在 AWS 环境中,MCP 可以与各种服务集成,以增强模型的性能和可解释性。 **使用场景和示例** 以下是一些使用 MCP 与 AWS 结合的常见场景和示例: * **个性化推荐:** * **场景:** 构建一个推荐系统,根据用户的历史行为、人口统计信息和当前上下文(例如,一天中的时间、位置)来推荐产品或内容。 * **如何使用 MCP:** * 将用户历史行为、人口统计信息和上下文信息编码为 MCP 格式。 * 将 MCP 数据传递给您的推荐模型(例如,在 Amazon SageMaker 上部署的模型)。 * 模型使用 MCP 数据来生成个性化推荐。 * **AWS 服务:** Amazon Personalize, Amazon SageMaker, Amazon DynamoDB (存储用户数据), Amazon Location Service (获取位置信息) * **示例代码 (伪代码):** ```python # 假设我们已经从 DynamoDB 获取了用户数据,并从 Location Service 获取了位置信息 user_id = "user123" user_data = get_user_data_from_dynamodb(user_id) location_data = get_location_data_from_location_service(user_id) # 构建 MCP 数据 mcp_data = { "user_id": user_id, "user_history": user_data["purchase_history"], "user_age": user_data["age"], "location": location_data["city"], "time_of_day": "evening" } # 将 MCP 数据传递给 SageMaker 模型 response = sagemaker_endpoint.invoke(mcp_data) # 从响应中获取推荐结果 recommendations = response["recommendations"] ``` * **欺诈检测:** * **场景:** 检测金融交易中的欺诈行为,考虑交易金额、交易地点、用户行为模式等上下文信息。 * **如何使用 MCP:** * 将交易金额、交易地点、用户行为模式等信息编码为 MCP 格式。 * 将 MCP 数据传递给您的欺诈检测模型。 * 模型使用 MCP 数据来评估交易的欺诈风险。 * **AWS 服务:** Amazon Fraud Detector, Amazon SageMaker, Amazon Kinesis (实时数据流), Amazon DynamoDB (存储用户行为数据) * **示例代码 (伪代码):** ```python # 假设我们已经从 Kinesis 获取了实时交易数据 transaction_data = get_transaction_data_from_kinesis() # 构建 MCP 数据 mcp_data = { "transaction_amount": transaction_data["amount"], "transaction_location": transaction_data["location"], "user_behavior": get_user_behavior_from_dynamodb(transaction_data["user_id"]) } # 将 MCP 数据传递给 Fraud Detector 或 SageMaker 模型 fraud_score = fraud_detector.detect_fraud(mcp_data) # 或 sagemaker_endpoint.invoke(mcp_data) # 根据欺诈评分采取行动 if fraud_score > threshold: flag_transaction_as_fraudulent() ``` * **自然语言处理 (NLP):** * **场景:** 提高文本分类、情感分析或机器翻译等 NLP 任务的准确性,通过提供文档的上下文信息(例如,作者、来源、主题)。 * **如何使用 MCP:** * 将文档内容、作者、来源、主题等信息编码为 MCP 格式。 * 将 MCP 数据传递给您的 NLP 模型。 * 模型使用 MCP 数据来更好地理解文本并提高性能。 * **AWS 服务:** Amazon Comprehend, Amazon SageMaker, Amazon S3 (存储文档), Amazon Kendra (企业搜索) * **示例代码 (伪代码):** ```python # 假设我们已经从 S3 获取了文档 document = get_document_from_s3("s3://my-bucket/my-document.txt") # 构建 MCP 数据 mcp_data = { "document_content": document, "document_author": "John Doe", "document_source": "News Article", "document_topic": "Politics" } # 将 MCP 数据传递给 Comprehend 或 SageMaker 模型 sentiment = comprehend.detect_sentiment(mcp_data) # 或 sagemaker_endpoint.invoke(mcp_data) # 分析情感 print(f"Sentiment: {sentiment}") ``` * **图像识别:** * **场景:** 提高图像识别的准确性,通过提供图像的上下文信息(例如,拍摄地点、时间、天气)。 * **如何使用 MCP:** * 将图像数据、拍摄地点、时间、天气等信息编码为 MCP 格式。 * 将 MCP 数据传递给您的图像识别模型。 * 模型使用 MCP 数据来更好地识别图像中的对象。 * **AWS 服务:** Amazon Rekognition, Amazon SageMaker, Amazon S3 (存储图像), Amazon Location Service (获取位置信息) * **示例代码 (伪代码):** ```python # 假设我们已经从 S3 获取了图像 image = get_image_from_s3("s3://my-bucket/my-image.jpg") # 获取图像的元数据 (例如,通过 EXIF 数据) image_metadata = get_image_metadata(image) # 构建 MCP 数据 mcp_data = { "image_data": image, "location": image_metadata["location"], "time": image_metadata["time"], "weather": get_weather_data_from_location_service(image_metadata["location"]) } # 将 MCP 数据传递给 Rekognition 或 SageMaker 模型 objects = rekognition.detect_objects(mcp_data) # 或 sagemaker_endpoint.invoke(mcp_data) # 识别图像中的对象 print(f"Objects detected: {objects}") ``` **关键考虑因素:** * **数据格式:** 定义清晰的 MCP 数据格式,以便模型能够正确解析和使用上下文信息。 可以使用 JSON 或其他结构化数据格式。 * **数据量:** 考虑 MCP 数据的大小和复杂性,以及它对模型性能的影响。 优化数据传输和处理流程。 * **安全性:** 确保 MCP 数据的安全性,特别是当包含敏感信息时。 使用 AWS Identity and Access Management (IAM) 控制访问权限。 * **模型训练:** 在训练模型时,使用包含上下文信息的 MCP 数据,以便模型能够学习如何利用这些信息。 * **模型部署:** 确保模型部署环境能够接收和处理 MCP 数据。 可以使用 Amazon SageMaker Endpoints 或其他部署选项。 * **监控:** 监控模型的性能,并根据需要调整 MCP 数据或模型参数。 使用 Amazon CloudWatch 监控指标。 **总结:** 模型上下文协议 (MCP) 是一种强大的工具,可以提高机器学习模型的性能和可解释性。 通过将 MCP 与 AWS 服务集成,您可以构建更智能、更个性化的应用程序。 以上示例展示了 MCP 在不同场景下的应用,并提供了使用 AWS 服务的指导。 请根据您的具体需求进行调整和扩展。 希望这些示例对您有所帮助! 如果您有任何其他问题,请随时提出。

wiki-mcp-server

wiki-mcp-server

A lightweight personal wiki MCP server that allows AI assistants to save, search, and link markdown notes with backlinks and full-text search, functioning as a file-based second brain.

stockdata-mcp

stockdata-mcp

An MCP server for stock research with 52 tools across FMP and Qualtrim backends, providing raw financial data plus derived analytics, DCF, AI commentary, and portfolio management. It handles caching, API budgeting, and credential management.

willow-mcp

willow-mcp

An agent-neutral MCP server providing SQLite key/value storage, Postgres knowledge base, and Kart task queue functionality. Features SAP/1.0 authorization on every tool call for secure multi-application access.

MCP Web Chat

MCP Web Chat

A server that enables WebChat functionality through MCP (Model-Control-Protocol), solving long-term connection issues while providing both common method calls and business API integration capabilities.

Verified Wages MCP

Verified Wages MCP

Provides current, source-cited US minimum wage, tipped wage, and FLSA overtime data for AI agents, with tools to query rates, verify wage floors, and list scheduled changes. It refreshes state-level wage information from DOL sources and refuses to guess when data is unavailable.

MemoraМCP

MemoraМCP

An MCP-powered storage system for AI agents that provides IPFS-secured, verifiable, and sovereign data storage capabilities.

AXIS MCP Server

AXIS MCP Server

Runs a Model Context Protocol server directly on Axis cameras, enabling any MCP-capable AI to inspect and control the camera without cloud or middleware.

WordPress MCP Server

WordPress MCP Server

Enables comprehensive management of WordPress sites including posts, users, media, categories, tags, and site settings via the WordPress REST API.

Yandex Webmaster MCP Server

Yandex Webmaster MCP Server

MCP server that provides 46 tools for managing Yandex Webmaster API v4, enabling site management, sitemaps, indexing, search analytics, and more through natural language.

mcp-database

mcp-database

Read-only MySQL/MariaDB MCP server for running SELECT queries safely, with automatic read-only enforcement and query limits.