MCPcopy
hub / github.com/codeaashu/claude-code / call

Function call

src/commands/context/context-noninteractive.ts:79–88  ·  view source on GitHub ↗
(
  _args: string,
  context: ToolUseContext,
)

Source from the content-addressed store, hash-verified

77}
78
79export async function call(
80 _args: string,
81 context: ToolUseContext,
82): Promise<{ type: 'text'; value: string }> {
83 const data = await collectContextData(context)
84 return {
85 type: 'text' as const,
86 value: formatContextAsMarkdownTable(data),
87 }
88}
89
90function formatContextAsMarkdownTable(data: ContextData): string {
91 const {

Callers

nothing calls this directly

Calls 2

collectContextDataFunction · 0.85

Tested by

no test coverage detected