MCPcopy Create free account
hub / github.com/capoomgit/houdini-mcp / execute_command

Method execute_command

server.py:204–211  ·  view source on GitHub ↗

Entry point for executing a JSON command from the client.

(self, command)

Source from the content-addressed store, hash-verified

202 # -------------------------------------------------------------------------
203
204 def execute_command(self, command):
205 """Entry point for executing a JSON command from the client."""
206 try:
207 return self._execute_command_internal(command)
208 except Exception as e:
209 print(f"Error executing command: {str(e)}")
210 traceback.print_exc()
211 return {"status": "error", "message": str(e)}
212
213 def _execute_command_internal(self, command):
214 """

Callers 1

_process_serverMethod · 0.95

Calls 1

Tested by

no test coverage detected