tinypilot-mcp
OfficialClick 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., "@tinypilot-mcplist available devices"
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.
tinypilot-mcp
Host-agnostic MCP server for the TinyPilot REST API. Exposes fleet-aware KVM primitives for AI agent builders.
Client-side: runs on your machine next to Cursor (or other MCP hosts). Calls TinyPilot devices over the network.
Requirements
Python 3.11+
TinyPilot device with an Automation License
Today: TinyPilot WebUI password auth disabled — password-protected WebUI blocks REST API access. A future TinyPilot update will allow user auth alongside API access.
Related MCP server: PiKVM MCP Server
Quick start
pip install tinypilot-mcpCreate a fleet config (edit base_url and device ids for your TinyPilots):
curl -sSL https://raw.githubusercontent.com/tiny-pilot/tinypilot-mcp/master/examples/devices.json \
-o ~/tinypilot-devices.jsonWire it into your MCP host — see MCP host setup below. Set TINYPILOT_DEVICES to the absolute path to your devices.json.
TINYPILOT_DEVICES must point to an absolute path. The server reads fleet config at startup and logs to stderr only (stdio MCP transport).
No global install? Use uvx tinypilot-mcp as the MCP command with "args": ["tinypilot-mcp"] — see MCP host setup.
MCP host setup
Use tinypilot-mcp (after pip install) or uvx with args: ["tinypilot-mcp"]. Set TINYPILOT_DEVICES to your config path.
Cursor
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
{
"mcpServers": {
"tinypilot": {
"command": "tinypilot-mcp",
"env": {
"TINYPILOT_DEVICES": "/absolute/path/to/devices.json"
}
}
}
}Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent config path on your OS:
{
"mcpServers": {
"tinypilot": {
"command": "tinypilot-mcp",
"env": {
"TINYPILOT_DEVICES": "/absolute/path/to/devices.json"
}
}
}
}Claude Code
Project scope — create .mcp.json in your repo root (shareable via git):
{
"mcpServers": {
"tinypilot": {
"type": "stdio",
"command": "tinypilot-mcp",
"env": {
"TINYPILOT_DEVICES": "/absolute/path/to/devices.json"
}
}
}
}User scope — add the same entry under mcpServers in ~/.claude.json, or run:
claude mcp add tinypilot --scope user -- tinypilot-mcpThen set TINYPILOT_DEVICES in the server env via claude mcp add-json or by editing the config file directly.
VS Code
Edit .vscode/mcp.json (workspace) or run MCP: Open User Configuration:
{
"servers": {
"tinypilot": {
"type": "stdio",
"command": "tinypilot-mcp",
"env": {
"TINYPILOT_DEVICES": "/absolute/path/to/devices.json"
}
}
}
}Use Agent mode in Copilot Chat to invoke MCP tools.
Tools
All tools use the tinypilot_ prefix. Input tools accept optional device_id; if omitted, the active device from tinypilot_select_device is used.
Tool | Access | Description |
| read | List devices from local config (no network call) |
| input | Set the active device for subsequent calls |
| read | Online status + resolution (text only) — not for reading UI |
| read | Capture target console; returns JPEG + metadata |
| input | Paste text; server waits before returning |
| input | Send a single keystroke |
| input | Mouse move/click/scroll — relative (0.0–1.0) or |
tinypilot_get_stream_state uses the unofficial uStreamer GET /state endpoint. Use it for online status and resolution (e.g. converting pixel_x/pixel_y for mouse events). Use tinypilot_capture_screenshot whenever you need to read the UI, find click targets, or verify an action worked — stream state does not show screen content.
For mouse clicks, call tinypilot_get_stream_state for resolution, then pass pixel_x/pixel_y to tinypilot_mouse_event — the server converts to relative coords. Mouse responses echo both relative and pixel positions when resolution is known.
Fleet workflow
There is no TinyPilot fleet API. Multiple devices are configured as URLs in devices.json. A typical agent loop:
tinypilot_list_devices— show configured ids, labels, aliases, and active devicetinypilot_select_device— pick the target bydevice_id(required before input)tinypilot_get_stream_state— check online + resolution (not for reading UI)tinypilot_capture_screenshot— read screen content; verify before and after each inputInput tools — paste, keystroke, or mouse (
pixel_x/pixel_yfrom step 3)
Paste timing is enforced server-side: tinypilot_paste_text waits (100ms × character count) + buffer before returning. Do not send keystrokes until paste completes.
MCP hosts load server instructions at connect time (observe → act → verify, prefer keyboard over mouse). Input tool responses include a verify-next hint. Install the workflow skill below for full guidance.
Screenshots are saved to {output_dir}/screenshots/{device_id}-{timestamp}.jpg. Actions are logged to {output_dir}/actions.jsonl.
Capability tiers
Set defaults.capabilities in devices.json to limit which tools are registered:
Capability | Tools enabled |
|
|
|
|
Default: ["read", "input"]. Use ["read"] for read-only diagnostics — input tools are not registered.
Workflow skill
Install the companion skill for observe → act → verify guidance:
This MCP server provides execution primitives; the skill teaches agents how to use them safely across a fleet.
Safety
Validate on non-production hardware first. MCP tool annotations (readOnlyHint, destructiveHint) are hints for hosts, not security guarantees. Agents can send real keystrokes and mouse events to physical targets. Use capability tiers and the workflow skill to limit blast radius.
Development
From a git checkout:
git clone https://github.com/tiny-pilot/tinypilot-mcp.git
cd tinypilot-mcp
python3 -m venv venv
source venv/bin/activate
pip install -e ".[dev]"
pytest -vPublished on PyPI as tinypilot-mcp.
AI agents changing this repo: read AGENTS.md.
Docs
AGENTS.md — scope and conventions for AI agents
License
MIT — see 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/tiny-pilot/tinypilot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server