You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="List all projects in the FineCode workspace with their names, paths, and statuses",
40
40
inputSchema={"type": "object", "properties": {}},
41
-
)
41
+
),
42
+
Tool(
43
+
name="list_runners",
44
+
description="List all extension runners and their status (running, stopped, error). Use this to diagnose failures when actions do not respond.",
45
+
inputSchema={"type": "object", "properties": {}},
46
+
),
47
+
Tool(
48
+
name="list_actions",
49
+
description="List actions available in the workspace, optionally filtered to a single project. Returns action names and which projects expose them.",
50
+
inputSchema={
51
+
"type": "object",
52
+
"properties": {
53
+
"project": {
54
+
"type": "string",
55
+
"description": "Absolute path to the project directory. Use the list_projects tool to see available projects. Omit to list actions across all projects.",
56
+
}
57
+
},
58
+
},
59
+
),
60
+
Tool(
61
+
name="get_project_raw_config",
62
+
description="Return the resolved (post-preset-merge) configuration for a project. Use this to understand what actions and handlers are configured.",
63
+
inputSchema={
64
+
"type": "object",
65
+
"properties": {
66
+
"project": {
67
+
"type": "string",
68
+
"description": "Absolute path to the project directory. Use the list_projects tool to see available projects.",
0 commit comments