Discover Awesome MCP Servers

Extend your agent with 16,118 capabilities via MCP servers.

All16,118
Resemble AI Voice Generation MCP Server

Resemble AI Voice Generation MCP Server

使用模型上下文协议与 Claude 和 Cursor 集成,以使用 Resemble AI 的声音从文本生成语音音频。

MCP Hub

MCP Hub

An Express server implementation of Model Context Protocol that allows websites to connect to LLMs through streamable HTTP and stdio transports, with a built-in chat UI for testing responses.

MCP Server Inspector

MCP Server Inspector

webdev-mcp

webdev-mcp

An MCP server that provides web development tools including taking screenshots of screens, enabling AI agents to capture and analyze visual content during development.

MCP-Soccerdata

MCP-Soccerdata

一个开源的 MCP 服务器,它连接到 SoccerDataAPI,并通过自然语言交互提供最新的足球比赛信息。

MySQL MCP Server Pro

MySQL MCP Server Pro

Provides comprehensive MySQL database operations including CRUD, performance optimization, health analysis, and anomaly detection. Supports multiple connection modes, OAuth2.0 authentication, and role-based permissions for database management through natural language.

Playwright MCP Server

Playwright MCP Server

A minimal server that exposes Playwright browser automation capabilities through a simple API, enabling webpage interaction, DOM manipulation, and content extraction via the Model Context Protocol.

MCP Home Assistant

MCP Home Assistant

Enables natural language control of Home Assistant smart home devices through Cursor AI, supporting entity queries, automation management, configuration file editing, and system operations.

MCP Server Fichador

MCP Server Fichador

A Model Context Protocol server that searches educational articles from todamateria.com.br and automatically creates structured reading cards with summaries, key points, and citations.

Uni-res_MCP

Uni-res_MCP

An MCP server for my University Results

Multilead Open API MCP Server

Multilead Open API MCP Server

Enables AI assistants to interact with the Multilead platform for lead management, email campaigns, conversations, webhooks, and analytics through 74 API endpoints.

Ziwei Astrology MCP Server

Ziwei Astrology MCP Server

Enables generation of detailed Chinese Ziwei Doushu (Purple Star) astrological charts with geographic location support and true solar time conversion. Provides tools for geocoding locations, converting Beijing time to apparent solar time, and creating comprehensive astrology readings based on birth information.

Spring AI MCP Server Example

Spring AI MCP Server Example

一个用于娱乐和实验的 Spring AI MCP 服务器示例项目。🚀 它使用带有虚拟 Person 数据的内存数据存储实现基本的 CRUD 操作。🤖

AI MCP ServiceNow

AI MCP ServiceNow

A Model Context Protocol server that integrates with ServiceNow instances, allowing users to utilize AI tools within ServiceNow without writing code.

Pixabay Mcp

Pixabay Mcp

mcp-flyin

mcp-flyin

A server that handles messaging or commands over a custom protocol

Azure Model Context Protocol (MCP) Hub

Azure Model Context Protocol (MCP) Hub

Okay, here's a breakdown of resources for building and integrating Model Context Protocol (MCP) servers on Azure using multiple languages. Since MCP is a relatively new and evolving area, direct, comprehensive "one-stop-shop" resources are still emerging. I'll provide the best available information, focusing on the core components and how to adapt them to different languages on Azure. **Understanding Model Context Protocol (MCP)** * **Core Concept:** MCP is designed to provide a standardized way for AI models to access contextual information (e.g., user data, environment data, session history) at runtime. This allows models to make more informed and personalized decisions. * **Key Components:** * **MCP Server:** The central component that manages and serves the contextual data. This is what you'll be building. * **MCP Client:** The code within your AI model or application that requests data from the MCP Server. * **Data Sources:** The systems that hold the contextual information (databases, APIs, caches, etc.). **General Approach for Building an MCP Server on Azure** 1. **Choose a Language/Framework:** Select a language and framework suitable for building a web API. Popular choices include: * **Python (with Flask or FastAPI):** Excellent for rapid development and has a large ecosystem of libraries. * **C# (.NET):** Strong performance, well-suited for enterprise applications, and integrates seamlessly with Azure services. * **Node.js (with Express):** Good for building scalable and real-time applications. * **Java (with Spring Boot):** Another robust option for enterprise-grade solutions. 2. **Define the MCP API:** Design the API endpoints that your MCP Server will expose. This will likely involve: * **Request Format:** How the client will request data (e.g., using a specific ID or set of parameters). JSON is a common choice. * **Response Format:** The structure of the data returned by the server (again, likely JSON). * **Authentication/Authorization:** How you'll secure the API to ensure only authorized clients can access the data. 3. **Implement the API Logic:** Write the code to: * Receive requests. * Fetch data from the appropriate data sources. * Transform the data into the required response format. * Handle errors gracefully. 4. **Deploy to Azure:** Choose an Azure service to host your MCP Server: * **Azure App Service:** A fully managed platform for hosting web applications. Good for most scenarios. * **Azure Functions:** Serverless compute, ideal for event-driven architectures or APIs with infrequent usage. * **Azure Kubernetes Service (AKS):** For more complex deployments requiring container orchestration. * **Azure Container Apps:** A serverless container service that simplifies deploying containerized applications. 5. **Secure the API:** Implement authentication and authorization. Options include: * **Azure Active Directory (Azure AD):** For enterprise identity management. * **API Keys:** A simpler approach for less sensitive data. * **Managed Identities:** Allow your Azure resources to authenticate to other Azure services without needing to manage credentials. 6. **Monitor and Log:** Use Azure Monitor to track the performance and health of your MCP Server. Implement logging to help diagnose issues. **Language-Specific Resources and Examples (Adaptable for MCP)** While direct MCP examples in multiple languages are scarce, you can adapt existing Azure API examples: * **Python (Flask/FastAPI):** * **Azure App Service with Python:** [https://learn.microsoft.com/en-us/azure/app-service/quickstart-python](https://learn.microsoft.com/en-us/azure/app-service/quickstart-python) * **Azure Functions with Python:** [https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-python](https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-python) * **Example (Conceptual):** You would adapt these examples to: * Define API endpoints for your MCP data requests (e.g., `/context/{user_id}`). * Fetch data from your data sources (e.g., Azure Cosmos DB, Azure SQL Database). * Return the data in a JSON format. * **C# (.NET):** * **Azure App Service with .NET:** [https://learn.microsoft.com/en-us/azure/app-service/quickstart-dotnetcore](https://learn.microsoft.com/en-us/azure/app-service/quickstart-dotnetcore) * **Azure Functions with C#:** [https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-vs](https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-vs) * **Example (Conceptual):** Similar to Python, you'd create API controllers to handle MCP requests, access data sources using Entity Framework or other data access libraries, and return JSON responses. * **Node.js (Express):** * **Azure App Service with Node.js:** [https://learn.microsoft.com/en-us/azure/app-service/quickstart-nodejs](https://learn.microsoft.com/en-us/azure/app-service/quickstart-nodejs) * **Azure Functions with Node.js:** [https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-node](https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-node) * **Example (Conceptual):** Use Express to define routes for your MCP API, connect to data sources using libraries like `pg` (for PostgreSQL) or `mongodb` (for MongoDB), and return JSON data. * **Java (Spring Boot):** * **Azure App Service with Java:** [https://learn.microsoft.com/en-us/azure/app-service/quickstart-java](https://learn.microsoft.com/en-us/azure/app-service/quickstart-java) * **Azure Functions with Java:** [https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-java](https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-java) * **Example (Conceptual):** Use Spring Boot's REST controller features to create API endpoints, use Spring Data JPA or JDBC to access databases, and return JSON responses. **Key Considerations for MCP Implementation** * **Data Consistency:** Ensure that the data served by your MCP Server is consistent and up-to-date. Consider using caching mechanisms (e.g., Azure Cache for Redis) to improve performance and reduce load on your data sources. * **Scalability:** Design your MCP Server to handle a large number of requests. Azure App Service and Azure Functions can scale automatically. For more demanding workloads, consider AKS. * **Latency:** Minimize the latency of data retrieval. Optimize your data queries and use caching effectively. Consider the geographic location of your MCP Server and your AI models. * **Security:** Protect the data served by your MCP Server. Use strong authentication and authorization mechanisms. Encrypt data in transit and at rest. * **Data Governance:** Implement policies to ensure that data is used responsibly and ethically. Comply with relevant data privacy regulations (e.g., GDPR, CCPA). **Example Scenario (Python with FastAPI on Azure App Service)** 1. **FastAPI App:** ```python from fastapi import FastAPI, HTTPException from azure.cosmos import CosmosClient, PartitionKey from typing import Optional import os app = FastAPI() # Azure Cosmos DB Configuration (replace with your actual values) COSMOS_ENDPOINT = os.environ["COSMOS_ENDPOINT"] COSMOS_KEY = os.environ["COSMOS_KEY"] DATABASE_NAME = "mcp_db" CONTAINER_NAME = "user_context" # Initialize Cosmos DB client cosmos_client = CosmosClient(COSMOS_ENDPOINT, COSMOS_KEY) database = cosmos_client.get_database_client(DATABASE_NAME) container = database.get_container_client(CONTAINER_NAME) @app.get("/context/{user_id}") async def get_user_context(user_id: str): """ Retrieves user context data from Cosmos DB. """ try: item = container.read_item(item=user_id, partition_key=user_id) return item except Exception as e: raise HTTPException(status_code=404, detail="User context not found") @app.get("/health") async def health_check(): return {"status": "ok"} ``` 2. **Deployment to Azure App Service:** * Create an Azure App Service instance. * Configure environment variables for `COSMOS_ENDPOINT` and `COSMOS_KEY`. * Deploy the Python code to the App Service. You'll likely need a `requirements.txt` file listing dependencies (e.g., `fastapi`, `azure-cosmos`). **Important Notes:** * **MCP is Evolving:** The Model Context Protocol is still under development. Expect changes and updates to the specifications and available tools. * **Customization is Key:** You'll need to tailor your MCP Server to the specific needs of your AI models and data sources. * **Security Best Practices:** Always prioritize security when building and deploying your MCP Server. I hope this comprehensive guide helps you get started with building and integrating MCP servers on Azure using multiple languages! Remember to adapt the examples and resources to your specific requirements.

macOS MCP Servers

macOS MCP Servers

Enables Claude Desktop and GitHub Copilot to interact with native macOS applications including Spotify, Apple Music, Notes, Calendar, FaceTime, and Contacts through natural language commands. Provides comprehensive control over music playback, note management, calendar events, video calls, and contact operations using AppleScript integration.

ClinicalTrials.gov MCP Server

ClinicalTrials.gov MCP Server

Empowers AI agents with direct access to the official ClinicalTrials.gov database, enabling programmatic searching, retrieval, and analysis of clinical study data through a Model Context Protocol interface.

Mattermost S MCP

Mattermost S MCP

Enables sending messages to Mattermost channels through webhooks via MCP protocol. Supports multiple webhook channels with simple YAML configuration and integrates seamlessly with Claude Desktop.

Chicken Business Management MCP Server

Chicken Business Management MCP Server

Enables real-time voice-to-text order processing and chicken business management through WebSocket connections and REST APIs. Supports inventory tracking, sales parsing, stock forecasting, and note collection with AI-powered transcript correction and structured data extraction.

MCP-Audio Plugin

MCP-Audio Plugin

A voice-to-text transcription service that converts audio files to transcripts using SiliconFlow, supporting both multipart/form-data and base64 formats.

Formath MCP

Formath MCP

Enables extraction of mathematical content from TeX papers and conversion to Lean code through a structured intermediate representation. Supports project scaffolding, entity management, and task tracking for mathematical formalization workflows.

MCP Server Example

MCP Server Example

Jellyseerr MCP Server

Jellyseerr MCP Server

Enables interaction with Jellyseerr media request systems through natural language. Supports searching for media, creating requests, checking request status, and managing your media library workflow.

Polyagent MCP

Polyagent MCP

Enables any MCP-compatible client to use existing Claude Code agents from .claude/agents/ directories. Spawns agents in separate CLI sessions for better context optimization and performance across Codex, Gemini CLI, and other AI coding assistants.

AIOps MCP Servers

AIOps MCP Servers

AIOps 的 mcp 服务器。

mcp-server-exa-search

mcp-server-exa-search

Zed 扩展,用于 Exa 的 MCP 服务器

chinchillo-mcp-server

chinchillo-mcp-server

チンチロができるMCPサーバーです。

Everything Search MCP Server

Everything Search MCP Server

使用特定于平台的技术,在 Windows、macOS 和 Linux 操作系统上提供快速的文件搜索功能。