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
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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
FlicenseNot gradedqualityCmaintenanceA local MCP server that connects Claude Desktop to your HelpPilot tenant on pilot.helpvisor.gr, forwarding tool calls and prompts over HTTPS.- AlicenseNot gradedqualityFmaintenanceAn 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.161MIT
- AlicenseNot gradedqualityDmaintenanceA Model Control Protocol (MCP) server that allows Claude to communicate with locally running LLM models via LM Studio.MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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