Discover Awesome MCP Servers

Extend your agent with 23,601 capabilities via MCP servers.

All23,601
Taiwan Government Open Data MCP Server

Taiwan Government Open Data MCP Server

Enables searching and querying Taiwan government open datasets from data.gov.tw using AI-powered search through Cloudflare Workers.

Dify Tools MCP Converter

Dify Tools MCP Converter

Converts Dify tools' API to MCP (Model Control Protocol) compatible API, allowing tools created in Dify to be accessed from MCP clients like Cherry Studio.

AbletonMCP Enhanced

AbletonMCP Enhanced

Connects Ableton Live to AI assistants through Model Context Protocol (MCP), enabling natural language control of music production tasks like track creation, MIDI editing, instrument loading, and playback control.

MCP Server: RepairWorld

MCP Server: RepairWorld

Please clarify what you mean by "MCP Server Code". "MCP" can refer to several things. To provide a helpful translation, I need more context. For example, are you referring to: * **Minecraft Protocol (MCP):** Code related to a Minecraft server? * **Master Control Program (MCP):** Code for a server related to a specific application or system named "Master Control Program"? * **Something else entirely?** Once you clarify, I can provide a more accurate and useful translation. In the meantime, here are some possible translations depending on the context: **If you mean Minecraft Protocol (MCP) server code for a PyPI module:** * **Portuguese:** Código do servidor do Protocolo Minecraft (MCP) para um módulo PyPI **If you mean Master Control Program (MCP) server code for a PyPI module:** * **Portuguese:** Código do servidor do Programa de Controle Mestre (MCP) para um módulo PyPI **General translation (without knowing the specific meaning of MCP):** * **Portuguese:** Código do servidor MCP para um módulo Pypi **To help me give you the best translation, please provide more details about what "MCP" refers to in your request.**

MCP Automotivo

MCP Automotivo

Enables natural language analysis of automotive sales data stored in MariaDB using Google Gemini AI to automatically generate and execute SQL queries from Portuguese language questions.

UI/UX MCP Server

UI/UX MCP Server

Enables comprehensive UI/UX development workflows through integrated tools for component development with Storybook, Tailwind CSS styling, Framer Motion/GSAP animations, Playwright testing, and automated design system generation. Provides end-to-end automation for visual regression testing, accessibility compliance, and UX optimization analysis.

Image Generation MCP Server

Image Generation MCP Server

Provides multi-provider image generation with automatic fallback across services like Pollinations.ai, Cloudflare, and Hugging Face. It features specialized pixel art generation, cost tracking, and automatic saving of generated visual assets to disk.

Amadeus Agent

Amadeus Agent

A proof-of-concept MCP server that allows LLM agents to query live flight booking information via Amadeus, including cheapest tickets, destinations, and airline routes.

MCP Planes Server

MCP Planes Server

LOINC API MCP Server

LOINC API MCP Server

Este projeto oferece um wrapper Python modular para a API LOINC, com uma interface de servidor MCP que se integra perfeitamente com o Claude Desktop para pesquisa e padronização inteligente de terminologia médica.

Azure Cosmos DB MCP Server

Azure Cosmos DB MCP Server

Servidor Node.js que se conecta ao banco de dados Azure Cosmos DB NoSQL, permitindo que os usuários consultem produtos e pedidos através de um Assistente de IA em um aplicativo frontend NextJS.

Excel MCP Server

Excel MCP Server

Enables AI assistants to perform comprehensive Microsoft Excel operations including data analysis, cell editing, advanced formatting, and VBA execution on Windows systems. It provides a structured workflow for managing workbooks and worksheets through a dedicated Model Context Protocol interface.

MCP Perplexity Server

MCP Perplexity Server

Implementação do servidor Model Context Protocol para a API Perplexity

Astra MCP Server

Astra MCP Server

Enables interaction with DataStax Astra DB through the Model Context Protocol. Provides database connectivity and operations for Astra DB instances via secure token-based authentication.

Uranium MCP Server

Uranium MCP Server

Enables creation and management of NFT collections and assets through the Uranium API. Supports uploading files as NFTs, managing ERC721 and ERC1155 collections, and bulk operations across multiple collections.

Mcp Server Again

Mcp Server Again

mcp-servidor-de-novo

tipdotmd

tipdotmd

tipdotmd

Simple Timer MCP Server

Simple Timer MCP Server

An MCP server that provides interval timing functionality using token-based time tracking, allowing users to start timers with unique identifiers and check elapsed time in milliseconds or human-readable format.

qdrant-mcp-local

qdrant-mcp-local

Aqui está uma configuração Docker Compose para iniciar facilmente o Qdrant e o MCP-server-qdrant em um ambiente local: ```yaml version: "3.9" services: qdrant: image: qdrant/qdrant:latest ports: - "6333:6333" # Porta para a API do Qdrant - "6334:6334" # Porta para gRPC volumes: - qdrant_data:/qdrant/storage # Persistência de dados (opcional) restart: unless-stopped mcp-server-qdrant: image: your-mcp-server-qdrant-image:latest # Substitua pela sua imagem do MCP-server-qdrant ports: - "8000:8000" # Porta para a API do MCP-server-qdrant (ajuste conforme necessário) environment: QDRANT_HOST: qdrant QDRANT_PORT: 6333 # Adicione outras variáveis de ambiente necessárias para o seu MCP-server-qdrant depends_on: - qdrant restart: unless-stopped volumes: qdrant_data: # Volume para persistir os dados do Qdrant (opcional) ``` **Explicação:** * **`version: "3.9"`:** Especifica a versão do Docker Compose. * **`services:`:** Define os serviços que serão executados. * **`qdrant:`:** Define o serviço Qdrant. * **`image: qdrant/qdrant:latest`:** Usa a imagem mais recente do Qdrant do Docker Hub. * **`ports:`:** Mapeia as portas do container para o host. `6333` é a porta padrão para a API do Qdrant e `6334` para gRPC. * **`volumes:`:** Monta um volume para persistir os dados do Qdrant. Isso é opcional, mas recomendado para evitar a perda de dados ao reiniciar o container. * **`restart: unless-stopped`:** Reinicia o container automaticamente, a menos que ele tenha sido parado manualmente. * **`mcp-server-qdrant:`:** Define o serviço MCP-server-qdrant. * **`image: your-mcp-server-qdrant-image:latest`:** **IMPORTANTE:** Substitua `your-mcp-server-qdrant-image:latest` pelo nome da sua imagem Docker do MCP-server-qdrant. * **`ports:`:** Mapeia a porta do container para o host. `8000` é um exemplo, ajuste conforme a porta que seu MCP-server-qdrant usa. * **`environment:`:** Define variáveis de ambiente para o container. * **`QDRANT_HOST: qdrant`:** Define o hostname do Qdrant. Como estamos usando o Docker Compose, podemos usar o nome do serviço (`qdrant`) como hostname. * **`QDRANT_PORT: 6333`:** Define a porta da API do Qdrant. * **Adicione outras variáveis de ambiente:** Seu MCP-server-qdrant pode precisar de outras variáveis de ambiente, como chaves de API, configurações de banco de dados, etc. Adicione-as aqui. * **`depends_on:`:** Garante que o Qdrant seja iniciado antes do MCP-server-qdrant. * **`restart: unless-stopped`:** Reinicia o container automaticamente, a menos que ele tenha sido parado manualmente. * **`volumes:`:** Define os volumes que serão usados. * **`qdrant_data:`:** Define um volume nomeado para persistir os dados do Qdrant. **Como usar:** 1. **Salve o código acima em um arquivo chamado `docker-compose.yml`.** 2. **Substitua `your-mcp-server-qdrant-image:latest` pelo nome da sua imagem Docker do MCP-server-qdrant.** 3. **Adicione as variáveis de ambiente necessárias para o seu MCP-server-qdrant na seção `environment`.** 4. **Abra um terminal no mesmo diretório do arquivo `docker-compose.yml`.** 5. **Execute o comando `docker-compose up -d`.** Isso irá baixar as imagens, criar os containers e iniciá-los em modo detached (em segundo plano). **Para parar os containers:** Execute o comando `docker-compose down`. **Observações:** * **Persistência de dados:** O volume `qdrant_data` é usado para persistir os dados do Qdrant. Se você não precisar persistir os dados, você pode remover a seção `volumes` do serviço `qdrant` e a definição do volume `qdrant_data`. * **Variáveis de ambiente:** Certifique-se de configurar corretamente as variáveis de ambiente para o seu MCP-server-qdrant. * **Portas:** Ajuste as portas conforme necessário. * **Imagem do MCP-server-qdrant:** Lembre-se de substituir `your-mcp-server-qdrant-image:latest` pelo nome da sua imagem Docker. * **Rede:** O Docker Compose cria uma rede padrão para os containers, permitindo que eles se comuniquem usando seus nomes de serviço como hostnames. Este é um exemplo básico. Você pode precisar ajustar a configuração para atender às suas necessidades específicas. Consulte a documentação do Qdrant e do MCP-server-qdrant para obter mais informações.

MCP-Demo

MCP-Demo

Stape MCP Server

Stape MCP Server

Enables interaction with the Stape platform through the Model Context Protocol. Provides access to Stape's server-side tagging and data management capabilities with support for both US and EU endpoints.

OpenStreetMap MCP Server

OpenStreetMap MCP Server

A comprehensive MCP server providing 30 tools for geocoding, routing, and OpenStreetMap data analysis. It enables AI assistants to search for locations, calculate travel routes, and perform quality assurance checks on map data.

MCP Server Dataset Builder

MCP Server Dataset Builder

SSI Stock Data MCP Server

SSI Stock Data MCP Server

A Model Context Protocol server that enables AI assistants to query Vietnam stock intraday data from SSI FastConnect API, providing access to stock codes, detailed information, index data, and OHLC information through natural language queries.

MCP Employee API Server

MCP Employee API Server

Enables AI assistants to manage employee data through a REST API with full CRUD operations. Provides tools to create, read, update, and delete employee records via the Model Context Protocol.

Basecamp MCP Server

Basecamp MCP Server

Enables AI assistants to interact with Basecamp projects through natural language commands. Supports managing projects, to-do lists, messages, and creating tasks with full content rendering capabilities.

LearnMCP Server

LearnMCP Server

Extracts and summarizes learning content from YouTube videos, PDFs, and web articles to provide context for project-based learning. It features automated background processing and integrates with Forest's HTA builder for informed task generation.

UniCloudDB-MCP

UniCloudDB-MCP

A database operation tool for uniCloud based on MCP protocol that allows AI assistants to perform database CRUD operations through standardized interfaces.

Playwright MCP Server

Playwright MCP Server

Um servidor de Protocolo de Contexto de Modelo que permite que LLMs interajam com páginas web, capturem screenshots, gerem código de teste, extraiam dados de páginas web e executem JavaScript em um ambiente de navegador real.

Remote MCP with Azure Functions (Python)

Remote MCP with Azure Functions (Python)

This project enables running a custom remote MCP server on Azure Functions with Python, allowing developers to build cloud-based Model Context Protocol tools that are secured by design using keys and HTTPS.