MCPcopy Create free account
hub / github.com/astercloud/aster / Read

Function Read

client-sdks/python-bridge/aster.py:225–235  ·  view source on GitHub ↗

读取文件内容 Args: path: 文件路径 Returns: 文件内容

(path: str)

Source from the content-addressed store, hash-verified

223
224
225async def Read(path: str) -> str:
226 """
227 读取文件内容
228
229 Args:
230 path: 文件路径
231
232 Returns:
233 文件内容
234 """
235 return await _bridge.call_tool("Read", path=path)
236
237
238async def Write(path: str, content: str) -> None:

Callers

nothing calls this directly

Calls 1

call_toolMethod · 0.80

Tested by

no test coverage detected