MCPcopy Create free account
hub / github.com/bugy/script-server / get

Method get

src/web/server.py:456–462  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

454class GetActiveExecutionIds(BaseRequestHandler):
455 @check_authorization
456 def get(self):
457 user_id = identify_user(self)
458 execution_service = self.application.execution_service
459
460 active_executions = execution_service.get_active_executions(user_id)
461
462 self.write(json.dumps(active_executions))
463
464
465class GetExecutingScriptConfig(BaseRequestHandler):

Callers

nothing calls this directly

Calls 3

identify_userFunction · 0.90
get_active_executionsMethod · 0.80
writeMethod · 0.45

Tested by

no test coverage detected