We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6069d47 commit 0b79777Copy full SHA for 0b79777
backend/src/openroad_mcp/server/orfs/orfs_base.py
@@ -121,7 +121,18 @@ def get_stage_names() -> str:
121
@staticmethod
122
@ORFS.mcp.tool
123
def jump(stage: str) -> str:
124
- """call jump command if contains jump keyword and stage argument"""
+ """Jump directly to a specific stage in the chip design pipeline.
125
+
126
+ Valid stage names (MUST use exact names):
127
+ - "synth" - Synthesis
128
+ - "floorplan" - Floorplan
129
+ - "place" - Placement
130
+ - "cts" - Clock Tree Synthesis
131
+ - "route" - Routing
132
+ - "final" - Final Report
133
134
+ Use get_stage_names() to see all available stages.
135
+ """
136
assert ORFS.server is not None
137
ORFS.server._check_configuration()
138
0 commit comments