initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-10-09 03:06:19 +02:00
commit 13c2298ac0
Se han modificado 20 ficheros con 6112 adiciones y 0 borrados

19
start-server.sh Archivo ejecutable
Ver fichero

@@ -0,0 +1,19 @@
#!/bin/bash
# Script para iniciar el servidor MCP INE en modo HTTP
echo "🚀 Iniciando MCP INE Server (HTTP JSON-RPC)..."
# Verificar si está compilado
if [ ! -d "dist" ]; then
echo "📦 Compilando el proyecto..."
npm run build
fi
# Iniciar servidor
echo "🔧 Servidor escuchando en puerto 3000"
echo "📚 Documentación: http://localhost:3000/api-docs"
echo "🔌 Endpoint MCP: http://localhost:3000/mcp/v1"
echo ""
npm start