Remote MCP Server Template
MCP 시계
라이브 MCP 엔드포인트: https://mcpclock.firasd.workers.dev/mcp
Claude.ai, Claude iOS, Claude Code, OpenAI Codex 및 모든 MCP 호환 클라이언트에서 작동합니다.
도구
clock_get
하나 이상의 시간대에서 현재 시간을 반환합니다.
timezones(선택 사항) — IANA 시간대 이름 배열(예:"America/New_York")과 특수 리터럴"UTC"및"Alphadec". 기본값은["UTC"]입니다. 최대 15개 시간대까지 가능합니다.offsetSeconds(선택 사항) — 서식이 지정되기 전에 적용되는 초 단위의 부호 있는 오프셋입니다. 예: 24시간 전은-86400, 1분 후는+60.adec_canonical_only(선택 사항) — Alphadec 단위 설명을 생략하고 정식 문자열만 반환하려면"true"를 전달하세요.
clock_get{}
clock_get{"timezones": ["Asia/Tokyo", "America/New_York"]}
clock_get{"timezones": ["Alphadec"], "adec_canonical_only": "true"}clock_day_info
UTC 날짜에 대한 달력 정보(요일, 월별 일수, 연중 일수, 연도 진행률 %, ISO 주 번호)를 반환합니다.
date(선택 사항) —YYYY-MM-DD형식의 날짜입니다. 기본값은 오늘(UTC)입니다.
clock_day_info{}
clock_day_info{"date": "2025-09-09"}clock_convert
타임스탬프를 한 시간대에서 하나 이상의 대상 시간대로 변환합니다.
source_zone— IANA 시간대 이름 또는"UTC".iso— ISO-8601 문자열. 소스가"UTC"인 경우Z접미사를 포함하세요. 소스가 IANA 시간대인 경우 오프셋(벽시계 시간)을 생략하세요.target_zones— IANA 시간대 이름 또는"UTC배열. 최소 1개, 최대 15개.
clock_convert{
"source_zone": "America/Mexico_City",
"iso": "2025-10-28T07:30:00",
"target_zones": ["UTC", "Asia/Dubai"]
}clock_convert_alphadec
UTC ISO 타임스탬프와 Alphadec 문자열 간에 변환합니다.
direction—"utc_to_alphadec"(기본값) 또는"alphadec_to_utc".value— UTC ISO 문자열(예:"2025-06-09T16:30:00.000Z") 또는 Alphadec 문자열(예:"2025_L3T5_000000").
clock_convert_alphadec{"direction": "utc_to_alphadec", "value": "2025-06-09T16:30:00.000Z"}
clock_convert_alphadec{"direction": "alphadec_to_utc", "value": "2025_L3T5_000000"}clock_convert_unixtime
UTC ISO 타임스탬프와 Unix 타임스탬프(에포크 이후 초) 간에 변환합니다.
direction—"utc_to_unixtime"(기본값) 또는"unixtime_to_utc".value— UTC ISO 문자열(예:"2025-06-15T12:00:00Z") 또는 Unix 타임스탬프 문자열(예:"1749988800").
clock_convert_unixtime{"direction": "utc_to_unixtime", "value": "2025-06-15T12:00:00Z"}
clock_convert_unixtime{"direction": "unixtime_to_utc", "value": "1749988800"}clock_delta_utc
두 UTC ISO 타임스탬프 간의 시간 차이를 계산합니다. 현재 시간을 사용하려면 양쪽 끝을 생략하세요(즉, "경과 시간" 또는 "남은 시간").
start(선택 사항) — UTC ISO 타임스탬프(예:"2022-01-15T10:30:00Z"). 기본값은 현재 시간입니다.end(선택 사항) — UTC ISO 타임스탬프. 기본값은 현재 시간입니다.start또는end중 하나 이상이 필요합니다.
total_seconds, breakdown(연/일/시/분/초), readable 문자열을 반환합니다. 시작 시간이 종료 시간보다 늦으면 음수입니다.
clock_delta_utc{"start": "2022-01-15T10:30:00Z"}
clock_delta_utc{"end": "2025-12-31T23:59:59Z"}
clock_delta_utc{"start": "2022-01-15T10:30:00Z", "end": "2025-08-31T14:45:30Z"}clock_delta_alphadec
현재 연도 내의 두 4자 Alphadec 코드 간의 시간 차이를 계산합니다. 현재 시간을 사용하려면 양쪽 끝을 생략하세요.
alphadec_start(선택 사항) — 4자 Alphadec 코드(예:"A2B3"). 기본값은 현재 시간입니다.alphadec_end(선택 사항) — 4자 Alphadec 코드(예:"Z8Y9"). 기본값은 현재 시간입니다. 하나 이상이 필요합니다.
ISO 시간 차이와 Alphadec 단위 델타(periods/arcs/bars/beats)를 모두 반환합니다.
clock_delta_alphadec{"alphadec_start": "A2B3"}
clock_delta_alphadec{"alphadec_end": "Z8Y9"}
clock_delta_alphadec{"alphadec_start": "A2B3", "alphadec_end": "C1Y9"}Related MCP server: Remote MCP Server Template
Alphadec
Alphadec은 간결하고 사람이 읽을 수 있는 타임스탬프 형식입니다. 전체 정식 문자열은 2026_I2J9_382995와 같습니다.
단위 | 문자 | 대략적인 기간 |
Period | A–Z (1번째 문자) | ~14.04일 (연도 ÷ 26) |
Arc | 0–9 (2번째 문자) | ~33.7시간 (period ÷ 10) |
Bar | A–Z (3번째 문자) | ~77.75분 (arc ÷ 26) |
Beat | 0–9 (4번째 문자) | ~7.78분 (bar ÷ 10) |
Offset | 6자리 접미사 | beat 내의 밀리초 |
Alphadec 문자열은 K-정렬이 가능하며, 사전순 정렬이 시간순 정렬과 일치합니다. 더 적은 수의 문자로 자르면 자연스러운 시간 그룹이 생성됩니다(예: 2026_I2는 전체 I2 arc를 포함함).
계절적 앵커(대략적): Period F = 3월 춘분 · Period M = 6월 하지 · Period S = 9월 추분 · Period Z = 12월 동지.
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.
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.
Related MCP Connectors
Cloudflare Workers MCP server: ai-model-router
Cloudflare Workers MCP server: ai-gateway
Cloudflare Workers MCP server: claude-skill-validator
Cloudflare Workers MCP server: ai-agent-scratchpad
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceA template for deploying MCP servers on Cloudflare Workers without authentication. Enables users to create custom remote MCP tools that can be accessed from Claude Desktop or other MCP clients through a simple HTTP endpoint.1-
- FlicenseNot gradedqualityNot gradedmaintenanceA template for deploying MCP servers on Cloudflare Workers without authentication. Provides a foundation for building custom MCP tools that can be accessed remotely from various MCP clients like Claude Desktop or the Cloudflare AI Playground.-
- FlicenseNot gradedqualityDmaintenanceA template for deploying custom MCP servers on Cloudflare Workers without authentication. Allows you to create and expose custom tools that can be accessed from remote MCP clients like Claude Desktop or Cloudflare AI Playground.-
- FlicenseNot gradedqualityCmaintenanceA Cloudflare Workers-based MCP server template for building remote MCP servers without authentication. Provides a starting point for deploying custom tools accessible from Claude Desktop or other MCP clients.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/firasd/mcpclock'
If you have feedback or need assistance with the MCP directory API, please join our Discord server