Skip to content

Commit ba6085e

Browse files
committed
test: add test of get_symbol_definition
1 parent 756f77e commit ba6085e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/fastmcp_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ async def main():
2525
name="get_package_directory", arguments={"package_name": "fastmcp"}
2626
)
2727
print(result)
28+
print("> 3. get_symbol_definition:")
29+
result = await client.call_tool(
30+
name="get_symbol_definition",
31+
arguments={"package_name": "requests", "symbol_name": "Session"},
32+
)
33+
print(result)
2834

2935

3036
if __name__ == "__main__":

0 commit comments

Comments
 (0)