Discover Awesome MCP Servers
Extend your agent with 28,410 capabilities via MCP servers.
- All28,410
- Developer Tools3,867
- Search1,714
- Research & Data1,557
- AI Integration Systems229
- Cloud Platforms219
- Data & App Analysis181
- Database Interaction177
- Remote Shell Execution165
- Browser Automation147
- Databases145
- Communication137
- AI Content Generation127
- OS Automation120
- Programming Docs Access109
- Content Fetching108
- Note Taking97
- File Systems96
- Version Control93
- Finance91
- Knowledge & Memory90
- Monitoring79
- Security71
- Image & Video Processing69
- Digital Note Management66
- AI Memory Systems62
- Advanced AI Reasoning59
- Git Management Tools58
- Cloud Storage51
- Entertainment & Media43
- Virtualization42
- Location Services35
- Web Automation & Stealth32
- Media Content Processing32
- Calendar Management26
- Ecommerce & Retail18
- Speech Processing18
- Customer Data Platforms16
- Travel & Transportation14
- Education & Learning Tools13
- Home Automation & IoT13
- Web Search Integration12
- Health & Wellness10
- Customer Support10
- Marketing9
- Games & Gamification8
- Google Cloud Integrations7
- Art & Culture4
- Language Translation3
- Legal & Compliance2
MOIDVK
A comprehensive Model Context Protocol (MCP) server that provides 37+ intelligent development tools across JavaScript/TypeScript, Rust, and Python with security-first design and high-performance features.
mpc-test
Um servidor MCP que exercita todas as funcionalidades do protocolo MCP.
FL Studio MCP Server
Enables AI assistants to control FL Studio through MIDI communication, providing transport control, mixer adjustments, channel rack manipulation, plugin parameter automation, and piano roll note editing capabilities.
Red Team MCP
A multi-agent collaboration platform that provides access to over 1,500 models from 68 providers via the Model Context Protocol. It enables users to assemble and coordinate specialized AI teams using advanced orchestration modes like swarm, debate, and hierarchical workflows.
Bar Assistant MCP Server
Enables intelligent cocktail discovery and recipe retrieval from Bar Assistant instances with natural language search, similarity matching, batch processing, and ingredient analysis capabilities.
Qwen Max MCP Server
Permite a geração de texto usando o modelo de linguagem Qwen Max com parâmetros configuráveis e integração perfeita com o Claude Desktop através do Protocolo de Contexto de Modelo (MCP).
Linear MCP Server
Enables comprehensive issue tracking and project management through Linear's GraphQL API. Supports creating and managing issues, organizing projects and sprints, team collaboration, and roadmap planning for modern development workflows.
Gmail MCP Server
Enables sending emails through Gmail using your Gmail credentials. Provides a simple send_email tool that accepts recipient, subject, and plain text body parameters.
Thoughtproof-mcp
Adversarial multi-model reasoning verification for AI agents. Claude, Grok, and DeepSeek challenge each decision — returns ALLOW or HOLD with JWKS-signed attestation. x402-gated on Base.
ai-dev-mcp-server-test-1743930903451
AI 기반 개발 MCP 서버
mcp-server-appointment-management
Este projeto é um servidor MCP (Modelo-Contexto-Protocolo) baseado em Java, projetado para gerenciar dados de agendamentos do banco de dados. Ele fornece uma estrutura modular que expõe ferramentas internas para acesso e manipulação de dados, com suporte integrado para recursos orientados por IA.
Kubernetes MCP Server
Enables interactive Kubernetes cluster monitoring and troubleshooting through natural language queries. Users can diagnose pod issues, check service status, and investigate cluster problems using conversational AI.
Spotify-Agent
Create an MCP Server to interact with Spotify, LastFM and the internet to collate music data and make recommendations.
Twilio Frontline MCP Server
An MCP server that enables interaction with Twilio Frontline API for customer communication workflows, auto-generated using AG2's MCP builder.
MCP-NOSTR
A bridge that enables AI language models to publish content to the Nostr network by implementing the Model Context Protocol (MCP).
Meta MCP Proxy
A flexible proxy that enables discovery and execution of tools across multiple Model Context Protocol (MCP) servers and JavaScript functions, reducing context size even when dealing with hundreds of tools.
Git Mob MCP Server
Enables management of co-authors for pair and mob programming sessions by automatically appending Co-authored-by trailers to git commit messages. It allows users to add, list, and configure team members as active co-authors using the git-mob CLI.
AppSignal MCP Server
A Model Context Protocol server that connects to AppSignal, allowing users to fetch, list, and analyze incident information from their AppSignal monitoring.
RateMySupervisor_MCP
An MCP server that provides access to supervisor evaluations and ratings from urfire.com, allowing users to query academic advisors by name, university, or department. It features intelligent fuzzy matching for supervisor names in both Chinese and Pinyin to ensure accurate search results.
ForIT Microsoft Graph
Provides direct access to Microsoft Graph API with multi-tenant account management, allowing users to interact with Microsoft 365 services across multiple tenants through a single flexible graph-request tool.
mcp-finnish-companies
Provides access to the Finnish company registry (PRH/YTJ) to search for businesses and retrieve detailed information using Business IDs. It enables users to perform industry-specific searches and track recent company registrations through official government open data.
Bing Search
Um servidor de Protocolo de Contexto de Modelo que se integra com a API de Busca do Microsoft Bing, permitindo que assistentes de IA realizem buscas na web, notícias e imagens.
SurveyMonkey MCP Server by CData
This read-only MCP Server allows you to connect to SurveyMonkey data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp
Kie.ai MCP Server
Enables AI-powered image generation and editing with Nano Banana, plus professional video creation with Veo3, all through Kie.ai's APIs. Includes task tracking, status monitoring, and 1080p video upgrades.
MCPサーバの作り方 & 使い方
MCP Server/Client refers to the **Minecraft Coder Pack (MCP)** used in conjunction with a server and client setup for Minecraft mod development. Let's break it down: * **Minecraft Coder Pack (MCP):** This is a toolset that deobfuscates and decompiles the official Minecraft code. Minecraft's original code is intentionally difficult to read (obfuscated) to make it harder to copy. MCP reverses this process, making the code more understandable and modifiable. It provides human-readable names for classes, methods, and fields, which is essential for modders to understand how Minecraft works and to create their own modifications. MCP also includes tools for reobfuscating the code after you've made changes, so your mod can work with the official Minecraft game. * **Server:** In the context of mod development, the "server" refers to a Minecraft server instance that you use for testing your mods. You'll typically run a local server on your computer so you can quickly test changes without needing to connect to a public server. The MCP setup allows you to apply your modified code to the server, so you can see how your mod behaves in a multiplayer environment or with server-side features. * **Client:** The "client" refers to the Minecraft game itself, running on your computer. Your mods often need to modify both the server-side and client-side code to add new features, change the user interface, or alter how the game behaves. The MCP setup allows you to apply your modified code to the client, so you can test how your mod looks and functions from the player's perspective. **In summary, the MCP Server/Client setup is a development environment that allows you to:** 1. **Deobfuscate and understand the Minecraft code.** 2. **Modify the server-side code to add new server features or change existing ones.** 3. **Modify the client-side code to add new client features, change the user interface, or alter how the game behaves for the player.** 4. **Test your mods in a local Minecraft server environment.** 5. **Reobfuscate your code for distribution.** **Here's the translation to Portuguese:** MCP Server/Client refere-se ao **Minecraft Coder Pack (MCP)** usado em conjunto com uma configuração de servidor e cliente para o desenvolvimento de mods para Minecraft. Vamos detalhar: * **Minecraft Coder Pack (MCP):** Esta é um conjunto de ferramentas que desofusca e decompila o código oficial do Minecraft. O código original do Minecraft é intencionalmente difícil de ler (ofuscado) para dificultar a cópia. O MCP reverte esse processo, tornando o código mais compreensível e modificável. Ele fornece nomes legíveis para classes, métodos e campos, o que é essencial para que os modders entendam como o Minecraft funciona e criem suas próprias modificações. O MCP também inclui ferramentas para reofuscar o código depois que você faz alterações, para que seu mod possa funcionar com o jogo Minecraft oficial. * **Servidor:** No contexto do desenvolvimento de mods, o "servidor" refere-se a uma instância de servidor Minecraft que você usa para testar seus mods. Normalmente, você executará um servidor local em seu computador para poder testar rapidamente as alterações sem precisar se conectar a um servidor público. A configuração do MCP permite que você aplique seu código modificado ao servidor, para que você possa ver como seu mod se comporta em um ambiente multiplayer ou com recursos do lado do servidor. * **Cliente:** O "cliente" refere-se ao próprio jogo Minecraft, em execução no seu computador. Seus mods geralmente precisam modificar o código do lado do servidor e do lado do cliente para adicionar novos recursos, alterar a interface do usuário ou alterar o comportamento do jogo. A configuração do MCP permite que você aplique seu código modificado ao cliente, para que você possa testar como seu mod se parece e funciona da perspectiva do jogador. **Em resumo, a configuração MCP Server/Client é um ambiente de desenvolvimento que permite que você:** 1. **Desofusque e entenda o código do Minecraft.** 2. **Modifique o código do lado do servidor para adicionar novos recursos do servidor ou alterar os existentes.** 3. **Modifique o código do lado do cliente para adicionar novos recursos do cliente, alterar a interface do usuário ou alterar o comportamento do jogo para o jogador.** 4. **Teste seus mods em um ambiente de servidor Minecraft local.** 5. **Reofusque seu código para distribuição.**
mcp-servers
MCP CSV Analysis With Gemini AI
FreelanceOS
AI-powered freelance business manager for Claude Code. Proposals, invoices, time tracking, scope management, and follow-ups - 37 tools, 5 coaching skills.
whatsapp-mcp-server
The most complete MCP Server for WhatsApp Business Cloud API. 43 tools across 10 modules including messaging, templates, media, webhooks, analytics, AI auto-reply, and anti-spam protection.
xgmem
A TypeScript-based MCP server that provides project-specific knowledge graph memory for LLM agents to store and retrieve entities, relations, and observations. It features disk-persistent storage and supports cross-project knowledge sharing to enhance agent long-term memory.