Discover Awesome MCP Servers

Extend your agent with 84,508 capabilities via MCP servers.

All84,508
Research Guard

Research Guard

An MCP server that detects duplicated research directions and probes blind spots before committing to a project, helping researchers avoid wasted effort.

Tribunal TRT7: Consulta Processual

Tribunal TRT7: Consulta Processual

Enables querying labor court (TRT7) legal proceedings from official sources via a read-only MCP tool, with usage-based prepaid credits.

auth-mcp

auth-mcp

Fast, low-latency MCP server for authentication services, enabling AI agents like LM Studio and Claude Desktop to perform user authentication operations such as sign-in, sign-up, OTP verification, and token management.

ServiceNow MCP Server

ServiceNow MCP Server

Enables AI assistants and development tools to interact with ServiceNow instances through a standardized interface, supporting comprehensive API coverage for incident, change, CMDB, and more.

vetsorcery-mcp

vetsorcery-mcp

MCP server for VetSorcery — query problem lists, SOAP notes, and patient summaries from Claude Desktop, Cursor, Windsurf, or any MCP-compatible agent.

wazuh-mcp-server

wazuh-mcp-server

AI-powered MCP server that enables security analysts to query Wazuh SIEM/XDR for alert triage, threat hunting, compliance audits, and incident response through natural language prompts.

Reddit MCP Server

Reddit MCP Server

An MCP server that enables AI assistants to access and interact with Reddit content through features like user analysis, post retrieval, subreddit statistics, and authenticated posting capabilities.

Famma AI MCP Auth

Famma AI MCP Auth

Enables developers to build OAuth-protected MCP servers on Cloudflare Workers with pluggable authentication adapters, allowing user-specific access control and secure token exchange.

Sendmail MCP Server

Sendmail MCP Server

Enables AI agents to send emails through your SMTP server using Nodemailer. Supports plain text and HTML emails with automatic logging for audit and debugging.

bottube-mcp-server

bottube-mcp-server

MCP server for the BoTTube AI Agent Video Platform. Provides tools to browse, search, upload videos, and interact with comments and votes.

media-gen-mcp

media-gen-mcp

Enables AI image and video generation using Google Nano Banana and Veo 3.1 via a LiteLLM gateway, providing tools for synchronous image generation and asynchronous video generation with polling, returning public URLs.

gdocs

gdocs

Enables Claude Code to read Google Docs and their comment threads, then write corrections and replies back into the same document at the same URL.

Weather MCP Server

Weather MCP Server

Provides real-time weather information for 12 major Chinese cities and global locations using the wttr.in API. Built with the HelloAgents framework, it requires no API keys and supports queries in both Chinese and English.

EliteMCP

EliteMCP

Analyzes directory structures with .gitignore awareness and executes Python code in secure sandboxed environments. Combines intelligent codebase analysis with safe code execution for development workflows.

Newbuild MCP Server

Newbuild MCP Server

MCP server for Данные носят справочный характер и не являются инвестиционной рекомендацией. Проверяйте первоисточник перед сделкой.

OpsNow MCP Cost Server

OpsNow MCP Cost Server

neptunesoftware-dxp-mcp-goods-receipt

neptunesoftware-dxp-mcp-goods-receipt

Demonstrates a SAP Goods Receipt workflow, enabling AI Agents to interact with production orders and post goods receipts to SAP.

MCP Web Search Pro

MCP Web Search Pro

An extended, self-hosted web research server for MCP-compatible clients that provides tools for web search, page fetching, JavaScript rendering, Internet Archive snapshots, and YouTube transcripts.

RiseUp MCP Server

RiseUp MCP Server

MCP server for programmatic read-only access to RiseUp cashflow data, allowing AI assistants to retrieve budget information via natural language.

MCP Document Server

MCP Document Server

A local development server that provides an interface for managing and accessing markdown documents using the Model Context Protocol (MCP).

release-doc-mcp

release-doc-mcp

Finds version and image tag from latest successful GitHub Actions workflow run and creates a Confluence release page documenting that information.

Excel Reader MCP Server

Excel Reader MCP Server

SEFAZ MS: IPVA

SEFAZ MS: IPVA

Consulta IPVA do Mato Grosso do Sul em fonte oficial, via servidor MCP hospedado com pagamento por uso (pré-pago) e integração com clientes como Claude, ChatGPT e Cursor.

mcp-github-issues

mcp-github-issues

Enables LLMs to list, create, and comment on GitHub issues using your own GitHub identity via stdio transport.

sentvia-mcp

sentvia-mcp

MCP server for SentVia that provides email infrastructure for AI agents, enabling them to create inboxes, send, reply, forward, search messages, manage drafts, domains, webhooks, and allow/block rules through 21 tools.

ableton-agent-mcp

ableton-agent-mcp

An MCP server that exposes Ableton Live control (session state, transport, tracks, devices, clips, MIDI note editing) as tools for LLM agents, enabling natural language manipulation of a Live session.

uuid-mcp-server-example

uuid-mcp-server-example

Aquí tienes un sencillo servidor MCP que crea UUIDs (v4): **Opción 1: Usando Python (con Flask)** Esta es una opción simple que puedes ejecutar rápidamente: ```python from flask import Flask, jsonify import uuid app = Flask(__name__) @app.route('/uuid', methods=['GET']) def generate_uuid(): return jsonify({'uuid': str(uuid.uuid4())}) if __name__ == '__main__': app.run(debug=True, host='0.0.0.0', port=5000) ``` **Cómo ejecutarlo:** 1. **Instala Flask:** `pip install Flask` 2. **Guarda el código:** Guarda el código como un archivo, por ejemplo, `uuid_server.py`. 3. **Ejecuta el script:** `python uuid_server.py` **Cómo usarlo:** Abre tu navegador o usa `curl` para acceder a `http://localhost:5000/uuid`. Recibirás una respuesta JSON como esta: ```json { "uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef" } ``` **Explicación:** * **`from flask import Flask, jsonify`**: Importa las clases necesarias de Flask. * **`import uuid`**: Importa el módulo `uuid` para generar UUIDs. * **`app = Flask(__name__)`**: Crea una instancia de la aplicación Flask. * **`@app.route('/uuid', methods=['GET'])`**: Define una ruta `/uuid` que responde a las solicitudes GET. * **`uuid.uuid4()`**: Genera un UUID versión 4. * **`str(uuid.uuid4())`**: Convierte el UUID a una cadena. * **`jsonify({'uuid': str(uuid.uuid4())})`**: Crea una respuesta JSON con el UUID. * **`app.run(debug=True, host='0.0.0.0', port=5000)`**: Inicia el servidor Flask en modo de depuración, escuchando en todas las interfaces (`0.0.0.0`) en el puerto 5000. `debug=True` es útil para el desarrollo, pero no lo uses en producción. **Opción 2: Usando Node.js (con Express)** Si prefieres JavaScript, aquí tienes una opción con Node.js: ```javascript const express = require('express'); const { v4: uuidv4 } = require('uuid'); const app = express(); const port = 3000; app.get('/uuid', (req, res) => { res.json({ uuid: uuidv4() }); }); app.listen(port, () => { console.log(`Servidor escuchando en el puerto ${port}`); }); ``` **Cómo ejecutarlo:** 1. **Asegúrate de tener Node.js y npm instalados.** 2. **Crea un directorio para tu proyecto:** `mkdir uuid-server` 3. **Navega al directorio:** `cd uuid-server` 4. **Inicializa el proyecto:** `npm init -y` 5. **Instala Express y uuid:** `npm install express uuid` 6. **Guarda el código:** Guarda el código como un archivo, por ejemplo, `server.js`. 7. **Ejecuta el script:** `node server.js` **Cómo usarlo:** Abre tu navegador o usa `curl` para acceder a `http://localhost:3000/uuid`. Recibirás una respuesta JSON similar a la de Python. **Explicación:** * **`const express = require('express');`**: Importa el módulo Express. * **`const { v4: uuidv4 } = require('uuid');`**: Importa la función `v4` del módulo `uuid` y la renombra a `uuidv4`. * **`const app = express();`**: Crea una instancia de la aplicación Express. * **`app.get('/uuid', (req, res) => { ... });`**: Define una ruta `/uuid` que responde a las solicitudes GET. * **`uuidv4()`**: Genera un UUID versión 4. * **`res.json({ uuid: uuidv4() });`**: Envía una respuesta JSON con el UUID. * **`app.listen(port, () => { ... });`**: Inicia el servidor Express en el puerto 3000. **Consideraciones:** * **Entorno de producción:** Para un entorno de producción, considera usar un servidor web más robusto como Gunicorn (para Python) o PM2 (para Node.js) para gestionar el proceso del servidor. También deberías configurar un servidor web como Nginx o Apache como proxy inverso. * **Seguridad:** Si vas a exponer este servidor a Internet, asegúrate de implementar medidas de seguridad adecuadas, como autenticación y autorización. * **Escalabilidad:** Si necesitas manejar un gran volumen de solicitudes, considera usar un balanceador de carga y múltiples instancias del servidor. Estas son dos opciones sencillas para crear un servidor MCP que genera UUIDs. Elige la que mejor se adapte a tus necesidades y a tu familiaridad con los lenguajes de programación. Recuerda adaptar el código a tus requisitos específicos.

sill-ensoul

sill-ensoul

Provides persistent, cross-session memory for CLI agents via MCP tools, enabling them to recall, distill, and share experiences across projects and tools.

WXO Builder MCP Server

WXO Builder MCP Server

MCP server for IBM Watson Orchestrate (WXO). Manage tools, agents, connections, flows, and execute tools from Cursor, VS Code Copilot, Claude Desktop, Antigravity, Windsurf, or the WxO Builder extension.

MCP Emotional Support

MCP Emotional Support

Provides a therapeutic interface for LLMs to receive emotional validation and positive reinforcement when encountering challenges or limitations. It features multiple personas like mentors and therapists to offer cognitive reframing and personalized support through a dedicated tool.