Skip to main content
Glama
jbell-rusty-vantage

Vantage Movers MCP

Vantage Movers MCP

에이전트가 Granot / Vantage 백엔드를 사용하고 MongoDB Atlas를 한곳에서 쿼리할 수 있도록 해주는 원격 Model Context Protocol 서버입니다.

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 서버용입니다.

프로덕션 환경도 Vercel 프로젝트에 VANTAGE_API_SECRET을 저장하므로 공개 URL에서 임의의 토큰으로 Mongo를 열 수 없습니다. 클라이언트 값은 일치해야 합니다.

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 쓰기에는 리드 도구를 사용하세요. 원시 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