MCPcopy Create free account
hub / github.com/InternScience/InternAgent / init_tools

Function init_tools

internagent/mas/tools/__init__.py:26–33  ·  view source on GitHub ↗

Initialize and register all function-based tools

()

Source from the content-addressed store, hash-verified

24
25
26def init_tools():
27 """Initialize and register all function-based tools"""
28 register_tool(CALCULATOR_TOOL_DEFINITION, calculate)
29 register_tool(QUERY2SMILES_TOOL, query2smiles)
30 register_tool(PATENT_CHECK_TOOL, patent_check)
31 register_tool(MODIFY_MOL_TOOL, modify_mol)
32 register_tool(ACADEMIC_SEARCH_TOOL, academic_search)
33 logger.info("Function tools registered")
34
35
36async def init_mcp_tools(

Callers 2

mainFunction · 0.90
__init__Method · 0.85

Calls 1

register_toolFunction · 0.85

Tested by

no test coverage detected