Last.app MCP Remote Bridge
Last.app MCP 원격 브리지
Last.app의 MCP를 Claude Desktop을 위한 원격 엔드포인트로 노출하는 HTTP 서버입니다.
플러그인(.plugin)을 설치하거나 Cowork을 사용할 필요 없이, URL을 통해 사용자 지정 MCP로 추가하여 Claude Desktop을 Last.app MCP에 연결할 수 있습니다.
빠른 배포
옵션 A: 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.mjs서버가 http://tu-servidor:3000/mcp에서 시작됩니다.
백그라운드에서 계속 실행하려면 pm2를 사용하세요:
npm install -g pm2
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f pm2 start bridge.mjs --name lastapp-mcp
pm2 save옵션 B: 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-remote옵션 C: Render.com (무료 호스팅)
이 폴더를 Git 저장소(GitHub/GitLab)에 업로드합니다.
render.com → New → Web Service로 이동합니다.
저장소를 연결합니다.
설정:
Build Command:
npm installStart Command:
node bridge.mjsEnvironment Variables:
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f
배포(Deploy)합니다.
Render는 https://lastapp-mcp-xxxx.onrender.com과 같은 URL을 할당합니다.
MCP 엔드포인트는 https://lastapp-mcp-xxxx.onrender.com/mcp가 됩니다.
Related MCP server: helppilot-mcp
Claude Desktop 설정
배포가 완료되면 Claude Desktop에 추가합니다:
Settings → Extensions로 이동합니다.
"Añadir"(또는 "Add custom MCP")를 클릭합니다.
서버 URL을 붙여넣습니다:
https://tu-servidor.com/mcp저장합니다.
새 대화를 열고 테스트해 보세요: "어제 매출은 어땠어?"
환경 변수
변수 | 필수 | 기본값 | 설명 |
| 예 | — | Last.app API 키 |
| 아니요 | 3000 | HTTP 포트 |
| 아니요 | — | 인증을 위한 공유 비밀 키 |
| 아니요 |
| API URL |
| 아니요 | 30000 | 밀리초 단위 타임아웃 |
보안
운영 환경에서는 다음을 권장합니다:
HTTPS 사용 (Render, Railway 등에서 자동으로 제공)
BRIDGE_SECRET을 설정하여 승인된 클라이언트만 연결할 수 있도록 제한리버스 프록시 없이 포트를 직접 인터넷에 노출하지 않음
작동 확인
# 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.4 npm2MIT
- AlicenseNot gradedqualityDmaintenanceA Model Control Protocol (MCP) server that allows Claude to communicate with locally running LLM models via LM Studio.MIT