
MCP N8N Webhook Server
A Model Context Protocol server that allows AI assistants to save structured information to n8n via webhooks for storage, indexing, and retrieval.
README
MCP N8N Webhook Server
Servidor MCP (Model Context Protocol) para enviar datos a un webhook de n8n para almacenamiento e indexación.
Descripción
Este servidor MCP permite a los asistentes de IA guardar información estructurada en n8n a través de webhooks. Es ideal para:
- Guardar conversaciones y logs de desarrollo
- Almacenar documentación de proyectos
- Indexar información para búsquedas posteriores
- Crear embeddings de contenido para RAG
Instalación
npm install
npm run build
Configuración
Crea un archivo .env
basado en config.example.env
:
cp config.example.env .env
Configura las variables de entorno:
N8N_WEBHOOK_URL
: URL base del webhook de n8nN8N_WEBHOOK_ID
: ID único del webhookN8N_API_KEY
: Clave de API para autenticaciónN8N_INDEX_NAME
: Nombre del índice por defecto (opcional, default: PROJECT_CONVERSATIONS)N8N_TABLE_CATEGORY
: Categoría de tabla por defecto (opcional, default: DEVELOPMENT_LOGS)
Uso
Modo desarrollo
npm run dev
Modo inspector (para testing)
npm run inspector
Modo producción
npm start
Herramientas Disponibles
n8n_save_data
Guarda información estructurada en el webhook de n8n.
Parámetros:
projectName
(requerido): Nombre del proyectoprojectCategory
(requerido): Categoría del proyectocontentType
(requerido): Tipo de contenidotitle
(requerido): Título del contenidodescription
(requerido): Descripción del contenidotext
(requerido): Texto completotags
(requerido): Array de etiquetasprojectId
(opcional): ID del proyectoprojectStatus
(opcional): Estado del proyectolanguage
(opcional): Idioma del contenidoindexName
(opcional): Nombre del índicetableCategory
(opcional): Categoría de tablasource
(opcional): Fuente de los datos
n8n_health_check
Verifica la conectividad con el webhook de n8n.
Estructura del Payload
El servidor envía datos en el siguiente formato:
{
"metadata": {
"timestamp": "2025-07-02T10:30:00Z",
"source": "mcp_assistant",
"version": "1.0"
},
"project": {
"id": "proj_001",
"name": "Sistema de Embeddings",
"category": "AI_ML",
"status": "ACTIVE"
},
"content": {
"type": "CONVERSATION",
"title": "Implementación de almacenamiento vectorial",
"description": "Discusión sobre la arquitectura...",
"text": "Se está implementando un sistema...",
"tags": ["embeddings", "vectorial", "conversaciones"],
"language": "es"
},
"indexing": {
"index_name": "PROJECT_CONVERSATIONS",
"table_category": "DEVELOPMENT_LOGS"
}
}
Licencia
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.