Skip to content

Commit 0b79777

Browse files
committed
fix tool descriptions
Signed-off-by: Jack Luar <jluar@precisioninno.com>
1 parent 6069d47 commit 0b79777

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

backend/src/openroad_mcp/server/orfs/orfs_base.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,18 @@ def get_stage_names() -> str:
121121
@staticmethod
122122
@ORFS.mcp.tool
123123
def jump(stage: str) -> str:
124-
"""call jump command if contains jump keyword and stage argument"""
124+
"""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+
"""
125136
assert ORFS.server is not None
126137
ORFS.server._check_configuration()
127138

0 commit comments

Comments
 (0)