feat: support check-related features (#162)
We can run `argc check` to ensure that everything is ready (environment variables, Node/Python dependencies, mcp-bridge server)
This commit is contained in:
@@ -46,6 +46,18 @@ stop() {
|
||||
"$0" recovery-functions -S
|
||||
}
|
||||
|
||||
# @cmd Check the mcp bridge server is running
|
||||
check() {
|
||||
if [[ -f "$MCP_JSON_PATH" ]]; then
|
||||
echo "Check mcp/bridge"
|
||||
pid="$(get-server-pid)"
|
||||
if [[ -z "$pid" ]]; then
|
||||
stop
|
||||
echo "✗ server is not running"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# @cmd Run the mcp tool
|
||||
# @arg tool![`_choice_tool`] The tool name
|
||||
# @arg json The json data
|
||||
|
||||
Reference in New Issue
Block a user