logic-analyzer-ai-mcp

logic-analyzer-ai-mcp

Enables remote control and automation of Saleae logic analyzers for capture, export, and protocol decoding.

Category
访问服务器

README

Logic analyzer MCP

This project provides an MCP (Message Control Protocol) server and automation interface for Saleae logic analyzers. It enables remote control, automation, and integration of Saleae Logic devices and captures, making it easy to script, manage, and analyze logic analyzer data programmatically.

Features

  • Device configuration management
  • Capture configuration and execution
  • Data export in various formats
  • Logic file analysis and processing
  • Protocol decoding and visualization
  • Diagram generation and analysis
  • MCP (Message Control Protocol) server integration
  • Support for Logic 16 and other Logic 2 devices
  • Capture file parsing and analysis using python-saleae

Requirements

  • Python 3.10 or higher
  • Saleae Logic 2 software installed
  • Python-saleae module
  • Logic 2 device (Logic 16, Logic Pro 8, etc.)

Installation

  1. Clone the repository

  2. Create and activate a virtual environment using uv:

# Create virtual environment
uv venv

# Activate virtual environment
# On Windows:
.venv\Scripts\activate
# On Unix/MacOS:
source .venv/bin/activate
  1. Install dependencies using uv:
# Install all dependencies
uv pip install -e .

If you encounter any issues with dependencies, you can try installing them directly:

# Install logic2-automation from GitHub
uv pip install git+https://github.com/saleae/logic2-automation/#subdirectory=python

# Install other dependencies
uv pip install grpcio protobuf grpcio-tools saleae mcp[cli] pytest

Note: This project requires Python 3.10 or higher due to dependency requirements.

Usage

Running the MCP Server

To start the MCP server for remote control:

# Using uv (recommended)
uv --directory <project_path> run -m logic_analyzer_mcp

Note: When using uv, make sure you have it installed and in your PATH. The --directory argument should point to the root directory of the project.

Current compatibility & Tested Version

This project is tested with Saleae Logic 1.2.40 for Windows.

  • Please use this version for best compatibility.
  • Other versions may work, but are not guaranteed or officially supported by this project.

Experimental note (alpha)

This is an experimental (alpha) version. The following MCP tool sequence has been tested and works for me:

  1. saleae_connect (for Saleae Logic 1.2.40)
  2. saleae_configure
  3. saleae_capture — save capture in .logicdata format
  4. parse_capture_file (optional)
  5. get_digital_data_mcp
  6. saleae_export (optional. use csv if needed)

Notes:

  • Make sure the Saleae Logic application is running and the scripting socket server is enabled before using these tools.
  • When calling saleae_capture, request the .logicdata format for best compatibility with the controller methods.

Troubleshooting & Important Notes

  • Logic Software Must Be Running:

    • Before using this automation interface, ensure that the Saleae Logic software is already running on your system. The automation scripts will attempt to connect to the running instance.
    • If the software is not running, the script may fail to connect, or may launch a new instance in simulation mode (which will not detect your real device).
  • Enable Scripting Socket Server:

    • In the Logic software, go to Options > Preferences (or Edit > Preferences), and ensure that the "Enable scripting socket server" option is checked.
    • The default port is usually 10429. If you change this, update your scripts accordingly.
    • If the scripting server is not enabled, the Python API will not be able to communicate with Logic, and you will see connection errors.
  • Device Not Detected:

    • Make sure your Logic device is connected to your computer and recognized by the Logic software before running any scripts.
    • If the device is not detected, check your USB connection and try restarting the Logic software.
  • Architecture Compatibility:

    • Ensure that both the Logic software and your Python environment are either both 32-bit or both 64-bit. Mismatched architectures can cause connection failures.
  • Permissions:

    • On some systems, you may need to run the Logic software and/or your Python script with administrator privileges to allow socket communication.
  • Supported Versions:

    • This project is designed for Saleae Logic 1.x/2.x automation. Some features may only be available in Logic 2.x with the appropriate automation API installed.

Note on Capture File Formats

  • .logicdata format is the recommended and best-supported file format for captures. All automation and parsing features are designed to work reliably with .logicdata files.
  • .sal files (used by some older or alternative Saleae software) are currently known to have bugs and compatibility issues. Automated conversion or processing of .sal files may fail or require manual fixes. For best results, always use .logicdata format for your captures.

API Reference

SaleaeController

The main controller class that provides high-level access to Logic 2 functionality.

Device Configuration Methods:

  • create_device_config(name: str, digital_channels: List[int], digital_sample_rate: int, analog_channels: Optional[List[int]] = None, analog_sample_rate: Optional[int] = None, digital_threshold_volts: Optional[float] = None) -> str

    • Creates a new device configuration with specified channels and sample rates
    • Returns the configuration name
  • get_device_config(name: str) -> Optional[LogicDeviceConfiguration]

    • Retrieves a device configuration by name
    • Returns None if not found
  • list_device_configs() -> List[str]

    • Lists all available device configuration names
  • remove_device_config(name: str) -> bool

    • Removes a device configuration
    • Returns True if successful, False if not found

Capture Configuration Methods:

  • create_capture_config(name: str, duration_seconds: float, buffer_size_megabytes: Optional[int] = None) -> str

    • Creates a new capture configuration with specified duration
    • Returns the configuration name
  • get_capture_config(name: str) -> Optional[CaptureConfiguration]

    • Retrieves a capture configuration by name
    • Returns None if not found
  • list_capture_configs() -> List[str]

    • Lists all available capture configuration names
  • remove_capture_config(name: str) -> bool

    • Removes a capture configuration
    • Returns True if successful, False if not found

Configurations:

Claude configuration (with uv run):

{
    "mcpServers": {
        "logic-analyzer-ai-mcp": {
            "type": "stdio",
            "command": "uv",
            "args": [
                "--directory",
                "<path to folder>",
                "run",
                "-m",
                "logic_analyzer_mcp"
            ]
        }
    }
}

Claude configuration (direct usage):

{
    "mcpServers": {
        "logic-analyzer-ai-mcp": {
            "type": "stdio",
            "command": "python",
            "args": [
                "<path to folder>\\src\\logic_analyzer_mcp.py"
            ]
        }
    }
}

Claude configuration (with uv run):

{
    "mcpServers": {
        "logic-analyzer-ai-mcp": {
            "type": "stdio",
            "command": "uv",
            "args": [
                "--directory",
                "<path to folder>",
                "run",
                "-m",
                "logic_analyzer_mcp"
            ]
        }
    }
}

Logic2 parameter description

This project includes an opt-in experimental path for Logic2 automation. It is disabled by default. You can enable it in one of three ways:

  • CLI flag (recommended for one-off runs)

    • Example:
      • python -m logic_analyzer_mcp --logic2
  • Environment variable (convenient for CI / persistent shells)

    • Example (Unix):
      • LOGIC2=1 python -m logic_analyzer_mcp
    • Example (Windows PowerShell):
      • $env:LOGIC2='1'; python -m logic_analyzer_mcp
  • Programmatic API (when embedding the library)

    • Call the helper before registering tools:
      • from mcp_tools import set_logic2_enabled, setup_mcp_tools
      • set_logic2_enabled(True)
      • setup_mcp_tools(mcp, controller)
    • Or pass the explicit parameter to setup_mcp_tools:
      • setup_mcp_tools(mcp, controller, enable_logic2=True)

Notes

  • Default behavior: Logic2 experimental features are OFF. When disabled the code prefers controller-based or offline fallbacks.
  • Safety: Experimental features may change — enable intentionally and test with your environment before using in production.
  • Troubleshooting: If enabling Logic2 fails, check that the logic2-automation / python-saleae packages are installed and that the Saleae app is running and reachable.

Claude configuration (example)

Below is a minimal Claude MCP server configuration example you can adapt. Place this under your Claude configuration file or tooling settings.

{
  "mcpServers": {
    "logic-analyzer-ai-mcp": {
      "type": "stdio",
      "command": "uv",
      "args": [
        "--directory",
        "<path to folder>",
        "run",
        "-m",
        "logic_analyzer_mcp",
        "--logic2"
      ]
    }
  }
}

Notes:

  • Remove the --logic2 flag if you do not want experimental Logic2 tools enabled.
  • Adjust <path to folder> and other uv arguments to match your environment.
  • Use the python based configuration if you prefer to invoke the module directly instead of via uv.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选