We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
get_symbol_definition
1 parent 756f77e commit ba6085eCopy full SHA for ba6085e
examples/fastmcp_client.py
@@ -25,6 +25,12 @@ async def main():
25
name="get_package_directory", arguments={"package_name": "fastmcp"}
26
)
27
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)
34
35
36
if __name__ == "__main__":
0 commit comments