Skip to main content
Glama

sim_status

Check current simulation time, scope, and state in Xcelium MCP Server for real-time debugging and monitoring.

Instructions

Get current simulation status (time, scope, state).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The `sim_status` tool handler function, which queries the simulator for its current position and scope using the TclBridge.
    @mcp.tool()
    async def sim_status() -> str:
        """Get current simulation status (time, scope, state)."""
        bridge = _get_bridge()
        results: list[str] = []
    
        for label, cmd in [("Position", "where"), ("Scope", "scope")]:
            try:
                val = await bridge.execute(cmd)
                results.append(f"{label}: {val}")
            except TclError as e:
                results.append(f"{label}: (error: {e})")
    
        return "\n".join(results)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hslee-cmyk/xcelium-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server