Last.app MCP Remote Bridge
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Last.app MCP Remote Bridgeshow me yesterday's sales report"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Last.app MCP Remote Bridge
Servidor HTTP que expone el MCP de Last.app como endpoint remoto para Claude Desktop.
Permite conectar Claude Desktop al MCP de Last.app añadiéndolo como MCP personalizado por URL, sin necesidad de instalar el plugin .plugin ni tener Cowork.
Despliegue rápido
Opción A: En un servidor con Node.js
# 1. Copiar la carpeta lastapp-mcp-remote a tu servidor
# 2. Instalar dependencias
npm install
# 3. Arrancar
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f node bridge.mjsEl servidor arrancará en http://tu-servidor:3000/mcp.
Para mantenerlo corriendo en segundo plano, usa pm2:
npm install -g pm2
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f pm2 start bridge.mjs --name lastapp-mcp
pm2 saveOpción B: Con Docker
# Construir imagen
docker build -t lastapp-mcp-remote .
# Arrancar contenedor
docker run -d \
--name lastapp-mcp \
-p 3000:3000 \
-e LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f \
--restart unless-stopped \
lastapp-mcp-remoteOpción C: En Render.com (hosting gratuito)
Subir esta carpeta a un repositorio Git (GitHub/GitLab)
Ir a render.com → New → Web Service
Conectar el repositorio
Configurar:
Build Command:
npm installStart Command:
node bridge.mjsEnvironment Variables:
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f
Deploy
Render asigna una URL tipo https://lastapp-mcp-xxxx.onrender.com.
El endpoint MCP será https://lastapp-mcp-xxxx.onrender.com/mcp.
Configurar en Claude Desktop
Una vez desplegado, añadir en Claude Desktop:
Ir a Settings → Extensions
Pulsar "Añadir" (o "Add custom MCP")
Pegar la URL del servidor:
https://tu-servidor.com/mcpGuardar
Abrir una conversación nueva y probar: "¿Cómo fueron las ventas de ayer?"
Variables de entorno
Variable | Requerida | Default | Descripción |
| Sí | — | API key de Last.app |
| No | 3000 | Puerto HTTP |
| No | — | Secret compartido para auth |
| No |
| URL de la API |
| No | 30000 | Timeout en ms |
Seguridad
En producción, se recomienda:
Usar HTTPS (Render, Railway, etc. lo dan automáticamente)
Configurar
BRIDGE_SECRETpara que solo clientes autorizados puedan conectarseNo exponer el puerto directamente a internet sin un reverse proxy
Verificar que funciona
# Health check
curl https://tu-servidor.com/
# Debería devolver:
# {"name":"lastapp-mcp-remote","version":"0.1.0","status":"ok","activeSessions":0}This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ekaibide/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server