# Bolt Iot — MCP server on mcp.ai > Connect your Bolt Iot account and use 6 tools for internet of things straight from your AI agent. Connect with your own API key. Bolt IoT is an integrated platform that enables users to build IoT projects by connecting sensors and actuators to the internet, offering cloud-based control and monitoring capabilities. By: mcp.ai · official Page: https://mcp.ai/bolt_iot ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_bolt_iot?ms=1787291340000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/bolt_iot/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/bolt_iot/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/bolt_iot/skill.md Postman collection (v2.1): https://mcp.ai/bolt_iot/postman.json ## Tools - bolt_iot_analog_read(pin: string) — Tool to read the analog value from a specified pin on a Bolt device. Use when you need sensor readings (0–1023) after confirming the device is online. - bolt_iot_check_device_status(deviceID: string) — Tool to check whether a specified Bolt device is online. Use when you need to verify device connectivity before sending commands (e.g., control signals). Example: 'Check if device BOLT1234567 is onlin - bolt_iot_digital_write(pin: string, state: string, deviceName: string) — Tool to set a digital pin HIGH or LOW on a specified Bolt device. Use when controlling actuators or LEDs via digital output. - bolt_iot_serial_read(till?: integer, deviceName: string) — Tool to read incoming serial data from a Bolt device. Use when you've initialized UART with serialBegin and need to retrieve serial data. - bolt_iot_serial_write(data: string, deviceName: string) — Tool to send serial data to a Bolt device. Use when you need to transmit ASCII data over UART after initializing UART with serialBegin. - bolt_iot_serial_write_read(data: string, deviceName: string) — Tool to send serial data and read the response on a Bolt device. Use when you need to transmit ASCII data over UART and capture its reply immediately. ## Example prompts - "What can I do in Bolt Iot?" - "Show me a summary of my Bolt Iot account" ## Links Docs: https://mcp.ai/docs/mcps/bolt_iot Website: https://mcp.ai/mcps/bolt_iot