.cursor — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited .cursor (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A comprehensive Model Context Protocol (MCP) server for Arduino CLI interactions, built with FastMCP. This server enables AI agents to seamlessly interact with Arduino CLI for development, debugging, code verification, and more.
sketch://{path} - Read Arduino sketch files (.ino, .cpp, .h)arduino-config://main - Access Arduino CLI configurationboard-info://{fqbn} - Get detailed board informationCustomize the server behavior with these optional environment variables:
| Variable | Default | Description |
|---|---|---|
ARDUINO_CLI_PATH | arduino-cli | Path to Arduino CLI executable |
MCP_SKETCH_DIR | OS-specific\* | Override default sketch directory |
ARDUINO_SERIAL_BUFFER_SIZE | 10 | Serial buffer size in MB |
ARDUINO_CONFIG_FILE | Auto-detected | Custom Arduino CLI config file path |
\*Default sketch directories:
%DOCUMENTS%\Arduino~/Documents/Arduino~/Arduinogit clone <your-repo-url>
cd arduino-mcpuv sync# Windows (using winget)
winget install ArduinoSA.CLI
# macOS
brew install arduino-cli
# Linux
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh#### Using uv:
uv run python -m arduino_mcp.server#### Using FastMCP CLI:
uv run fastmcp run arduino_mcp/server.py:mcp#### For HTTP transport:
uv run fastmcp run arduino_mcp/server.py:mcp --transport http --port 8000#### For Cursor IDE
The project includes .cursor/mcp.json configuration. Cursor will automatically detect it when you open the project.
Alternatively, add to your global Cursor settings:
{
"mcpServers": {
"arduino": {
"command": "uvx",
"args": ["arduino-mcp"]
}
}
}#### For Claude Desktop
Add to your MCP configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"arduino": {
"command": "uvx",
"args": ["arduino-mcp"]
}
}
}To verify the Arduino MCP server is working:
# Test import
uv run python -c "from arduino_mcp import mcp; print('Server imports successfully')"
# Start the server
uv run fastmcp run arduino_mcp/server.py:mcpOnce running in Cursor IDE, you can test the tools directly in the chat interface.
# Find your connected board
list_connected_boards()
# Create a new sketch
create_new_sketch("MyProject")
# Attach board settings to sketch (IDE-like experience!)
arduino_cli_command("board attach -p COM3 -b arduino:avr:uno MyProject")
# This creates sketch.yaml with your board settings
# Now compile and upload without repeating FQBN/port
compile_sketch("MyProject", "") # Reads from sketch.yaml
upload_sketch("MyProject", "", "") # Reads from sketch.yaml
# Monitor serial output with bidirectional communication
serial_monitor(
port="COM3",
baudrate=115200,
duration=30,
send_commands="LED ON\nLED OFF", # Send commands to device
save_to_file="output.log" # Save buffer to file
)Why use board attach?
# Check if Arduino CLI is installed
check_arduino_cli_installed()
# Find connected Arduino boards
list_connected_boards()
find_arduino_ports()
get_best_port()
# Create a new sketch
create_new_sketch("BlinkLED", "./sketches")
# Use the blink_led_example prompt for code template
# Compile the sketch
compile_sketch("./sketches/BlinkLED", "arduino:avr:uno")
# Upload to board
upload_sketch("./sketches/BlinkLED", "arduino:avr:uno", "COM3")# Check if Arduino CLI is installed
arduino_cli_command("version")
# Find connected Arduino boards
list_connected_boards()
list_ports(arduino_only=True)
# Create a new sketch
create_new_sketch("BlinkLED", "./sketches")
# Use the blink_led_example prompt for code template
# Compile the sketch
compile_sketch("./sketches/BlinkLED", "arduino:avr:uno")
# Upload to board
upload_sketch("./sketches/BlinkLED", "arduino:avr:uno", "COM3")
# Monitor output
serial_monitor("COM3", baudrate=115200, duration=20)# Search for a library
search_libraries("Adafruit SSD1306")
# Install the library
install_library("Adafruit SSD1306")
# List installed libraries
list_installed_libraries()# Basic monitoring (115200 is now the default)
serial_monitor("COM3", duration=30)
# Send commands while monitoring (bidirectional)
serial_monitor(
port="COM3",
baudrate=115200,
duration=30,
send_commands="GET_STATUS\nSET_LED 1"
)
# Save buffer to file for analysis
serial_monitor(
port="COM3",
baudrate=115200,
duration=60,
save_to_file="sensor_data.log"
)
# Combined: send commands and save output
serial_monitor(
port="COM3",
baudrate=115200,
duration=45,
send_commands="START_LOGGING",
save_to_file="experiment_results.txt"
)Buffer Features:
# Check ImageMagick installation
check_imagemagick_installed()
# Convert image to C array for Arduino displays
convert_image_to_c_array(
"logo.png",
width=128,
height=64,
var_name="logo_bitmap",
output_file="logo.h"
)# Read a sketch file
read_resource("sketch://./BlinkLED/BlinkLED.ino")
# Get Arduino configuration
read_resource("arduino-config://main")
# Get board details
read_resource("board-info://arduino:avr:uno")check_arduino_cli_installed() - Verify Arduino CLI installationlist_connected_boards() - List all connected Arduino boardslist_serial_ports() - List all serial portsfind_arduino_ports() - Find Arduino-specific portsget_best_port() - Auto-detect best port candidateverify_port(port) - Verify if a port is accessiblelist_installed_cores() - List installed Arduino coressearch_cores(query) - Search for Arduino coresinstall_core(core) - Install an Arduino coresearch_libraries(query) - Search for Arduino librariesinstall_library(library) - Install an Arduino librarylist_installed_libraries() - List installed librariescreate_new_sketch(name, path) - Create a new Arduino sketchcompile_sketch(path, fqbn) - Compile an Arduino sketchupload_sketch(path, fqbn, port) - Upload sketch to boardget_arduino_help(command) - Get help for Arduino CLI commandsinitialize_config() - Initialize Arduino CLI configurationclean_cache() - Clean Arduino CLI cachecheck_imagemagick_installed() - Check ImageMagick installationconvert_image_to_c_array(...) - Convert images to C arraysarduino:avr:unoarduino:avr:megaarduino:avr:nanoarduino:avr:leonardoesp32:esp32:esp32esp8266:esp8266:genericarduino-mcp/
├── arduino_mcp/
│ ├── __init__.py # Package initialization
│ ├── server.py # Main MCP server with tools, resources, prompts
│ ├── cli_wrapper.py # Arduino CLI wrapper
│ ├── port_detector.py # Serial port detection utilities
│ ├── image_converter.py # ImageMagick image conversion
│ └── platform_utils.py # Cross-platform OS detection & handling
├── pyproject.toml # Project configuration
└── README.md # This fileContributions are welcome! Please feel free to submit issues or pull requests.
MIT License
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.