Discover Awesome MCP Servers
Extend your agent with 16,856 capabilities via MCP servers.
- All16,856
- 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
Aster Finance MCP Server
Enables AI agents to interact with the Aster Finance Futures API for cryptocurrency trading. Provides comprehensive access to market data, order management, account information, and position management on the Aster exchange.
MCP Registry
Um servidor MCP que pesquisa servidores MCP.
MCP Server Proto-OKN
A Model Context Protocol server that provides tools for querying SPARQL endpoints, with specialized support for Proto-OKN knowledge graphs hosted on the FRINK platform.
MCP Server for ServiceNow
Este Servidor MCP para ServiceNow foi projetado para ser genérico e extensível. Ele utiliza uma abordagem modular para lidar com uma ampla gama de casos de uso do ServiceNow, desde operações básicas de ITSM até gerenciamento avançado de CMDB e orquestração dinâmica de fluxo de trabalho.
Watchtower DAP Windows Debugging
Enables step-through debugging for C#, Node.js/TypeScript, Python, and Dart applications on Windows through a unified MCP interface. Acts as a bridge between MCP clients and various debug adapters, providing consistent debugging workflows with breakpoints, variable inspection, and process attachment capabilities.
Web-QA
An AI-powered MCP server that automates web testing workflows by enabling recording, execution, and discovery of tests through natural language prompts.
New Relic MCP Server
Um servidor de Protocolo de Contexto de Modelo que permite que Modelos de Linguagem Grandes, como o Claude, consultem logs e métricas do New Relic usando consultas NRQL.
Enkrypt AI MCP Server
Espelho de
Handwriting OCR
Permite a integração entre clientes MCP e o serviço de OCR de escrita à mão, permitindo que os usuários carreguem imagens e documentos PDF, verifiquem o status do processamento e recuperem os resultados do OCR como Markdown.
Code Index MCP
ghas-mcp-server
Espelho de
Stealth-AntiCheat MCP
Real-time anti-cheat analysis system that monitors Discord servers for cheating code patterns using AI (GPT-4), automatically detects and analyzes suspicious code, and generates custom anti-cheat signatures with 24/7 monitoring capabilities.
PostgREST
Este é um servidor MCP para PostgREST. Ele permite que LLMs realizem consultas e operações em bancos de dados Postgres através do PostgREST. Este servidor funciona tanto com projetos Supabase (que usam PostgREST) quanto com servidores PostgREST independentes.
Yandex Tracker MCP Server
A Node.js MCP server that enables AI assistants to interact with Yandex Tracker task management system through a standardized protocol, supporting operations like creating, updating, and searching issues.
Next.js MCP Server
A Model Context Protocol server built with Next.js that provides AI assistants with access to custom tools and resources. Includes example tools for echoing messages and performing mathematical operations, with support for both SSE and HTTP transports.
Dockerized MCP Server Template
Um modelo de servidor Python Dockerizado e reutilizável que implementa o Protocolo de Contexto de Modelo (MCP) com Eventos Enviados pelo Servidor (SSE), construído usando a biblioteca FastMCP para fácil integração com Grandes Modelos de Linguagem (LLMs).
Writer MCP
A Model Context Protocol server that manages character knowledge and relationships for creative writing projects, offering semantic search and AI-powered analysis.
Metabase MCP Server
Enables LLMs to interact with Metabase instances through 33 tools for querying cards, dashboards, databases, collections, and executing SQL queries against your Metabase installation.
mc-server-clash-of-clans
Servidor MCP para a API do Clash of Clans. Consegue obter informações de jogadores, clãs, analisar guerras em andamento, bem como históricos de guerra (desde que sejam públicos).
UseScraper
Um servidor MCP baseado em TypeScript que utiliza a API UseScraper para fornecer capacidades de web scraping, permitindo que os usuários extraiam conteúdo de páginas da web em vários formatos.
Google Meet MCP Server
O servidor MCP do Google Meet permite que agentes de IA criem, gerenciem e recuperem reuniões do Google Meet. Construído sobre o Protocolo de Contexto de Modelo (Model Context Protocol), ele expõe ferramentas para agendar, atualizar e excluir reuniões, facilitando a integração das funcionalidades do Google Meet.
Tiny Chat
This is an LLM application with chat functionality, featuring chat using RAG, a database, and MCP server capabilities. The UI is designed for Japanese users.
Polar Signals Remote MCP
MCP server for Polar Signals Cloud continuous profiling platform, enabling AI assistants to analyze CPU performance, memory usage, and identify optimization opportunities in production systems.
Unichat
I understand that you want me to translate text from English to Portuguese and that you are mentioning various AI providers (OpenAI, MistralAI, Anthropic, xAI, Google AI) and a protocol (MCP) for interacting with them. You also mention the need for a vendor API key. However, I am unable to directly interact with external APIs or use specific protocols like MCP. I am a language model and do not have the capability to execute code or manage API keys. To get your English text translated to Portuguese using one of those AI providers, you would need to: 1. **Choose an AI provider:** Decide which provider (OpenAI, MistralAI, etc.) you want to use. 2. **Obtain an API key:** Sign up for an account with the chosen provider and obtain an API key. 3. **Implement the MCP protocol (or the provider's specific API):** You'll need to write code (likely in Python, JavaScript, or another programming language) to format your request according to the MCP protocol or the specific API documentation of the chosen provider. This code will include your API key for authentication. 4. **Send the request:** Your code will send the request to the provider's API endpoint. 5. **Receive and process the response:** The API will return a response containing the translated text. Your code will need to parse this response and extract the Portuguese translation. **Example (Conceptual - using a hypothetical MCP library in Python):** ```python # This is a conceptual example and may not be directly executable. # You would need a real MCP library and a valid API key. import mcp api_key = "YOUR_API_KEY" # Replace with your actual API key provider = "openai" # Or "mistralai", "anthropic", etc. text_to_translate = "Hello, how are you?" try: translation = mcp.translate( text=text_to_translate, source_language="en", target_language="pt", provider=provider, api_key=api_key ) print(f"Original text: {text_to_translate}") print(f"Translation: {translation}") except mcp.APIError as e: print(f"Error: {e}") ``` **In summary, I can't perform the translation directly. You need to use a programming language and the appropriate API libraries to interact with the AI providers you mentioned.** If you provide me with the English text you want translated, I can give you the Portuguese translation *as if* I had used one of those services. However, remember that this will be based on my own internal model and might not be identical to the output of a specific AI provider.
MCP Greetings Server
Enables AI assistants to greet users in 7 different languages including English, Spanish, French, German, Japanese, Chinese, and Korean. A lightweight multilingual greeting tool for the Model Context Protocol.
nft-analytics-mcp
An MCP server that delivers NFT collection analytics powered by data from Dune Analytics.
ExpressJS MCP
Exposes Express.js API endpoints as MCP tools, preserving existing schemas and authentication behavior. Supports streaming responses and can be mounted directly to existing Express apps or run as a standalone gateway.
AWS Nova Canvas MCP Server
Um servidor MCP que permite gerar e editar imagens usando o modelo Nova Canvas da Amazon Bedrock, com suporte a recursos como geração de texto para imagem, pintura interna (inpainting), pintura externa (outpainting), variação de imagem e remoção de fundo.
Spurs Blog Mcp Server
An MCP server for Pounding The Rock blog, that provides comprehensive coverage of the San Antonio Spurs.
SAP Business One MCP Server
Enables interaction with SAP Business One API through Azure Container Apps with VNet connectivity. Provides secure access to SAP data and operations through natural language interface.