# Mc Wait

> Synchronous wait for 1 second using time.sleep. Useful for timing delays or pacing actions

- Skill: `bdambrosio/mc-wait` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add bdambrosio/mc-wait`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bdambrosio/mc-wait/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: bdambrosio (https://skillmd.com/u/bdambrosio)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/bdambrosio/mc-wait

---


# Minecraft Wait Tool

Synchronous wait for 1 second using time.sleep. Useful for timing delays or pacing actions.

## Purpose

Timing control for pacing actions, waiting for asynchronous operations, and coordinating multi-step sequences.

## Input

- `value`: Ignored

## Output

Returns uniform_return format with:
- `value`: Text summary (wait completion message)
- `data`: Structured data dict (machine-readable). Key fields:
  - `success`: Boolean
  - `wait_duration_seconds`: Float (currently fixed at `1.0`)

## Behavior & Performance

- Synchronous wait - blocks execution for 1 second
- Fixed duration of 1.0 seconds
- Useful for pacing rapid actions

## Guidelines

- Use to pace rapid action sequences
- Use after asynchronous operations to allow time for completion
- Fixed 1-second duration - cannot be customized
- Blocks execution during wait

## Usage Examples

Wait one second:
```json
{"type":"mc-wait","out":"$wait"}
```

