Last.app MCP Remote Bridge
Click on "Deploy 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
HTTP server that exposes the Last.app MCP as a remote endpoint for Claude Desktop.
It allows connecting Claude Desktop to the Last.app MCP by adding it as a custom MCP via URL, without needing to install the .plugin plugin or having Cowork.
Quick Deployment
Option A: On a server with 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.mjsThe server will start at http://your-server:3000/mcp.
To keep it running in the background, use pm2:
npm install -g pm2
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f pm2 start bridge.mjs --name lastapp-mcp
pm2 saveOption B: With 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-remoteOption C: On Render.com (free hosting)
Upload this folder to a Git repository (GitHub/GitLab)
Go to render.com → New → Web Service
Connect the repository
Configure:
Build Command:
npm installStart Command:
node bridge.mjsEnvironment Variables:
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f
Deploy
Render assigns a URL like https://lastapp-mcp-xxxx.onrender.com.
The MCP endpoint will be https://lastapp-mcp-xxxx.onrender.com/mcp.
Related MCP server: helppilot-mcp
Configure in Claude Desktop
Once deployed, add it in Claude Desktop:
Go to Settings → Extensions
Click "Add" (or "Add custom MCP")
Paste the server URL:
https://your-server.com/mcpSave
Open a new conversation and test: "How were yesterday's sales?"
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Last.app API key |
| No | 3000 | HTTP port |
| No | — | Shared secret for auth |
| No |
| API URL |
| No | 30000 | Timeout in ms |
Security
In production, it is recommended to:
Use HTTPS (Render, Railway, etc. provide it automatically)
Configure
BRIDGE_SECRETso that only authorized clients can connectDo not expose the port directly to the internet without a reverse proxy
Verify it works
# 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 deployed
Maintenance
Related MCP Connectors
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Zotero MCP server for Claude and ChatGPT: search, citations, safe writes, PDF passages and pages.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceA local MCP server that integrates with Claude Desktop, enabling RAG capabilities to provide Claude with up-to-date private information from custom LlamaCloud indices.225MIT

helppilot-mcpofficial
AlicenseNot gradedqualityCmaintenanceA local MCP server that connects Claude Desktop to your HelpPilot tenant on pilot.helpvisor.gr, forwarding tool calls and prompts over HTTPS.Academic Free v1.1- AlicenseNot gradedqualityDmaintenanceAn MCP server that exposes your local Claude Code CLI over HTTP+SSE, enabling any MCP-compatible client to use your Claude Code MAX/PRO subscription remotely.5 npm2MIT
- AlicenseNot gradedqualityDmaintenanceA Model Control Protocol (MCP) server that allows Claude to communicate with locally running LLM models via LM Studio.MIT