ScopeMCP
An MCP server that connects AI assistants to the Owon DS1102 oscilloscope, enabling waveform capture, measurement retrieval, and remote control of scope settings.
README
ScopeMCP — DS1102 Oscilloscope MCP Server
<p align="center"> <img src="resources/images/ScopeMCP_klein.png" alt="ScopeMCP Logo" width="200"> </p>
A Python MCP server that connects the Owon/Abestop DS1102 (Firmware V3.1.0) oscilloscope (Firmware V3.1.0) to AI assistants like Claude via the Model Context Protocol.
Available Tools
Status & Metadata
get_connection_status: Checks connection, model, run status, and timestamp.get_live_metadata: Returns full device metadata (timebase, sample rate, channel/trigger config).get_measurements: Provides frequency, period, scale, probe factor, and coupling for both channels.
Waveform Capture
capture_waveform(channel, max_samples): Captures a single channel (fixed at 1520 hardware samples, software downsampled).capture_dual_waveform(max_samples): Efficiently captures both channels in a single operation.
Voltage conversion formula:
voltage = (raw - OFFSET) / 250.0 * scale_v * probe_factor
Note: The DS1102 always transfers 1520 samples over USB. Downsampling occurs in software.
Vertical & Horizontal Control
set_vertical_scale(channel, scale): e.g., "1V", "500mV".set_channel_coupling(channel, coupling): AC, DC, or GND.set_voltage_offset(channel, offset): Vertical position in Volts.set_horizontal_scale(scale): e.g., "1ms", "500us".
Trigger & Device Control
set_trigger_mode(mode): AUTO, NORMAL, SINGLE.set_trigger_source(source): CH1, CH2.set_trigger_slope(slope): RISE, FALL.set_trigger_level(level_mv): Threshold in millivolts (e.g., 500.0 for 0.5V).set_run_state(state): RUN or STOP.run_autoset(): Performs automatic oscilloscope setup.
Requirements
- Python 3.10+
- libusb backend (on Windows: install via Zadig)
- DS1102 connected via USB
pip install mcp libusb-package pyusb
Setup
Detailed installation instructions can be found in doc/INSTALL.md.
Add to claude_desktop_config.json:
{
"mcpServers": {
"ds1102-scope": {
"command": "python",
"args": ["C:/path/to/ds1102_mcp.py"]
}
}
}
Live Monitor (Grabber)
In addition to the MCP server, this repository includes ds1102_grabber.py. This is a lightweight live oscilloscope frontend (GUI) that allows for a real-time view of both channels directly on your PC.
Features
- Dual-Channel Live View: Simultaneous display of CH1 and CH2.
- Real-Time Synchronization: Automatically adjusts scaling (V/div) and probe factor (1X/10X) when changed on the device.
- Clean Grid Mode: The grid in the grabber perfectly matches the divisions on the hardware oscilloscope (no confusing numerical labels).
- Keyboard Shortcuts: Basic control directly via keyboard (e.g.,
SPACEfor RUN/STOP).
Running the Grabber
Ensure the oscilloscope is connected via USB and dependencies (matplotlib, numpy, pyusb) are installed.
python ds1102_grabber.py
Known Limitations
- Capture speed (~7–10s): The DS1102 always transfers the full 1520-sample buffer over USB. The
:DATA:WAVE:POINTSSCPI command has no effect on transfer size for this firmware. This is a confirmed hardware limitation — seeFINDINGS_USB_Transfer_Limit.md. run_statusnever showsSTOP: The firmware always reportsTRIGin the status field, even when stopped. This is a firmware behavior, not a server bug.- CH2 returns zeros when
DISPLAY: OFF: No signal data is available from a channel that is disabled on the scope.
Protocol Notes (Firmware V3.1.0)
- Every SCPI command is prefixed with a 4-byte little-endian length header.
- Commands must end with
\n(0x0A). - Screen data: 1520 samples × 2 bytes signed 16-bit little-endian = 3040 bytes + 4-byte header.
- Full protocol details: see doc/ds1102_protocol.md.
License
GNU GPLv3
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.