Skip to main content
Glama

Formester MCP 서버

AI 에이전트가 양식 제출물에 액세스할 수 있도록 합니다. 응답 읽기, 양식 전체 쿼리, 인사이트 다시 작성, 파일 첨부 처리 기능을 제공합니다.

엔드포인트: https://app.formester.com/mcp

Available tools: read_submission · query_submissions · update_submission · fetch_file

퀵스타트

1단계: 인증 방법 선택

방법

권장 대상

OAuth

대화형 클라이언트 (Claude.ai, Cursor, VS Code) — 브라우저를 통해 승인, 토큰 설정 불필요

API 토큰

스크립트, 자동화 또는 OAuth를 지원하지 않는 클라이언트 — Formester → API에서 한 번 생성

전체 인증 가이드

2단계: AI 클라이언트 연결


Claude

OAuth 사용 (권장)

설정 → 커넥터 → 사용자 지정 커넥터 추가 → 이름 입력 및 URL로 https://app.formester.com/mcp 입력. Claude가 첫 연결 시 승인을 요청합니다.

API 토큰 사용

{
  "mcpServers": {
    "formester": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://app.formester.com/mcp",
        "--header",
        "Authorization: Bearer YOUR_TOKEN_HERE"
      ]
    }
  }
}

Claude Desktop을 완전히 종료하고 다시 시작하세요.

VS Code (GitHub Copilot)

OAuth 사용

.vscode/mcp.json 생성 또는 편집:

{
  "servers": {
    "formester": {
      "type": "http",
      "url": "https://app.formester.com/mcp"
    }
  }
}

VS Code가 자동으로 OAuth 흐름을 처리합니다. 도구를 사용하려면 Copilot Chat을 에이전트 모드로 전환하세요.

API 토큰 사용

{
  "servers": {
    "formester": {
      "type": "http",
      "url": "https://app.formester.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}

Cursor

OAuth 사용

설정 → MCP → 새 MCP 서버 추가:

{
  "mcpServers": {
    "formester": {
      "url": "https://app.formester.com/mcp"
    }
  }
}

Cursor가 처음 사용 시 브라우저를 통해 승인을 요청합니다.

API 토큰 사용

{
  "mcpServers": {
    "formester": {
      "url": "https://app.formester.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}

Claude Code

OAuth 사용

claude mcp add --transport http formester https://app.formester.com/mcp

API 토큰 사용

claude mcp add --transport http formester https://app.formester.com/mcp \
  --header "Authorization: Bearer YOUR_TOKEN_HERE"

Windsurf

OAuth 사용

~/.codeium/windsurf/mcp_config.json 편집:

{
  "mcpServers": {
    "formester": {
      "type": "streamable-http",
      "url": "https://app.formester.com/mcp"
    }
  }
}

API 토큰 사용

{
  "mcpServers": {
    "formester": {
      "type": "streamable-http",
      "url": "https://app.formester.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}

저장 후 Windsurf를 다시 시작하세요.


예시 프롬프트

지원 티켓 요약

Read submission a1b2c3d4 and summarize the issue reported.

문의 양식 분류

Read the last 20 submissions for form xyz, classify each one as 'sales', 'support', or 'other'
based on the message content, and save the category as a custom field called 'ai_category'.

입사 지원서 검토

Read submission a1b2c3d4 with files included. Fetch the resume PDF, extract the candidate's
skills and years of experience, and write a brief evaluation back as 'ai_evaluation'.

지원서 일괄 처리

Query all submissions for form xyz from the past 7 days. For each one, fetch the attached CV,
extract the applicant's name, role applied for, and top 3 skills, then save them as custom fields.

긴급 문제 표시

Get the last 50 submissions for form xyz. Identify any that mention billing problems or account
access issues, mark them as starred, and set a custom field 'ai_priority' to 'urgent'.

문서

  • 인증 — OAuth, API 토큰, 범위

  • 도구 — 매개변수 및 응답 형태를 포함한 4가지 도구 전체 참조

  • 문제 해결 — 일반적인 오류 및 해결 방법


링크

-
security - not tested
A
license - permissive license
-
quality - not tested

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/formester/mcp'

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