Skip to main content
Glama
ekaibide

Last.app MCP Remote Bridge

by ekaibide

Last.app MCP Remote Bridge

HTTP-Server, der das MCP von Last.app als Remote-Endpunkt für Claude Desktop bereitstellt.

Ermöglicht die Verbindung von Claude Desktop mit dem MCP von Last.app durch Hinzufügen als benutzerdefiniertes MCP per URL, ohne dass das .plugin-Plugin installiert oder Cowork vorhanden sein muss.

Schnelle Bereitstellung

Option A: Auf einem Server mit 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

Der Server startet unter http://dein-server:3000/mcp.

Um ihn im Hintergrund laufen zu lassen, verwende pm2:

npm install -g pm2
LASTAPP_API_KEY=393f8be1-5860-4b38-86ce-1993039cad3f pm2 start bridge.mjs --name lastapp-mcp
pm2 save

Option B: Mit 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

Option C: Auf Render.com (kostenloses Hosting)

  1. Lade diesen Ordner in ein Git-Repository hoch (GitHub/GitLab)

  2. Gehe zu render.com → New → Web Service

  3. Verbinde das Repository

  4. Konfiguration:

    • Build Command: npm install

    • Start Command: node bridge.mjs

    • Environment Variables: LASTAPP_API_KEY = 393f8be1-5860-4b38-86ce-1993039cad3f

  5. Deploy

Render weist eine URL wie https://lastapp-mcp-xxxx.onrender.com zu. Der MCP-Endpunkt lautet https://lastapp-mcp-xxxx.onrender.com/mcp.

Konfiguration in Claude Desktop

Nach der Bereitstellung in Claude Desktop hinzufügen:

  1. Gehe zu Settings → Extensions

  2. Klicke auf "Añadir" (oder "Add custom MCP")

  3. Füge die Server-URL ein: https://dein-server.com/mcp

  4. Speichern

Öffne eine neue Unterhaltung und teste: "Wie waren die Verkäufe gestern?"

Umgebungsvariablen

Variable

Erforderlich

Standard

Beschreibung

LASTAPP_API_KEY

Ja

API-Key von Last.app

PORT

Nein

3000

HTTP-Port

BRIDGE_SECRET

Nein

Shared Secret für die Authentifizierung

LASTAPP_API_URL

Nein

https://api.last.app/v2

API-URL

LASTAPP_TIMEOUT

Nein

30000

Timeout in ms

Sicherheit

In der Produktion wird empfohlen:

  • HTTPS zu verwenden (Render, Railway usw. bieten dies automatisch an)

  • BRIDGE_SECRET zu konfigurieren, damit nur autorisierte Clients eine Verbindung herstellen können

  • Den Port nicht ohne Reverse Proxy direkt dem Internet auszusetzen

Überprüfung der Funktionalität

# Health check
curl https://tu-servidor.com/

# Debería devolver:
# {"name":"lastapp-mcp-remote","version":"0.1.0","status":"ok","activeSessions":0}
-
security - not tested
F
license - not found
-
quality - not tested

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