describe_signal
Retrieve detailed signal information including type, width, and direction for debugging in Xcelium simulations.
Instructions
Get detailed information about a signal (type, width, direction).
Args: signal: Full hierarchical signal path.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| signal | Yes |
Implementation Reference
- src/xcelium_mcp/server.py:169-178 (handler)The handler for describe_signal tool, which executes the 'describe' command via the Tcl bridge.
@mcp.tool() async def describe_signal(signal: str) -> str: """Get detailed information about a signal (type, width, direction). Args: signal: Full hierarchical signal path. """ bridge = _get_bridge() result = await bridge.execute(f"describe {signal}") return result