Skip to main content
Glama
AnEntrypoint

gm-mcp

by AnEntrypoint

gm-mcp

MCP 서버가 gm의 스풀 디스패치 주기(쓰기, 폴링, 정리된 응답)를 모든 MCP 클라이언트에 노출합니다.

하는 일

gm 스풀의 응답을 위해 쓰고(write) 폴링(poll)하는 디스패치 주기 전체를 gm이라는 단일 MCP 도구 호출로 감쌉니다. 호출자가 입력 파일을 쓰고, 출력 파일을 폴링하고, 읽는 세 단계를 따로 수행하는 대신입니다.

  • .gm/exec-spool/in/<verb>/<N>.txt 파일을 씁니다.

  • .gm/exec-spool/out/<verb>-<N>.json 파일이 나타날 때까지 폴링합니다(또는 타임아웃이 지나면 중단).

  • 응답을 평면 YAML 텍스트로 반환하며, 가독성을 위해 자동 정리됩니다:

    • 불투명한 내부 ID(dispatch_id, request_fingerprint)를 제거합니다.

    • 중복되는 response/data 중첩 수준을 최상위로 평탄화합니다(필드 이름이 충돌하지 않는 경우).

    • 긴 텍스트 필드(예: instruction의 전체 단계 본문)는 잘라내고, 전체 텍스트를 읽을 수 있는 디스크에 있는 파일의 이름을 가리키는 포인터를 포함합니다.

    • 히트 배열 순위 내부 정보(recall_hits/bm25_hits/vector_hitscos/score/recency)를 제거합니다.

    • 모든 수준에서 빈/null 필드를 제거합니다.

  • 성공적인 응답에는 스풀 파일 경로가 전혀 포함되지 않습니다(호출자는 이미 verb/cwd를 알고 있음). 해당 경로는 타임아웃/중단/오류 시에만 어디를 봐야 하는지 알려주기 위해 나타납니다.

  • raw_body 문자열 매개변수를 통해 일반 텍스트 본문 verb(exec_js와 그 verb가 지원하는 모든 언어 스템, serp, browser, cdp)를 지원합니다. 이러한 verb는 JSON 객체 본문을 완전히 거부하기 때문입니다.

Related MCP server: windlass

사용법

npx gm-mcp

또는 MCP 클라이언트의 서버 구성에 추가하세요. 예:

{
  "mcpServers": {
    "gm": {
      "command": "npx",
      "args": ["gm-mcp"]
    }
  }
}

도구: gm

매개변수

유형

필수

설명

verb

string

gm 스풀 verb 이름, 예: instruction, prd-add, git_status, exec_js

session_id

string

이 디스패치에 대한 gm SESSION_ID

body

object

아니요

디스패치용 JSON 본문(일반 텍스트 본문 verb에는 유효하지 않음)

raw_body

string

아니요

일반 텍스트 본문 verb용 리터럴 텍스트 본문, body와 상호 배타적

cwd

string

아니요

.gm/exec-spool이 포함된 프로젝트 루트 -- 기본값은 process.cwd()

timeout_seconds

number

아니요

이 시간(초)이 지나면 포기하고 timed_out:true를 반환합니다 (기본값 120)

poll_interval_seconds

number

아니요

응답을 확인하는 주기(초) (기본값 1)

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

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

  • A
    license
    A
    quality
    C
    maintenance
    Enables MCP clients to submit long-running jobs that are executed safely in isolated child processes with a durable SQLite queue, configurable timeouts, retries with backoff, and backpressure.
    5
    MIT
  • F
    license
    A
    quality
    B
    maintenance
    A local STDIO MCP server for running one bounded command and waiting for its final result, eliminating model-driven polling. Designed for builds, test suites, and other trusted foreground commands.
    3
    2
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides MCP tools for reading, listing, writing, searching, watching, and batch-processing files, enabling automated file management and resume matching workflows.
    -

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/AnEntrypoint/gm-mcp'

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