Volkern MCP Server
Integrates Volkern CRM with AI agents to manage leads, schedule appointments, and handle tasks through natural language. It enables users to interact with CRM data, send WhatsApp messages, and track interactions directly within MCP-compatible clients.
README
Volkern MCP Server
Servidor MCP (Model Context Protocol) para integrar Volkern CRM con agentes de IA como Claude, GPT, y otros clientes compatibles con MCP.
Instalación
Opción 1: Instalación global desde NPM (Recomendado)
npm install -g volkern-mcp-server
Opción 2: Usando npx (sin instalación)
npx volkern-mcp-server
Opción 3: Desde código fuente
git clone https://github.com/volkern/mcp-server.git
cd mcp-server
npm install
npm run build
Configuración
El servidor requiere las siguientes variables de entorno:
export VOLKERN_API_KEY="tu_api_key_aqui"
export VOLKERN_API_URL="https://volkern.app/api" # Opcional, usa este valor por defecto
Uso con Claude Desktop
Agrega la siguiente configuración a tu archivo claude_desktop_config.json:
Si instalaste con NPM (Recomendado)
{
"mcpServers": {
"volkern": {
"command": "volkern-mcp",
"env": {
"VOLKERN_API_KEY": "tu_api_key_aqui"
}
}
}
}
Si usas npx
{
"mcpServers": {
"volkern": {
"command": "npx",
"args": ["volkern-mcp-server"],
"env": {
"VOLKERN_API_KEY": "tu_api_key_aqui"
}
}
}
}
Si instalaste desde código fuente
macOS/Linux:
{
"mcpServers": {
"volkern": {
"command": "node",
"args": ["/ruta/a/volkern-mcp-server/dist/index.js"],
"env": {
"VOLKERN_API_KEY": "tu_api_key_aqui"
}
}
}
}
Windows:
{
"mcpServers": {
"volkern": {
"command": "node",
"args": ["C:\\ruta\\a\\volkern-mcp-server\\dist\\index.js"],
"env": {
"VOLKERN_API_KEY": "tu_api_key_aqui"
}
}
}
}
Herramientas Disponibles
Gestión de Leads
| Herramienta | Descripción |
|---|---|
volkern_list_leads |
Listar leads con filtros opcionales |
volkern_get_lead |
Obtener detalles de un lead por ID |
volkern_create_lead |
Crear un nuevo lead |
volkern_update_lead |
Actualizar un lead existente |
Citas/Appointments
| Herramienta | Descripción |
|---|---|
volkern_check_disponibilidad |
Consultar horarios disponibles |
volkern_list_citas |
Listar citas con filtros |
volkern_create_cita |
Crear una nueva cita |
volkern_update_cita |
Actualizar una cita |
volkern_cita_accion |
Confirmar, cancelar o reprogramar |
Servicios
| Herramienta | Descripción |
|---|---|
volkern_list_servicios |
Listar servicios del catálogo |
volkern_get_servicio |
Obtener detalles de un servicio |
Tareas
| Herramienta | Descripción |
|---|---|
volkern_create_task |
Crear tarea de seguimiento |
volkern_list_tasks |
Listar tareas de un lead |
volkern_complete_task |
Marcar tarea como completada |
Mensajería
| Herramienta | Descripción |
|---|---|
volkern_send_whatsapp |
Enviar mensaje de WhatsApp |
volkern_list_conversaciones |
Listar conversaciones |
Interacciones
| Herramienta | Descripción |
|---|---|
volkern_list_interactions |
Listar interacciones de un lead |
volkern_create_interaction |
Registrar llamada, email, reunión |
Notas
| Herramienta | Descripción |
|---|---|
volkern_list_notes |
Listar notas de un lead |
volkern_create_note |
Agregar nota a un lead |
Ejemplos de Uso
Crear un lead y agendar cita
Usuario: Crea un lead para Juan Pérez, email juan@example.com, y agenda una cita para mañana a las 10am
Agente:
1. volkern_create_lead(nombre: "Juan Pérez", email: "juan@example.com")
2. volkern_check_disponibilidad(fecha: "2026-02-09")
3. volkern_create_cita(leadId: "...", fechaHora: "2026-02-09T10:00:00Z", titulo: "Reunión inicial")
Consultar disponibilidad
Usuario: ¿Qué horarios hay disponibles para el lunes?
Agente:
1. volkern_check_disponibilidad(fecha: "2026-02-10")
Crear tarea de seguimiento
Usuario: Crea un recordatorio para llamar a Juan mañana
Agente:
1. volkern_list_leads(search: "Juan")
2. volkern_create_task(leadId: "...", tipo: "llamada", titulo: "Llamar a Juan", fechaVencimiento: "2026-02-09T09:00:00Z")
Desarrollo
# Ejecutar en modo desarrollo
npm run dev
# Compilar
npm run build
# Ejecutar compilado
npm start
Troubleshooting
Error: VOLKERN_API_KEY not set
Asegúrate de configurar la variable de entorno antes de iniciar el servidor.
Error 401: No autorizado
Verifica que tu API key tenga los permisos necesarios en Volkern (Configuración → API Keys).
Error 409: Conflicto de horario
El slot solicitado ya está ocupado. Consulta disponibilidad con volkern_check_disponibilidad.
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.
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.
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.
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.