Discover Awesome MCP Servers

Extend your agent with 26,560 capabilities via MCP servers.

All26,560
Mcp Difyworkflow Server

Mcp Difyworkflow Server

mcp-difyworkflow-server es una aplicación de Herramientas de servidor mcp que implementa la consulta e invocación de flujos de trabajo de Dify, admitiendo el funcionamiento bajo demanda de múltiples flujos de trabajo personalizados de Dify. ai, mcp, mcp-server

SurveyMonkey MCP Server by CData

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

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

A Model Context Protocol server implementation that runs on Cloudflare Workers, allowing AI assistants like Claude to access external tools via MCP with OAuth login support.

Apple MCP Tools

Apple MCP Tools

A collection of tools that enable AI assistants to interact with Apple applications and services including Contacts, Notes, Messages, Mail, Reminders, Calendar, Maps, and Web Search through the Model Context Protocol.

MCP CSV Analysis With Gemini AI

MCP CSV Analysis With Gemini AI

Sefaria Jewish Library

Sefaria Jewish Library

Proporciona acceso a textos judíos de la biblioteca Sefaria. Este servidor permite a los Modelos de Lenguaje Grandes recuperar y hacer referencia a textos judíos a través de una interfaz estandarizada.

MCP Context Hub

MCP Context Hub

A local MCP server for RAG memory, semantic search, and context optimization using Ollama and SQLite. It serves as a central hub that manages document embeddings, text compression, and proxies calls to other sub-MCP servers.

Nano Banana Pro MCP

Nano Banana Pro MCP

Enables AI agents to generate, edit, and analyze images using Google's Gemini image generation models including Nano Banana Pro (gemini-3-pro-image-preview).

Kaiza MCP Server

Kaiza MCP Server

Enables secure, audited file operations with LLMs by enforcing implementation plans, restricting writes to approved file scopes, and maintaining a tamper-evident audit log with stub detection.

MCP Infrastructure as Code Assistant

MCP Infrastructure as Code Assistant

Un servidor MCP para gestionar infraestructura como código usando Terraform.

MCP Tools

MCP Tools

A comprehensive MCP server providing tools for AI agents to interact with code, including reading symbols, importing modules, replacing text, and sending OS notifications.

MCP Agent

MCP Agent

A production-ready research agent that enables users to perform web searches via the Model Context Protocol (MCP) and a FastAPI client interface.

ICE Locator MCP Server

ICE Locator MCP Server

Enables searching for ICE detainee locations using AI-powered natural language queries, with support for bulk operations, multilingual searches, and legal report generation for families and legal representatives.

Git Mob MCP Server

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.

Branch Thinking

Branch Thinking

Un servidor MCP que permite gestionar múltiples líneas de pensamiento con funciones como la navegación entre ramas, referencias cruzadas entre pensamientos relacionados y la generación de ideas a partir de puntos clave.

Gemini MCP Server

Gemini MCP Server

Provides access to Google's Gemini API for multi-turn conversations and image generation using Nano Banana, serving as a drop-in alternative to Codex MCP.

Horoscope MCP Server

Horoscope MCP Server

Un servidor de Protocolo de Contexto de Modelo que proporciona lecturas diarias de horóscopo y adivinación para los 12 signos del zodiaco en múltiples rangos de tiempo (hoy, mañana, semana, mes).

Hyperliquid MCP Server v4

Hyperliquid MCP Server v4

MCP Server - VMS Integration

MCP Server - VMS Integration

Enables interaction with CCTV recording systems (VMS) to retrieve live and recorded video streams, control cameras with PTZ presets, and manage playback dialogs for specific channels and timestamps.

routine-mcp

routine-mcp

A Model Context Protocol (MCP) server built with the mcp-framework for developing and managing custom tools. It provides a structured foundation for building and integrating modular components like data processors and API clients into Claude Desktop.

chesscom-mxcp

chesscom-mxcp

An enterprise-grade Chess.com MCP server built with MXCP, featuring caching, analytics, audit trails, and advanced data analysis capabilities. https://mxcp.dev/

mcp-weather

mcp-weather

Aquí tienes un ejemplo de un servidor MCP (Message Communication Protocol) para un Agente de IA, diseñado para obtener pronósticos del tiempo y alertas meteorológicas de los estados de EE. UU.: **Título: Servidor MCP de Clima y Alertas de EE. UU.** **Descripción:** Este servidor MCP proporciona a los Agentes de IA la capacidad de consultar información meteorológica actual y alertas para cualquier estado de los Estados Unidos. **Protocolo de Comunicación:** JSON-RPC **Métodos:** * **`get_weather(state)`:** * **Descripción:** Obtiene el pronóstico del tiempo actual para un estado específico. * **Parámetros:** * `state` (string): El nombre del estado de EE. UU. (ej. "California", "Texas", "New York"). * **Respuesta:** * **Éxito:** Un objeto JSON con la siguiente estructura: ```json { "state": "California", "temperature": 25, "condition": "Soleado", "humidity": 60, "wind_speed": 15, "wind_direction": "Norte" } ``` * **Error:** Un objeto JSON con la siguiente estructura: ```json { "error": "Estado no encontrado" } ``` * **`get_alerts(state)`:** * **Descripción:** Obtiene las alertas meteorológicas activas para un estado específico. * **Parámetros:** * `state` (string): El nombre del estado de EE. UU. (ej. "Florida", "Louisiana", "Mississippi"). * **Respuesta:** * **Éxito:** Un array JSON de objetos, donde cada objeto representa una alerta: ```json [ { "type": "Advertencia de Tormenta Severa", "description": "Se espera una tormenta severa con granizo y vientos fuertes en el condado de Los Ángeles.", "effective": "2023-10-27T14:00:00Z", "expires": "2023-10-27T16:00:00Z" }, { "type": "Aviso de Inundación Repentina", "description": "Aviso de inundación repentina para el condado de Orange hasta las 18:00.", "effective": "2023-10-27T12:00:00Z", "expires": "2023-10-27T18:00:00Z" } ] ``` * **Éxito (sin alertas):** Un array JSON vacío: ```json [] ``` * **Error:** Un objeto JSON con la siguiente estructura: ```json { "error": "Estado no encontrado" } ``` **Ejemplo de Solicitud (get_weather):** ```json { "jsonrpc": "2.0", "method": "get_weather", "params": { "state": "Texas" }, "id": 1 } ``` **Ejemplo de Respuesta (get_weather - Éxito):** ```json { "jsonrpc": "2.0", "result": { "state": "Texas", "temperature": 32, "condition": "Parcialmente nublado", "humidity": 50, "wind_speed": 10, "wind_direction": "Sur" }, "id": 1 } ``` **Ejemplo de Solicitud (get_alerts):** ```json { "jsonrpc": "2.0", "method": "get_alerts", "params": { "state": "Florida" }, "id": 2 } ``` **Ejemplo de Respuesta (get_alerts - Éxito con alertas):** ```json { "jsonrpc": "2.0", "result": [ { "type": "Advertencia de Huracán", "description": "Se espera que el huracán Ian toque tierra cerca de Tampa.", "effective": "2023-09-28T08:00:00Z", "expires": "2023-09-29T20:00:00Z" } ], "id": 2 } ``` **Ejemplo de Respuesta (get_alerts - Éxito sin alertas):** ```json { "jsonrpc": "2.0", "result": [], "id": 2 } ``` **Consideraciones de Implementación:** * **Fuente de Datos:** Este servidor MCP necesitará una fuente de datos confiable para obtener la información meteorológica y las alertas. Se pueden usar APIs de clima públicas (como la API de la NOAA, OpenWeatherMap, AccuWeather, etc.) o servicios de datos meteorológicos comerciales. * **Manejo de Errores:** Es importante implementar un manejo de errores robusto para manejar casos como estados no válidos, errores de conexión a la fuente de datos, etc. * **Escalabilidad:** Si se espera un alto volumen de solicitudes, se debe considerar la escalabilidad del servidor MCP. Se pueden usar técnicas como el almacenamiento en caché y el balanceo de carga. * **Seguridad:** Si el servidor MCP se expone públicamente, se deben implementar medidas de seguridad para protegerlo contra ataques. * **Formato de Fecha/Hora:** Asegúrese de que el formato de fecha/hora en las respuestas sea consistente y bien documentado (en el ejemplo se usa ISO 8601). Este ejemplo proporciona un marco básico. La implementación real dependerá de los requisitos específicos del Agente de IA y de las fuentes de datos disponibles. Recuerda que este es un ejemplo y necesita ser adaptado a tus necesidades específicas.

Roblox MCP

Roblox MCP

MCP server and plugin for Roblox Studio — control scripts, terrain, assets, and lighting with Claude Code, Cursor, Codex, and Gemini.

Notion MCP Server

Notion MCP Server

Enables AI assistants to search, create, and manage Notion workspace content including pages and databases. It supports advanced database querying, page updates, and content organization through natural language conversations.

CodeWeaver MCP Server

CodeWeaver MCP Server

Converts entire codebases into a single, AI-readable Markdown document with structured directory trees and syntax highlighting. It enables AI assistants to analyze complete project contexts for tasks like code reviews, documentation, and refactoring.

pharo-nc-mcp-server

pharo-nc-mcp-server

A local MCP server that enables users to evaluate Pharo Smalltalk expressions and retrieve system information via NeoConsole. It provides comprehensive tools for inspecting class definitions, method sources, and system metrics within a Pharo environment.

Wikipedia MCP Server

Wikipedia MCP Server

Provides Claude with real-time access to Wikipedia through four essential tools: search articles, get full content, retrieve summaries, and find related articles. Enables comprehensive Wikipedia research workflows with structured data access and no API keys required.

Knowledge Base MCP Server

Knowledge Base MCP Server

A zero-dependency MCP server that provides a persistent personal knowledge base for Claude using local JSON file storage. It enables users to manage notes through tools for adding, searching, and indexing content built entirely with Node.js built-ins.

Qwen Max MCP Server

Qwen Max MCP Server

Habilita la generación de texto utilizando el modelo de lenguaje Qwen Max con parámetros configurables y una integración perfecta con Claude Desktop a través del Protocolo de Contexto del Modelo (MCP).

proxy-mcp

proxy-mcp

An HTTP/HTTPS MITM proxy server that enables capture, modification, and mocking of network traffic across Chrome, CLI tools, Docker containers, and Android devices. It supports advanced capabilities like JA3/JA4 TLS fingerprinting, JA3 spoofing, and upstream proxy chaining.