Duration: 10-15 minutes
Skill: Call REST APIs directly from terminal using curl — bypassing LLM for deterministic, token-efficient tool execution without hallucination risk
- What CLI is and how it relates to REST API
- Why calling tools directly (without LLM in the middle) is deterministic and avoids hallucinations
- Running a local REST server with the same 3 tools from Module 100
- Calling
echo,get_time, andcalculatevia curl - Sending binary files — what MCP can't do natively
- When to use CLI vs MCP
Understand the difference between MCP (LLM-mediated tool calls) and CLI (direct tool calls), and know when each approach is appropriate
- Basic familiarity with terminal/PowerShell
- curl available (pre-installed on Windows 10+, macOS, Linux)
- Python 3 available (
python --version)