Discover Awesome MCP Servers
Extend your agent with 58,818 capabilities via MCP servers.
- All58,818
- 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
einvoice-mcp
MCP server for German e-invoice compliance (XRechnung 3.0 & ZUGFeRD 2.x) enabling AI agents to validate, generate, parse, and check compliance of electronic invoices per EN 16931.
mcp-sing
Enables reproduction of identical handwritten signatures on a NextDraw 8511 pen plotter using deterministic toolpath compilation and SHA-256 locking.
Portainer MCP
Servidor MCP Portainer
mocoVoice MCP Server
Enables transcription of audio and video files using mocoVoice API, allowing users to start transcription jobs and retrieve results directly from Claude Desktop.
mcp-ytmusic
Enables users to search the YouTube Music catalog and manage playlists using natural language. It provides tools for searching songs, albums, and artists, as well as performing playlist operations like creating, adding, and deleting tracks.
Postscript MCP Server
superthread-mcp-extended
An enhanced MCP server for Superthread with comprehensive CRUD operations and optimized workflows, acting as a drop-in replacement with more functionality.
blender-mcp-enhanced
Connects Blender to Claude AI through the Model Context Protocol for AI-assisted 3D modeling, procedural geometry creation, and persistent multi-turn workflows with shared context and advanced tool chaining.
mcpwall
mcpwall is a deterministic security proxy for MCP tool calls — iptables for MCP. It sits between the MCP client and server, intercepting every JSON-RPC request and enforcing YAML-defined policies.
business-central-mcp
Give AI assistants direct access to Microsoft Dynamics 365 Business Central via native WebSocket protocol.
Device MCP Server
A comprehensive MCP server for network device management via SSH/Telnet. Supports multiple vendors such as Cisco IOS and BDCOM, enabling AI assistants to execute commands and manage routers, switches, and firewalls.
Chat Human MCP Server
Enables AI agents to send messages to human users via chat platforms (currently Discord) and optionally wait for human responses, facilitating human-in-the-loop interactions.
Weather MCP Server
Provides global weather data (current conditions, forecasts, air quality) without requiring an API key.
Confluence API Docs MCP Server
Generates API documentation in Confluence from Swagger/OpenAPI specs or NestJS controller files, including automatic Postman collection generation.
bawbel-mcp
Bawbel MCP Server lets any agent scan MCP servers and skill files for security vulnerabilities mid-conversation. Seven tools covering server-card scanning, conformance scoring, rug pull detection, and AVE threat intelligence queries. Powered by the AVE standard with OWASP MCP Top 10 mapping on every finding. Free, Apache 2.0, no API key required.
Frontier Intelligence
A personal monitoring and trend synthesis system that collects signals from multiple sources, processes them through LangChain/GigaChat, stores them in vector and knowledge graphs, and delivers insights via MCP to Codex/Claude projects with workspace isolation.
proxmox-mcp
A Python MCP server for Proxmox VE that lets AI agents read cluster status, power guests on/off, and provision new VMs/containers through natural language, while preventing any destructive actions.
Academic MCP
Enables AI tools to search and retrieve data from various South Korean and Japanese academic databases, including research journals, historical records, and legislative information.
altium-mcp
Use Claude to control or ask questions about your Altium project.
who_reps-mcp
Given a U.S. street address, returns the people who represent it (U.S. Senators, House member, Governor, and state legislators) using free public data, with no API keys required for federal officials.
claude-bridge
Shared MCP server enabling two Claude Code instances to collaborate over the internet by sharing messages, memory, tasks, and files through a common URL and room key.
sbl-debugger
Enables AI assistants to debug ARM Cortex-M targets via GDB and OpenOCD, supporting attach, breakpoints, stepping, register/memory inspection, and SVD peripheral decoding.
video-editor
An MCP server that enables natural language video editing using FFmpeg, supporting operations like trimming, merging, format conversion, and more with real-time progress tracking.
mcp-server-google-cloud-logging
Para obter registros do Logging usando o gcloud, você pode usar o comando `gcloud logging read`. Aqui estão algumas maneiras de usá-lo: **1. Obter os registros mais recentes:** ```bash gcloud logging read ``` Este comando exibirá os registros mais recentes do seu projeto atual. **2. Obter registros de um determinado período de tempo:** ```bash gcloud logging read --start-time="2023-10-27T00:00:00Z" --end-time="2023-10-28T00:00:00Z" ``` Este comando exibirá os registros entre 27 de outubro de 2023 e 28 de outubro de 2023. Certifique-se de ajustar as datas e horários conforme necessário. O formato da data/hora deve ser ISO 8601 (como no exemplo). **3. Filtrar registros por severidade:** ```bash gcloud logging read --severity=ERROR ``` Este comando exibirá apenas os registros com severidade ERROR. Outras opções de severidade incluem: `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`. **4. Filtrar registros por um filtro específico:** ```bash gcloud logging read "resource.type=gce_instance AND logName:\"projects/YOUR_PROJECT_ID/logs/YOUR_LOG_NAME\"" ``` Substitua `YOUR_PROJECT_ID` pelo ID do seu projeto do Google Cloud e `YOUR_LOG_NAME` pelo nome do log que você deseja consultar. Este exemplo filtra registros de instâncias GCE (máquinas virtuais) e de um log específico. **5. Salvar os registros em um arquivo:** ```bash gcloud logging read > logs.txt ``` Este comando salvará todos os registros recuperados no arquivo `logs.txt`. **6. Limitar o número de registros retornados:** ```bash gcloud logging read --limit=100 ``` Este comando retornará apenas os 100 registros mais recentes. **7. Especificar o projeto:** Se você não estiver no projeto padrão, você pode especificar o projeto usando a flag `--project`: ```bash gcloud logging read --project=YOUR_PROJECT_ID ``` Substitua `YOUR_PROJECT_ID` pelo ID do seu projeto. **Recursos adicionais:** * **Documentação oficial do `gcloud logging read`:** [https://cloud.google.com/sdk/gcloud/reference/logging/read](https://cloud.google.com/sdk/gcloud/reference/logging/read) * **Documentação sobre filtros de registro:** [https://cloud.google.com/logging/docs/view/advanced-queries](https://cloud.google.com/logging/docs/view/advanced-queries) **Dicas:** * Use aspas duplas para envolver filtros complexos. * Você pode combinar várias opções para criar consultas mais específicas. * Para obter ajuda com o comando `gcloud logging read`, execute `gcloud logging read --help`. Lembre-se de substituir os valores de espaço reservado (como `YOUR_PROJECT_ID` e `YOUR_LOG_NAME`) pelos valores reais do seu ambiente.
meridian-mcp
A timezone-aware MCP server that converts times, looks up current local times, and finds overlapping working-hour slots for distributed teams.
Agent Audit Logger MCP
Hash-chained HMAC-signed audit log MCP for A2A (agent-to-agent) calls. Every tool-call, agent-handoff, decision gets a tamper-evident signed record.
GAS MCP Server
Enables local execution of Google Apps Script tools for Google Workspace automation via an MCP server, using gas-fakes for secure sandboxed execution.
Metabase MCP Server
Enables AI assistants to interact with Metabase analytics platform, allowing them to query databases, execute SQL, manage dashboards and cards, and access analytics data through natural language.
Fal Recraft V3 MCP Server
Provides access to the fal-ai/recraft/v3 image generation model for creating high-quality images with advanced style controls including realistic, digital illustration, and vector art styles, plus color guidance and local image download capabilities.
RenderDoc MCP Server
Enables AI assistants to access RenderDoc capture data and assist in graphics debugging via a file-based IPC bridge.