Centerfield Visitor MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Centerfield Visitor MCPRegister visitor Jane Smith from XYZ Corp on March 15 at 9am"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Centerfield Visitor MCP
An MCP (Model Context Protocol) server that automates
visitor reservations for the Centerfield building (www.centerfield.co.kr).
Use it from any MCP-compatible AI agent (Kiro CLI, Claude Code, Strands Agents, …)
to register visitors with natural language — single entries, pasted text, or Excel/CSV files.
센터필드 빌딩 방문예약을 자동화하는 MCP 서버입니다. Kiro CLI, Claude Code, Strands Agents 등 MCP 호환 AI 에이전트에서 자연어로 방문자를 등록할 수 있습니다.
This server runs entirely locally — uvx downloads and runs it on your machine,
and it talks directly to www.centerfield.co.kr. No backend service, API gateway, or
hosting account is required.
이 서버는 로컬에서 단독 실행됩니다.
uvx가 내 컴퓨터에서 서버를 받아 실행하고, 센터필드 사이트(www.centerfield.co.kr)에 직접 요청합니다. 별도의 백엔드 서버나 클라우드 계정이 필요 없습니다.
Installation
No manual install needed — run directly with uvx:
uvx centerfield-visitor-mcpRelated MCP server: Boma MCP
MCP client configuration
Set your own registered values via environment variables — nothing is hardcoded.
Claude Code
Register the server with the claude mcp add command:
claude mcp add centerfield-visitor \
-e CF_COMPANY_NAME="Your Company Name" \
-e CF_PERSON_IN_CHARGE_MOBILE="010XXXXXXXX" \
-e CF_BUILDING="east" \
-e CF_BUILDING_KEY="East" \
-- uvx centerfield-visitor-mcpVerify it is connected:
claude mcp listThen just ask in natural language, e.g. "센터필드에 홍길동(ABC주식회사, 01012345678, hong@abc.com)을 2026-07-26 15:00, 18층으로 방문 등록해줘".
Kiro CLI / other MCP clients
Add the server to your MCP client config (example: Kiro CLI mcp.json):
{
"mcpServers": {
"centerfield-visitor": {
"command": "uvx",
"args": ["centerfield-visitor-mcp"],
"env": {
"CF_COMPANY_NAME": "Your Company Name",
"CF_PERSON_IN_CHARGE_MOBILE": "010XXXXXXXX",
"CF_BUILDING": "east",
"CF_BUILDING_KEY": "East"
}
}
}
}Configuration (environment variables)
Variable | Description | Default | Required |
| Tenant company name as registered in Centerfield | (empty) | ✅ |
| Mobile number of the approval contact registered in Centerfield | (empty) | ✅ |
| Building code |
| |
| Building display key |
| |
| Floor used when a tool call / file row omits |
| |
| Centerfield base URL |
| |
| HTTP timeout (seconds) |
| |
| Max visitors per bulk request |
| |
| Delay between bulk requests (seconds) |
|
CF_PERSON_IN_CHARGE_MOBILEmust be the mobile number registered as the tenant's approval contact in Centerfield. Reservations submitted with an unregistered number will fail. Provide it through your environment — never commit a real phone number.There is no separate "validate credentials" endpoint: the company name and approval contact are checked live during a registration attempt. The fastest way to confirm your values are correct is to register one visitor (or preview a bulk file first).
Tools
Tool | Description |
| Register a single visitor |
| Bulk register from an Excel ( |
| Bulk register from pasted tab/CSV text |
| Preview parsed visitors from a file (no registration) |
Recommended bulk workflow: run
preview_visitors_from_filefirst to confirm the parsed rows look correct, thenregister_visitors_from_fileto submit.
Input constraints
Values are validated before any request is sent:
Field | Rule |
|
|
|
|
|
|
| hyphens/spaces are stripped automatically ( |
| must be a valid email address |
|
|
File format
Bulk tools accept Excel/CSV with these columns (Korean or English headers are auto-mapped):
visitor_name, visitor_company_name, visitor_mobile, visitor_email, visit_date, visit_time
홍길동, ABC Inc., 01012345678, hong@abc.com, 2026-01-15, 10:00How it works
The server holds a single authenticated session against the Centerfield site, manages CSRF tokens automatically, verifies the tenant company and approval contact, then submits the reservation form. Bulk requests are processed sequentially with a configurable delay to avoid rate limiting.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/hmkim/centerfield-visitor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server