MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / ifc_docs

Method ifc_docs

src/ifcmcp/ifcmcp/core.py:332–335  ·  view source on GitHub ↗

Show full documentation for an API function. Input format: 'module.function'.

(self, function_path: str)

Source from the content-addressed store, hash-verified

330 return list_functions(module) if module else list_modules()
331
332 def ifc_docs(self, function_path: str) -> dict:
333 """Show full documentation for an API function. Input format: 'module.function'."""
334 module, function = function_path.split(".", 1)
335 return function_docs(module, function)
336
337 def ifc_edit(self, function_path: str, params: Any = "{}") -> dict:
338 """Execute an ifcopenshell.api mutation.

Callers 3

ifc_docsFunction · 0.80
test_docs_bad_formatMethod · 0.80

Calls 2

function_docsFunction · 0.90
splitMethod · 0.80

Tested by 2

test_docs_bad_formatMethod · 0.64