Skip to main content
Glama
jbell-rusty-vantage

Vantage Movers MCP

Vantage Movers MCP

Remote Model Context Protocol Server, damit Agenten das Granot-/Vantage-Backend nutzen und MongoDB Atlas von einem Ort aus abfragen können.

Gehostet auf Vercel mit mcp-handler v2 und Next.js. Das ist der aktuell von Vercel unterstützte Weg: Streamable HTTP plus die 2026-07-28-MCP-Spezifikation, kein Redis, kein langlebiger stdio-Prozess.

Warum diese Bibliothek

Option

Bewertung

mcp-handler v2 + Next.js

Gewählt. Offizieller Vercel-Adapter, Fluid compute, Zod 4 Tool-Schemas, funktioniert in Cursor als URL.

xmcp

Gute dateibasierte Alternative. Zusätzliches Framework für ein kleines Toolset.

Offizieller MongoDB-MCP-stdio-Server

Lokal ausgezeichnet. Kann nicht auf Vercel Functions gestartet werden. Dieser Server implementiert stattdessen die gleichen Lese-Tools mit dem offiziellen mongodb-Treiber.

Related MCP server: MongoDB MCP Server

Erforderliche MCP-Konfiguration

VANTAGE_API_SECRET ist in der Client-Konfiguration erforderlich. Der Server setzt diesen Wert beim Aufruf von https://vantage-movers-main-server.vercel.app in den x-api-secret-Header.

Streamable HTTP im Cursor-/Claude-Stil:

{
  "mcpServers": {
    "vantage-movers": {
      "url": "https://vantage-movers-mcp.vercel.app/api/mcp",
      "headers": {
        "Authorization": "Bearer <VANTAGE_API_SECRET>"
      }
    }
  }
}

x-api-secret wird ebenfalls akzeptiert, wenn ein Client den Vantage-Header-Namen bevorzugt:

{
  "mcpServers": {
    "vantage-movers": {
      "url": "https://vantage-movers-mcp.vercel.app/api/mcp",
      "headers": {
        "x-api-secret": "<VANTAGE_API_SECRET>"
      }
    }
  }
}

Legen Sie das Secret bei einer Remote-URL nicht in env ab. HTTP-MCP-Clients senden nur headers. env ist für lokale stdio-Server.

Außerdem speichert die Produktion VANTAGE_API_SECRET im Vercel-Projekt, damit eine öffentliche URL nicht mit einem erfundenen Token auf Mongo zugreifen kann. Der Client-Wert muss übereinstimmen.

MongoDB

Der offizielle MongoDB-MCP-Server ist ein stdio-Server. Dieses Deployment stellt eine dedizierte Mongo-Oberfläche prozessintern bereit:

  • mongo_list_databases

  • mongo_list_collections

  • mongo_collection_schema

  • mongo_collection_indexes

  • mongo_find

  • mongo_aggregate

  • mongo_count

  • mongo_db_stats

Schreibgeschützt. $out und $merge werden abgelehnt. Standarddatenbank ist vantagemovers (oder testvantagemovers, wenn TEST_MODE=true).

Verwenden Sie für Form-/Call-Lead-Schreibvorgänge die Lead-Tools. Rohe Mongo-Mutationen würden Sheet Sync und CRM-Posting überspringen.

Erste Tool-Gruppe

Tool

Backend

search_leads

POST /api/v1/{form,call}-leads/search

list_leads

GET /api/v1/{form,call}-leads

get_lead

GET /api/v1/{form,call}-leads/:id

create_lead

POST /api/v1/{form,call}-leads

update_lead

PATCH /api/v1/{form,call}-leads/:id

delete_lead

DELETE /api/v1/{form,call}-leads/:id

vantage_health

GET /health, GET /db

Spätere Tool-Gruppen: Granot-Syncs, Owner-Registry-Einträge, Buchungsfälle.

Lokal

pnpm install
cp .env.example .env.local
# fill VANTAGE_API_SECRET and MONGO_URI
pnpm test
pnpm typecheck
pnpm dev

MCP-URL lokal: http://localhost:3100/api/mcp

Umgebung

Name

Where

Rolle

VANTAGE_API_SECRET

Vercel + MCP-Client-Header

Authentifizierung gegenüber diesem Server und der Vantage-API

VANTAGE_API_BASE_URL

Vercel, optional

Standard: Produktion

MONGO_URI

Nur Vercel

Atlas-Verbindung für Mongo-Tools

MONGO_DATABASE_NAME

Vercel, optional

Überschreibt den Standard-Datenbanknamen

TEST_MODE

optional

Stellt die Standarddatenbank auf testvantagemovers um

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to query MongoDB databases and project management REST APIs through a universal MCP interface, providing read-time access to workspace data.
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to securely connect to MongoDB databases via MCP, with deployment modes from basic to RBAC-gated with Keycloak authentication.
    28
    2
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    A read-only MongoDB MCP server designed for serverless deployment on Vercel, providing secure, limited access to MongoDB databases for AI assistants.
    1
  • F
    license
    Not graded
    quality
    B
    maintenance
    A secure, read-only MCP server that enables AI agents to connect to MongoDB, perform queries and aggregations, and manage connections.

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/jbell-rusty-vantage/vantage-movers-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server