Skip to main content
Glama
jbell-rusty-vantage

Vantage Movers MCP

Vantage Movers MCP

リモートの Model Context Protocol サーバーで、エージェントが Granot / Vantage バックエンドを利用し、MongoDB Atlas を一元的に照会できるようにします。

Vercel 上で mcp-handler v2 と Next.js を使用してホストされています。これは現在 Vercel がサポートする方法です。Streamable HTTP と 2026-07-28 の MCP 仕様を使用し、Redis も長時間稼働する stdio プロセスも使いません。

このライブラリを選ぶ理由

オプション

評価

mcp-handler v2 + Next.js

採用。公式 Vercel アダプター、Fluid compute、Zod 4 ツールスキーマを備え、Cursor では URL として動作します。

xmcp

ファイルベースの優れた代替案。小規模なツールセットには余計なフレームワークです。

公式 MongoDB MCP stdio サーバー

ローカルでは非常に優れています。Vercel Functions では起動できません。このサーバーは、代わりに公式の mongodb ドライバーで同じ 読み取り ツールを実装しています。

Related MCP server: MongoDB MCP Server

必要な MCP 設定

クライアント設定では VANTAGE_API_SECRET が必須です。サーバーは https://vantage-movers-main-server.vercel.app を呼び出すときに、その値を x-api-secret ヘッダーに設定します。

Cursor / Claude スタイルの Streamable HTTP:

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

クライアントが Vantage のヘッダー名を好む場合は、x-api-secret も受け付けられます。

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

リモート URL の場合は、シークレットを env に設定しないでください。HTTP MCP クライアントは headers のみを送信します。env はローカルの stdio サーバー用です。

本番環境では、公開 URL が偽のトークンで Mongo を開けないように、Vercel プロジェクトにも VANTAGE_API_SECRET が保存されています。クライアントの値は一致している必要があります。

MongoDB

公式の MongoDB MCP サーバーは stdio です。このデプロイメントでは、専用の Mongo インターフェースをプロセス内に保持しています。

  • mongo_list_databases

  • mongo_list_collections

  • mongo_collection_schema

  • mongo_collection_indexes

  • mongo_find

  • mongo_aggregate

  • mongo_count

  • mongo_db_stats

読み取り専用です。$out$merge は拒否されます。デフォルトのデータベースは vantagemovers です(TEST_MODE=true の場合は testvantagemovers)。

Form / Call Lead の書き込みには lead ツールを使用してください。生の Mongo 更新では、Sheet Sync と CRM への投稿がスキップされます。

最初のツールスライス

ツール

バックエンド

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

今後のスライス: Granot 同期、Owner Registry の項目、予約ケース。

ローカル

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

ローカルの MCP URL: http://localhost:3100/api/mcp

環境

名前

設定場所

役割

VANTAGE_API_SECRET

Vercel + MCP クライアントヘッダー

このサーバーと Vantage API への認証

VANTAGE_API_BASE_URL

Vercel(オプション)

デフォルトは本番環境

MONGO_URI

Vercel のみ

Mongo ツール用の Atlas 接続

MONGO_DATABASE_NAME

Vercel(オプション)

デフォルトのデータベース名を上書きします

TEST_MODE

オプション

デフォルトのデータベースを testvantagemovers に切り替えます

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