MCPcopy Create free account
hub / github.com/FSoft-AI4Code/CodeWiki / _text

Function _text

codewiki/mcp/server.py:552–553  ·  view source on GitHub ↗
(content: str)

Source from the content-addressed store, hash-verified

550 indent = " " * depth
551 comp_count = len(info.get("components", []))
552 children = info.get("children", {})
553 child_count = len(children) if isinstance(children, dict) else 0
554 lines.append(f"{indent}- {name} ({comp_count} components, {child_count} children)")
555 if isinstance(children, dict) and children:
556 lines.extend(_summarize_tree(children, depth + 1))

Callers 3

call_toolFunction · 0.85
_legacy_generate_docsFunction · 0.85
_legacy_get_module_treeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected