itasca-mcp 0.6.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1423) hide show
  1. itasca_mcp-0.6.0/.dockerignore +30 -0
  2. itasca_mcp-0.6.0/.github/workflows/publish.yml +49 -0
  3. itasca_mcp-0.6.0/.github/workflows/test.yml +19 -0
  4. itasca_mcp-0.6.0/.gitignore +36 -0
  5. itasca_mcp-0.6.0/.gitmodules +3 -0
  6. itasca_mcp-0.6.0/AGENTS.md +121 -0
  7. itasca_mcp-0.6.0/CHANGELOG.md +400 -0
  8. itasca_mcp-0.6.0/CLAUDE.md +181 -0
  9. itasca_mcp-0.6.0/GEMINI.md +120 -0
  10. itasca_mcp-0.6.0/LICENSE +21 -0
  11. itasca_mcp-0.6.0/PKG-INFO +134 -0
  12. itasca_mcp-0.6.0/README.md +113 -0
  13. itasca_mcp-0.6.0/README.zh-CN.md +111 -0
  14. itasca_mcp-0.6.0/WARP.md +120 -0
  15. itasca_mcp-0.6.0/addon.py +214 -0
  16. itasca_mcp-0.6.0/docker/Dockerfile +119 -0
  17. itasca_mcp-0.6.0/docker/README.md +76 -0
  18. itasca_mcp-0.6.0/docker/build.sh +49 -0
  19. itasca_mcp-0.6.0/docker/docker-compose.yml +49 -0
  20. itasca_mcp-0.6.0/docker/entrypoint.sh +86 -0
  21. itasca_mcp-0.6.0/docker/run.sh +35 -0
  22. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-claude.md +47 -0
  23. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-codex.md +48 -0
  24. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-copilot.md +57 -0
  25. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-gemini.md +55 -0
  26. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-opencode.md +60 -0
  27. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-toyoura-nagisa.md +54 -0
  28. itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap.md +252 -0
  29. itasca_mcp-0.6.0/docs/development/source-install.md +154 -0
  30. itasca_mcp-0.6.0/docs/development/source-install.zh-CN.md +154 -0
  31. itasca_mcp-0.6.0/pyproject.toml +74 -0
  32. itasca_mcp-0.6.0/release-notes.md +45 -0
  33. itasca_mcp-0.6.0/scripts/corpus/STRUCTURE_DESIGN.md +298 -0
  34. itasca_mcp-0.6.0/scripts/corpus/bootstrap_missing.py +353 -0
  35. itasca_mcp-0.6.0/scripts/corpus/extract_figure_refs.py +136 -0
  36. itasca_mcp-0.6.0/scripts/corpus/figure_manifest.json +296 -0
  37. itasca_mcp-0.6.0/scripts/corpus/flag_figure_defined.py +228 -0
  38. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_boundary_conditions.py +262 -0
  39. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_fish_intrinsics.py +248 -0
  40. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_geometry_data_table.py +157 -0
  41. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_histories_and_results.py +231 -0
  42. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_index.py +140 -0
  43. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_initial_conditions.py +224 -0
  44. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_joint_models.py +307 -0
  45. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_plot_items.py +1069 -0
  46. itasca_mcp-0.6.0/scripts/corpus/generate_3dec_python_skeleton.py +59 -0
  47. itasca_mcp-0.6.0/scripts/corpus/generate_index.py +560 -0
  48. itasca_mcp-0.6.0/scripts/corpus/generate_massflow_index.py +118 -0
  49. itasca_mcp-0.6.0/scripts/corpus/generate_massflow_plot_items.py +559 -0
  50. itasca_mcp-0.6.0/scripts/corpus/generate_massflow_python_skeleton.py +54 -0
  51. itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_conditions.py +254 -0
  52. itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_fish_intrinsics.py +225 -0
  53. itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_index.py +113 -0
  54. itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_plot_items.py +481 -0
  55. itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_python_skeleton.py +54 -0
  56. itasca_mcp-0.6.0/scripts/corpus/migrate_to_versioned.py +66 -0
  57. itasca_mcp-0.6.0/scripts/corpus/optimize_keywords.py +340 -0
  58. itasca_mcp-0.6.0/scripts/corpus/parse_3dec900.py +151 -0
  59. itasca_mcp-0.6.0/scripts/corpus/parse_3dec_python.py +321 -0
  60. itasca_mcp-0.6.0/scripts/corpus/parse_3dec_structural_properties.py +163 -0
  61. itasca_mcp-0.6.0/scripts/corpus/parse_brick_rblock.py +476 -0
  62. itasca_mcp-0.6.0/scripts/corpus/parse_massflow.py +146 -0
  63. itasca_mcp-0.6.0/scripts/corpus/parse_massflow_python.py +158 -0
  64. itasca_mcp-0.6.0/scripts/corpus/parse_mpoint.py +137 -0
  65. itasca_mcp-0.6.0/scripts/corpus/parse_pfc600.py +609 -0
  66. itasca_mcp-0.6.0/scripts/corpus/parse_pfc700.py +256 -0
  67. itasca_mcp-0.6.0/scripts/corpus/parse_pfc900.py +618 -0
  68. itasca_mcp-0.6.0/scripts/corpus/wire_common_constitutive_models.py +127 -0
  69. itasca_mcp-0.6.0/scripts/corpus/wire_common_range_elements.py +87 -0
  70. itasca_mcp-0.6.0/scripts/corpus/wire_massflow_common_references.py +175 -0
  71. itasca_mcp-0.6.0/scripts/corpus/wire_mpoint_common_references.py +169 -0
  72. itasca_mcp-0.6.0/src/itasca_mcp/__init__.py +3 -0
  73. itasca_mcp-0.6.0/src/itasca_mcp/bridge/__init__.py +5 -0
  74. itasca_mcp-0.6.0/src/itasca_mcp/bridge/client.py +294 -0
  75. itasca_mcp-0.6.0/src/itasca_mcp/config.py +51 -0
  76. itasca_mcp-0.6.0/src/itasca_mcp/contracts.py +128 -0
  77. itasca_mcp-0.6.0/src/itasca_mcp/formatting.py +143 -0
  78. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/__init__.py +5 -0
  79. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/adapters/__init__.py +11 -0
  80. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/adapters/api_adapter.py +225 -0
  81. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/adapters/command_adapter.py +128 -0
  82. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/__init__.py +33 -0
  83. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/formatter.py +296 -0
  84. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/loader.py +202 -0
  85. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/models.py +12 -0
  86. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/config.py +63 -0
  87. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/models/__init__.py +10 -0
  88. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/models/document.py +168 -0
  89. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/models/search_result.py +128 -0
  90. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/__init__.py +60 -0
  91. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/formatter.py +674 -0
  92. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/loader.py +731 -0
  93. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/models.py +80 -0
  94. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/types/__init__.py +10 -0
  95. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/types/contact.py +296 -0
  96. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/types/mappings.py +34 -0
  97. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/query/__init__.py +13 -0
  98. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/query/api_search.py +171 -0
  99. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/query/command_search.py +192 -0
  100. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/references/__init__.py +17 -0
  101. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/references/formatter.py +402 -0
  102. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/references/loader.py +291 -0
  103. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/analyze-stability.json +50 -0
  104. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/apply-remove.json +40 -0
  105. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/apply.json +50 -0
  106. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/cells.json +30 -0
  107. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-apply.json +20 -0
  108. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-area-minimum.json +20 -0
  109. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-compute-stiffness.json +31 -0
  110. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-compute.json +81 -0
  111. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-delete-open.json +20 -0
  112. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-generate-subcontacts.json +20 -0
  113. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-group-subcontact.json +20 -0
  114. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-group.json +20 -0
  115. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-history.json +151 -0
  116. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-jmodel.json +36 -0
  117. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-join.json +20 -0
  118. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-list.json +146 -0
  119. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-local-stiffness.json +20 -0
  120. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-material-table.json +51 -0
  121. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-persistence.json +40 -0
  122. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-property-distribution.json +51 -0
  123. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-property.json +20 -0
  124. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-record-shear.json +20 -0
  125. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-reset.json +46 -0
  126. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-tolerance.json +20 -0
  127. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-vertex-vertex.json +20 -0
  128. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/copy.json +40 -0
  129. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/create.json +60 -0
  130. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/cut.json +50 -0
  131. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/delete.json +25 -0
  132. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/densify.json +62 -0
  133. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/dynamic.json +30 -0
  134. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/excavate.json +19 -0
  135. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/export.json +19 -0
  136. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-apply-remove.json +61 -0
  137. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-apply.json +111 -0
  138. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-group.json +20 -0
  139. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-list.json +61 -0
  140. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-triangulate.json +36 -0
  141. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fill.json +35 -0
  142. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/finite-element.json +35 -0
  143. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fix.json +60 -0
  144. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fluid.json +90 -0
  145. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fragment.json +40 -0
  146. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/free.json +60 -0
  147. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/generate.json +40 -0
  148. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-apply-remove.json +136 -0
  149. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-apply.json +151 -0
  150. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-group.json +20 -0
  151. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-initialize.json +111 -0
  152. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-list.json +91 -0
  153. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-trace.json +31 -0
  154. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/group.json +30 -0
  155. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/hide.json +19 -0
  156. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/history.json +245 -0
  157. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/import.json +19 -0
  158. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/initialize.json +90 -0
  159. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/insitu.json +45 -0
  160. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/join-by-contact.json +32 -0
  161. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/join.json +19 -0
  162. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/joint-plane.json +35 -0
  163. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/list.json +215 -0
  164. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/makewall.json +19 -0
  165. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/mechanical.json +40 -0
  166. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/merge-finish.json +19 -0
  167. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/merge-start.json +19 -0
  168. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/property.json +25 -0
  169. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/relax.json +59 -0
  170. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/skip-join-update.json +19 -0
  171. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/thermal.json +89 -0
  172. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/to-flac3d.json +35 -0
  173. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/to-pfc.json +30 -0
  174. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/to-udec.json +45 -0
  175. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/tolerance.json +45 -0
  176. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/trace.json +35 -0
  177. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/update.json +35 -0
  178. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/vtk.json +85 -0
  179. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/water.json +50 -0
  180. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-cmodel.json +36 -0
  181. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-fluid.json +26 -0
  182. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-generate-new.json +51 -0
  183. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-generate.json +96 -0
  184. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-group.json +20 -0
  185. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-initialize.json +91 -0
  186. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-list.json +81 -0
  187. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-nodal-mixed-discretization.json +36 -0
  188. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-property-distribution.json +51 -0
  189. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-property.json +20 -0
  190. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-size.json +46 -0
  191. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-thermal.json +26 -0
  192. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-volume-minimum-delete.json +20 -0
  193. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/fblock/delete.json +19 -0
  194. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/fblock/group.json +19 -0
  195. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/fblock/list.json +35 -0
  196. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/feblock/generate.json +19 -0
  197. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/feblock/gravity.json +19 -0
  198. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/feblock/list.json +70 -0
  199. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/apply-remove.json +45 -0
  200. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/apply.json +60 -0
  201. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/fix.json +40 -0
  202. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/free.json +40 -0
  203. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/group.json +19 -0
  204. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/hide.json +19 -0
  205. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/history.json +40 -0
  206. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/initialize.json +55 -0
  207. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/list.json +40 -0
  208. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/property.json +30 -0
  209. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/volume-minimum.json +19 -0
  210. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/active.json +19 -0
  211. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/area-minimum.json +19 -0
  212. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/edge-apply-remove.json +31 -0
  213. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/edge-apply.json +41 -0
  214. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/edge-list.json +20 -0
  215. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/group.json +19 -0
  216. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/hide.json +19 -0
  217. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/list.json +40 -0
  218. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/property.json +30 -0
  219. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-group.json +20 -0
  220. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-history.json +56 -0
  221. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-initialize.json +31 -0
  222. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-list.json +41 -0
  223. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-property.json +41 -0
  224. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-area-minimum.json +20 -0
  225. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-edge-minimum.json +20 -0
  226. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-group.json +20 -0
  227. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-list.json +46 -0
  228. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/index.json +2535 -0
  229. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/index.json +2399 -0
  230. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/itasca_keywords.json +96 -0
  231. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/Block.json +742 -0
  232. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/contact/Contact.json +373 -0
  233. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/contact/module.json +62 -0
  234. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/contactarray/module.json +100 -0
  235. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/face/Face.json +354 -0
  236. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/face/module.json +47 -0
  237. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/facearray/module.json +100 -0
  238. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/gridpoint/Gridpoint.json +842 -0
  239. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/gridpoint/module.json +62 -0
  240. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/gridpointarray/module.json +287 -0
  241. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/module.json +77 -0
  242. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/subcontact/Subcontact.json +583 -0
  243. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/subcontact/module.json +47 -0
  244. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/subcontactarray/module.json +100 -0
  245. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/zone/Zone.json +548 -0
  246. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/zone/module.json +82 -0
  247. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/zonearray/module.json +436 -0
  248. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/blockarray/module.json +175 -0
  249. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/contact/Contact.json +8 -0
  250. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/contact/module.json +123 -0
  251. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/DFN.json +324 -0
  252. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/fracture/Fracture.json +641 -0
  253. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/fracture/module.json +92 -0
  254. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/inter/Inter.json +275 -0
  255. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/inter/module.json +47 -0
  256. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/module.json +142 -0
  257. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/setinter/Setinter.json +74 -0
  258. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/setinter/module.json +47 -0
  259. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/template/Template.json +370 -0
  260. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/template/module.json +47 -0
  261. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/vertex/Vertex.json +52 -0
  262. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/vertex/module.json +39 -0
  263. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/fish/module.json +93 -0
  264. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowknot/Flowknot.json +514 -0
  265. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowknot/module.json +62 -0
  266. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowknotarray/module.json +100 -0
  267. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/Flowplane.json +327 -0
  268. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/module.json +47 -0
  269. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/vertex/Vertex.json +371 -0
  270. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/vertex/module.json +47 -0
  271. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/vertexarray/module.json +100 -0
  272. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/zone/Zone.json +291 -0
  273. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/zone/module.json +47 -0
  274. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/zonearray/module.json +100 -0
  275. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplanearray/module.json +100 -0
  276. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/history/History.json +8 -0
  277. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/history/module.json +28 -0
  278. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Beam.json +514 -0
  279. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Cable.json +607 -0
  280. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Geogrid.json +646 -0
  281. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Liner.json +668 -0
  282. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Pile.json +978 -0
  283. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Shell.json +494 -0
  284. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/link/Link.json +455 -0
  285. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/link/module.json +47 -0
  286. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/module.json +92 -0
  287. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/node/Node.json +528 -0
  288. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/node/module.json +62 -0
  289. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/apply-modifiers.json +44 -0
  290. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/fluid-flow.json +33 -0
  291. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/gridpoint-and-block-fixity.json +61 -0
  292. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/index.json +31 -0
  293. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/mechanical-face.json +48 -0
  294. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/thermal-and-dynamic.json +40 -0
  295. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/constitutive-models/index.json +198 -0
  296. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/block-and-joints.json +72 -0
  297. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/block-zone-gridpoint.json +53 -0
  298. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/fluid-flow.json +39 -0
  299. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/index.json +28 -0
  300. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/data-sets.json +35 -0
  301. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/geometry-workflow.json +22 -0
  302. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/index.json +21 -0
  303. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/table-curves.json +18 -0
  304. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/histories-and-results/history-workflow.json +78 -0
  305. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/histories-and-results/index.json +16 -0
  306. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/histories-and-results/results-export.json +49 -0
  307. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/index.json +96 -0
  308. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/fluid-thermal.json +36 -0
  309. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/index.json +21 -0
  310. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/stress-initialization.json +45 -0
  311. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/velocity-and-state-reset.json +37 -0
  312. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/bilinear-mohr.json +143 -0
  313. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/cyjm.json +87 -0
  314. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/elastic.json +37 -0
  315. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/index.json +73 -0
  316. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/mohr.json +93 -0
  317. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/nonlinear.json +148 -0
  318. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/power.json +39 -0
  319. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/ratestate.json +38 -0
  320. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/softening-mohr.json +129 -0
  321. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/block/contour.json +96 -0
  322. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/block/index.json +138 -0
  323. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/block/label.json +28 -0
  324. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/blockcontact/colorby.json +18 -0
  325. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/blockcontact/index.json +112 -0
  326. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/bzone/contour.json +96 -0
  327. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/bzone/index.json +130 -0
  328. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/bzone/label.json +28 -0
  329. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/flow/index.json +108 -0
  330. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/fracture/color-by.json +23 -0
  331. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/fracture/index.json +108 -0
  332. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/index.json +61 -0
  333. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/joint/contour.json +44 -0
  334. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/joint/index.json +142 -0
  335. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/joint/label.json +15 -0
  336. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/structure/contour.json +76 -0
  337. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/structure/index.json +157 -0
  338. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/structure/label.json +22 -0
  339. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/subcontact/colorby.json +23 -0
  340. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/subcontact/index.json +118 -0
  341. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/range-elements/index.json +238 -0
  342. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/beam.json +105 -0
  343. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/cable.json +101 -0
  344. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/geogrid.json +61 -0
  345. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/index.json +42 -0
  346. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/liner.json +111 -0
  347. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/pile.json +191 -0
  348. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/shell.json +36 -0
  349. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-create.json +110 -0
  350. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-delete.json +32 -0
  351. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-list.json +32 -0
  352. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-modify.json +110 -0
  353. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-results.json +32 -0
  354. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-create.json +80 -0
  355. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-delete.json +32 -0
  356. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-export.json +32 -0
  357. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-group.json +65 -0
  358. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-import.json +50 -0
  359. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-list.json +80 -0
  360. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-results.json +32 -0
  361. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-create.json +95 -0
  362. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-delete.json +32 -0
  363. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-export.json +32 -0
  364. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-group.json +65 -0
  365. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-import.json +32 -0
  366. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-list.json +95 -0
  367. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-results.json +32 -0
  368. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-create.json +145 -0
  369. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-delete.json +32 -0
  370. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-export.json +32 -0
  371. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-group.json +65 -0
  372. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-import.json +32 -0
  373. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-list.json +110 -0
  374. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-results.json +32 -0
  375. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/automatic-create.json +31 -0
  376. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/boolean-convert.json +31 -0
  377. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/callback.json +669 -0
  378. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/debug.json +169 -0
  379. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/define.json +31 -0
  380. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/history.json +31 -0
  381. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/list.json +189 -0
  382. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/operator.json +28 -0
  383. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/result.json +31 -0
  384. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/structure.json +28 -0
  385. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/trace.json +31 -0
  386. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/aperture.json +155 -0
  387. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/attribute.json +185 -0
  388. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/cluster.json +65 -0
  389. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/combine.json +95 -0
  390. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/compute.json +140 -0
  391. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/connectivity.json +140 -0
  392. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/contact-model.json +155 -0
  393. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/copy.json +65 -0
  394. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/create.json +185 -0
  395. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/delete.json +32 -0
  396. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/dfn-extra.json +32 -0
  397. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/dfn-group.json +65 -0
  398. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/export.json +95 -0
  399. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/extra.json +32 -0
  400. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/generate.json +215 -0
  401. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/group.json +65 -0
  402. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/import.json +245 -0
  403. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/initialize.json +32 -0
  404. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-automatic-update.json +32 -0
  405. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-compute.json +110 -0
  406. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-delete.json +50 -0
  407. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-scanline.json +80 -0
  408. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/joint-set.json +141 -0
  409. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/list.json +125 -0
  410. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/property.json +32 -0
  411. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/prune.json +65 -0
  412. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/results.json +29 -0
  413. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/set-property.json +80 -0
  414. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/template-create.json +125 -0
  415. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/template-delete.json +32 -0
  416. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/template-modify-default.json +125 -0
  417. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/verify-file.json +80 -0
  418. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/assign-groups.json +125 -0
  419. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/copy.json +95 -0
  420. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/delete.json +32 -0
  421. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-create.json +135 -0
  422. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-delete.json +54 -0
  423. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-export.json +65 -0
  424. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-extra.json +32 -0
  425. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-group.json +75 -0
  426. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/export.json +105 -0
  427. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/fill.json +29 -0
  428. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/generate.json +180 -0
  429. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/import.json +115 -0
  430. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/list.json +110 -0
  431. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/move-to.json +90 -0
  432. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-create.json +75 -0
  433. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-delete.json +54 -0
  434. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-export.json +75 -0
  435. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-extra.json +32 -0
  436. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-group.json +75 -0
  437. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/paint-extra.json +1015 -0
  438. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-create.json +135 -0
  439. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-delete.json +54 -0
  440. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-export.json +75 -0
  441. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-extra.json +32 -0
  442. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-group.json +75 -0
  443. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/refine.json +32 -0
  444. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/results.json +29 -0
  445. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/rotate.json +90 -0
  446. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/select.json +32 -0
  447. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/separate.json +100 -0
  448. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/set.json +32 -0
  449. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/tessellate.json +125 -0
  450. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/translate.json +54 -0
  451. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/triangulate.json +75 -0
  452. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/delete.json +31 -0
  453. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/export.json +139 -0
  454. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/interval.json +31 -0
  455. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/label.json +28 -0
  456. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/list.json +94 -0
  457. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/purge.json +31 -0
  458. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/rename.json +28 -0
  459. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/results.json +31 -0
  460. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/calm.json +94 -0
  461. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/clean.json +138 -0
  462. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/creep.json +124 -0
  463. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/cycle.json +137 -0
  464. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/deterministic.json +154 -0
  465. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/display.json +189 -0
  466. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/domain.json +247 -0
  467. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/dynamic.json +124 -0
  468. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/energy.json +74 -0
  469. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/factor-of-safety.json +294 -0
  470. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/fluid.json +124 -0
  471. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/gravity.json +155 -0
  472. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/history.json +322 -0
  473. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/large-strain.json +97 -0
  474. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/list.json +109 -0
  475. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/mechanical.json +310 -0
  476. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/new.json +143 -0
  477. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/orientation-tracking.json +109 -0
  478. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/precision.json +31 -0
  479. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/random.json +122 -0
  480. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/range.json +271 -0
  481. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/restore.json +152 -0
  482. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/results.json +411 -0
  483. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/save.json +262 -0
  484. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/solve.json +621 -0
  485. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/step.json +31 -0
  486. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/thermal.json +287 -0
  487. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/title.json +31 -0
  488. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/update-interval.json +131 -0
  489. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/active.json +114 -0
  490. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/background.json +111 -0
  491. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/clear.json +85 -0
  492. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/copy.json +137 -0
  493. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/create.json +84 -0
  494. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/current.json +70 -0
  495. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/delete.json +84 -0
  496. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/export.json +248 -0
  497. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/item.json +337 -0
  498. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/rename.json +99 -0
  499. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/title.json +100 -0
  500. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/update.json +111 -0
  501. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/view.json +341 -0
  502. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/automatic-model-save.json +60 -0
  503. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/call.json +94 -0
  504. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/continue.json +31 -0
  505. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/customer-title-1.json +31 -0
  506. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/customer-title-2.json +31 -0
  507. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/directory.json +109 -0
  508. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/echo-line.json +31 -0
  509. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/echo.json +64 -0
  510. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/encrypt.json +28 -0
  511. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/exit.json +31 -0
  512. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/floating-point-check.json +31 -0
  513. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/license.json +50 -0
  514. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/list.json +189 -0
  515. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/load.json +169 -0
  516. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/log-file.json +42 -0
  517. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/log.json +74 -0
  518. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/mail.json +214 -0
  519. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/notice.json +31 -0
  520. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/pagination.json +31 -0
  521. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/pause.json +64 -0
  522. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/playback.json +31 -0
  523. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/quit.json +31 -0
  524. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/return.json +31 -0
  525. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/stop.json +31 -0
  526. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/system.json +89 -0
  527. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/threads.json +64 -0
  528. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/undo.json +31 -0
  529. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/warning.json +31 -0
  530. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/execute.json +32 -0
  531. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/list.json +32 -0
  532. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/new.json +32 -0
  533. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/restore.json +32 -0
  534. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/save-plugins.json +32 -0
  535. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/save.json +32 -0
  536. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/add.json +32 -0
  537. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/clear.json +32 -0
  538. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/delete.json +32 -0
  539. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/export.json +80 -0
  540. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/import.json +32 -0
  541. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/insert.json +32 -0
  542. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/label.json +32 -0
  543. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/list.json +32 -0
  544. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/position.json +32 -0
  545. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/results.json +32 -0
  546. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/sort.json +32 -0
  547. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/python_sdk_docs/itasca.json +703 -0
  548. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/anisotropic.json +106 -0
  549. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/burgers-mohr.json +141 -0
  550. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/burgers.json +99 -0
  551. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/cap-yield-simplified.json +213 -0
  552. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/cap-yield.json +302 -0
  553. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/columnar-basalt.json +242 -0
  554. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/concrete.json +190 -0
  555. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/double-yield.json +162 -0
  556. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/drucker-prager.json +80 -0
  557. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/elastic.json +51 -0
  558. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/finn.json +174 -0
  559. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/hoek-brown-pac.json +156 -0
  560. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/hoek-brown.json +241 -0
  561. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/hydration-drucker-prager.json +144 -0
  562. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/imass.json +429 -0
  563. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/maxwell.json +57 -0
  564. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/modified-cam-clay.json +122 -0
  565. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/mohr-coulomb-tension.json +131 -0
  566. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/mohr-coulomb.json +86 -0
  567. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/norsand.json +269 -0
  568. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/null.json +19 -0
  569. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/orthotropic.json +135 -0
  570. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/p2psand.json +304 -0
  571. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/plastic-hardening.json +254 -0
  572. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/power-mohr.json +128 -0
  573. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/power-ubiquitous.json +203 -0
  574. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/power.json +92 -0
  575. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/soft-soil-creep.json +201 -0
  576. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/soft-soil.json +192 -0
  577. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/softening-ubiquitous.json +333 -0
  578. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/strain-softening.json +124 -0
  579. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/swell.json +246 -0
  580. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/ubiquitous-anisotropic.json +162 -0
  581. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/ubiquitous-joint.json +161 -0
  582. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/von-mises.json +66 -0
  583. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/wipp-drucker.json +162 -0
  584. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/wipp-salt.json +178 -0
  585. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/wipp.json +120 -0
  586. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/annulus.json +28 -0
  587. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/by.json +15 -0
  588. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/cylinder.json +35 -0
  589. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/ellipse.json +15 -0
  590. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/extent.json +15 -0
  591. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/extra-list.json +15 -0
  592. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/extra.json +39 -0
  593. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/fish.json +18 -0
  594. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/group.json +60 -0
  595. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/id-list.json +15 -0
  596. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/id.json +28 -0
  597. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/named-range.json +19 -0
  598. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/not.json +15 -0
  599. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/plane.json +45 -0
  600. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/polygon.json +15 -0
  601. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position-x.json +30 -0
  602. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position-y.json +17 -0
  603. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position-z.json +17 -0
  604. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position.json +35 -0
  605. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/rectangle.json +15 -0
  606. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/sphere.json +27 -0
  607. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/union.json +15 -0
  608. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-create.json +48 -0
  609. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-delete.json +22 -0
  610. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-export.json +38 -0
  611. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-group.json +33 -0
  612. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-hide.json +22 -0
  613. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-id.json +28 -0
  614. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-import.json +28 -0
  615. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-list.json +63 -0
  616. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-make-hex-only.json +25 -0
  617. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-multiplier.json +22 -0
  618. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-snapon.json +38 -0
  619. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-transform.json +43 -0
  620. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-add-controls.json +35 -0
  621. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-delete.json +22 -0
  622. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-drape.json +38 -0
  623. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-factor.json +22 -0
  624. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-group.json +22 -0
  625. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-id.json +93 -0
  626. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-list.json +48 -0
  627. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-ratio-isolate.json +24 -0
  628. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-ratio.json +22 -0
  629. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-size.json +22 -0
  630. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-snapon.json +38 -0
  631. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-transform.json +43 -0
  632. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-type.json +38 -0
  633. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-add-controls.json +35 -0
  634. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-cycle.json +22 -0
  635. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-delete.json +22 -0
  636. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-drape.json +38 -0
  637. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-group.json +22 -0
  638. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-id.json +73 -0
  639. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-list.json +53 -0
  640. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-snapon.json +38 -0
  641. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-transform.json +43 -0
  642. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-delete.json +22 -0
  643. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-drape.json +38 -0
  644. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-group.json +22 -0
  645. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-list.json +43 -0
  646. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-merge.json +22 -0
  647. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-move-to.json +40 -0
  648. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-snapon.json +38 -0
  649. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-transform.json +43 -0
  650. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-arrest-triangle.json +21 -0
  651. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-auto-tolerance.json +21 -0
  652. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-automatic-zone.json +37 -0
  653. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-break-angle.json +21 -0
  654. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-create.json +19 -0
  655. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-delete.json +19 -0
  656. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-export.json +19 -0
  657. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-geometry.json +35 -0
  658. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-import.json +30 -0
  659. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-list.json +19 -0
  660. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-select.json +19 -0
  661. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-tolerance.json +19 -0
  662. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-validate-all.json +21 -0
  663. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/domain/condition.json +23 -0
  664. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/domain/extent.json +23 -0
  665. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/domain/strain-rate.json +23 -0
  666. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-create.json +40 -0
  667. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-delete.json +19 -0
  668. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-group.json +30 -0
  669. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-id.json +50 -0
  670. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-list.json +40 -0
  671. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-multiplier.json +19 -0
  672. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-position.json +40 -0
  673. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-clear.json +19 -0
  674. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-combine.json +30 -0
  675. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-create.json +30 -0
  676. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-delete.json +19 -0
  677. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-group.json +30 -0
  678. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-id.json +100 -0
  679. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-list.json +45 -0
  680. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-ratio-isolate.json +21 -0
  681. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-ratio-reverse.json +21 -0
  682. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-ratio.json +25 -0
  683. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-size-default.json +21 -0
  684. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-size.json +19 -0
  685. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-zone-length-default.json +22 -0
  686. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-zone-length.json +21 -0
  687. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-gradation.json +19 -0
  688. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-list.json +25 -0
  689. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-mode.json +30 -0
  690. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-optimization.json +19 -0
  691. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-quad-weight.json +21 -0
  692. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-reset.json +19 -0
  693. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-shape-quality.json +21 -0
  694. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-target-size.json +21 -0
  695. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-type.json +30 -0
  696. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-clear.json +19 -0
  697. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-continuous.json +19 -0
  698. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-ends-parallel.json +23 -0
  699. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-extrude-mode.json +37 -0
  700. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-translate.json +45 -0
  701. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-create.json +30 -0
  702. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-delete.json +19 -0
  703. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-group.json +30 -0
  704. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-id.json +35 -0
  705. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-list.json +40 -0
  706. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-transform.json +50 -0
  707. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/section-circle.json +45 -0
  708. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/section-polygon.json +30 -0
  709. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/section-rectangle.json +45 -0
  710. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-clear.json +19 -0
  711. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-create.json +80 -0
  712. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-delete.json +19 -0
  713. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-group.json +30 -0
  714. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-id.json +100 -0
  715. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-list.json +40 -0
  716. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-create.json +32 -0
  717. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-delete.json +21 -0
  718. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-group.json +32 -0
  719. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-id.json +37 -0
  720. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-list.json +37 -0
  721. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-transform.json +47 -0
  722. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-ratio-reverse.json +21 -0
  723. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-ratio.json +19 -0
  724. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-size.json +19 -0
  725. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-zone-length.json +21 -0
  726. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-automatic-validate.json +27 -0
  727. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-automatic-zone.json +57 -0
  728. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-clear.json +19 -0
  729. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-create.json +19 -0
  730. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-delete.json +19 -0
  731. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-list.json +45 -0
  732. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-metadata.json +35 -0
  733. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-rename.json +19 -0
  734. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-select.json +19 -0
  735. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-system.json +40 -0
  736. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-update-polygons.json +27 -0
  737. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/create.json +24 -0
  738. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/list.json +24 -0
  739. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/rename.json +24 -0
  740. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/slot.json +60 -0
  741. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/model/configure.json +173 -0
  742. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-apply.json +46 -0
  743. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-cmodel.json +115 -0
  744. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-create.json +222 -0
  745. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-delete.json +46 -0
  746. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-group.json +82 -0
  747. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-hide.json +82 -0
  748. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-history.json +232 -0
  749. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-import.json +237 -0
  750. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-initialize.json +67 -0
  751. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-list.json +312 -0
  752. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-property-{elastic}.json +31 -0
  753. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-property.json +252 -0
  754. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-refine.json +46 -0
  755. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-select.json +97 -0
  756. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-apply.json +97 -0
  757. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-create.json +217 -0
  758. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-delete.json +46 -0
  759. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-group.json +82 -0
  760. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-hide.json +82 -0
  761. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-history.json +207 -0
  762. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-import.json +247 -0
  763. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-initialize.json +82 -0
  764. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-list.json +380 -0
  765. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-property.json +272 -0
  766. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-refine.json +46 -0
  767. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-select.json +97 -0
  768. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/dynamic-damping.json +62 -0
  769. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/dynamic-safety-factor.json +37 -0
  770. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-apply.json +46 -0
  771. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-cmodel.json +102 -0
  772. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-create.json +309 -0
  773. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-delete.json +46 -0
  774. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-group.json +82 -0
  775. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-hide.json +82 -0
  776. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-history.json +572 -0
  777. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-import.json +285 -0
  778. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-initialize.json +67 -0
  779. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-list.json +419 -0
  780. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-property.json +242 -0
  781. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-recover.json +97 -0
  782. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-refine.json +46 -0
  783. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-select.json +97 -0
  784. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geometry-update.json +36 -0
  785. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-apply.json +65 -0
  786. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-create.json +160 -0
  787. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-delete.json +41 -0
  788. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-group.json +65 -0
  789. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-hide.json +65 -0
  790. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-history.json +184 -0
  791. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-import.json +190 -0
  792. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-initialize.json +65 -0
  793. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-list.json +259 -0
  794. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-property.json +225 -0
  795. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-select.json +75 -0
  796. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-apply.json +46 -0
  797. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-cmodel.json +102 -0
  798. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-create.json +364 -0
  799. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-delete.json +46 -0
  800. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-gap-factor.json +48 -0
  801. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-group.json +82 -0
  802. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-hide.json +82 -0
  803. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-history.json +617 -0
  804. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-import.json +325 -0
  805. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-initialize.json +67 -0
  806. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-list.json +534 -0
  807. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-property.json +392 -0
  808. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-recover.json +97 -0
  809. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-refine.json +44 -0
  810. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-select.json +97 -0
  811. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-attach.json +237 -0
  812. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-create.json +166 -0
  813. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-delete.json +46 -0
  814. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-dynamic-damping.json +49 -0
  815. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-group.json +82 -0
  816. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-hide.json +82 -0
  817. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-history.json +292 -0
  818. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-list.json +187 -0
  819. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-property.json +337 -0
  820. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-select.json +97 -0
  821. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-slide.json +46 -0
  822. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-tolerance-contact.json +48 -0
  823. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-tolerance-node.json +48 -0
  824. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-tolerance-slide.json +48 -0
  825. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/list-information.json +40 -0
  826. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/mechanical-damping.json +47 -0
  827. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-apply.json +248 -0
  828. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-create.json +85 -0
  829. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-damping-local.json +48 -0
  830. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-delete.json +46 -0
  831. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-fix.json +187 -0
  832. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-free.json +197 -0
  833. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-group.json +82 -0
  834. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-hide.json +82 -0
  835. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-history.json +462 -0
  836. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-initialize.json +463 -0
  837. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-join.json +97 -0
  838. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-list.json +350 -0
  839. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-select.json +97 -0
  840. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-system-local.json +109 -0
  841. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-apply.json +68 -0
  842. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-cmodel.json +102 -0
  843. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-create.json +222 -0
  844. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-delete.json +46 -0
  845. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-group.json +82 -0
  846. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-hide.json +82 -0
  847. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-history.json +322 -0
  848. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-import.json +247 -0
  849. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-initialize.json +82 -0
  850. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-list.json +542 -0
  851. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-property.json +517 -0
  852. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-refine.json +46 -0
  853. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-select.json +97 -0
  854. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/ratio.json +84 -0
  855. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/results.json +174 -0
  856. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/safety-factor.json +47 -0
  857. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/scale-rotational-mass.json +48 -0
  858. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-apply.json +46 -0
  859. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-cmodel.json +102 -0
  860. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-create.json +314 -0
  861. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-delete.json +46 -0
  862. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-group.json +82 -0
  863. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-hide.json +82 -0
  864. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-history.json +527 -0
  865. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-import.json +290 -0
  866. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-initialize.json +67 -0
  867. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-list.json +354 -0
  868. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-property-{elastic}.json +76 -0
  869. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-property.json +167 -0
  870. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-recover.json +97 -0
  871. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-refine.json +46 -0
  872. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-select.json +97 -0
  873. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/apply-remove.json +132 -0
  874. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/apply.json +414 -0
  875. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/attach.json +324 -0
  876. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/cmodel.json +654 -0
  877. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/consolidation.json +46 -0
  878. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/copy.json +45 -0
  879. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/create.json +590 -0
  880. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/create2d.json +151 -0
  881. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/creep.json +94 -0
  882. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/delete.json +43 -0
  883. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/densify.json +161 -0
  884. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/dynamic.json +354 -0
  885. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/export.json +66 -0
  886. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-apply-remove.json +399 -0
  887. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-apply.json +676 -0
  888. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-group.json +100 -0
  889. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-hide.json +175 -0
  890. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-list.json +94 -0
  891. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-select.json +175 -0
  892. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-skin.json +95 -0
  893. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-westergaard-remove.json +43 -0
  894. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-westergaard.json +95 -0
  895. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/fluid.json +965 -0
  896. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/generate.json +371 -0
  897. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/geometry-test.json +47 -0
  898. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/geometry-tolerance.json +47 -0
  899. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/geometry-update.json +47 -0
  900. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-create.json +65 -0
  901. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-fix.json +244 -0
  902. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-free.json +190 -0
  903. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-group.json +65 -0
  904. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-import.json +90 -0
  905. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-initialize.json +379 -0
  906. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-list.json +193 -0
  907. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-merge.json +65 -0
  908. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-system.json +85 -0
  909. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint.json +56 -0
  910. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/group.json +81 -0
  911. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/hide.json +81 -0
  912. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/history.json +1254 -0
  913. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/import.json +111 -0
  914. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/initialize-stresses.json +113 -0
  915. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/initialize.json +412 -0
  916. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-create.json +125 -0
  917. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-effective.json +41 -0
  918. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-element.json +154 -0
  919. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-group.json +65 -0
  920. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-list.json +41 -0
  921. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-node.json +420 -0
  922. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-permeability.json +41 -0
  923. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-tolerance-contact.json +59 -0
  924. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/list.json +1634 -0
  925. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/mechanical.json +167 -0
  926. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/nodal-mixed-discretization.json +48 -0
  927. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/property-distribution.json +143 -0
  928. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/property.json +197 -0
  929. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/ratio.json +106 -0
  930. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/reflect.json +126 -0
  931. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/relax.json +515 -0
  932. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/results.json +314 -0
  933. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/select.json +96 -0
  934. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/separate.json +134 -0
  935. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/split.json +81 -0
  936. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/thermal.json +472 -0
  937. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/trace.json +106 -0
  938. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/validate.json +96 -0
  939. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/vtk.json +194 -0
  940. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/water.json +239 -0
  941. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/index.json +4120 -0
  942. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/index.json +1050 -0
  943. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/itasca_keywords.json +96 -0
  944. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/attach/Attach.json +317 -0
  945. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/attach/module.json +71 -0
  946. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/gridpoint/Gridpoint.json +1440 -0
  947. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/gridpoint/module.json +62 -0
  948. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/gridpointarray/module.json +619 -0
  949. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/Interface.json +234 -0
  950. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/element/Element.json +248 -0
  951. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/element/module.json +7 -0
  952. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/module.json +31 -0
  953. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/node/Node.json +762 -0
  954. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/node/module.json +7 -0
  955. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interfacearray/module.json +67 -0
  956. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interfaceelementarray/module.json +81 -0
  957. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interfacenodearray/module.json +295 -0
  958. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/vertexarray/module.json +108 -0
  959. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/zone/Zone.json +1419 -0
  960. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/zone/module.json +386 -0
  961. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/zonearray/module.json +585 -0
  962. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/apply-modifiers.json +74 -0
  963. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/fluid-flow.json +65 -0
  964. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/gridpoint-fixity.json +85 -0
  965. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/index.json +41 -0
  966. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/mechanical-face.json +104 -0
  967. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/thermal-dynamic.json +73 -0
  968. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/constitutive-models/index.json +285 -0
  969. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/field-query.json +58 -0
  970. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/index.json +31 -0
  971. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/structure-interface.json +61 -0
  972. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/zone-gridpoint.json +98 -0
  973. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/data-sets.json +57 -0
  974. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/geometry-workflow.json +50 -0
  975. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/index.json +31 -0
  976. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/table-curves.json +48 -0
  977. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/history-workflow.json +101 -0
  978. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/index.json +29 -0
  979. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/results-export.json +117 -0
  980. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/zone-field-data.json +137 -0
  981. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/index.json +104 -0
  982. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/fluid-thermal.json +80 -0
  983. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/index.json +29 -0
  984. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/state-reset.json +52 -0
  985. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/stress-initialization.json +58 -0
  986. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/interface-and-joints/index.json +24 -0
  987. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/interface-and-joints/joint-workflow.json +51 -0
  988. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/interface-and-joints/zone-interface.json +95 -0
  989. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/gridpoint-fix/index.json +83 -0
  990. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/index.json +45 -0
  991. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/structure/contour.json +84 -0
  992. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/structure/index.json +108 -0
  993. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/contour.json +90 -0
  994. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/cut-line.json +21 -0
  995. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/index.json +151 -0
  996. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/label.json +37 -0
  997. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/range-elements/index.json +238 -0
  998. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/sketch-and-building-blocks/building-blocks.json +60 -0
  999. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/sketch-and-building-blocks/index.json +25 -0
  1000. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/sketch-and-building-blocks/sketch-workflow.json +88 -0
  1001. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/beam-pile.json +114 -0
  1002. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/cable.json +67 -0
  1003. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/index.json +42 -0
  1004. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/liner.json +161 -0
  1005. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/link.json +49 -0
  1006. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/clean.json +19 -0
  1007. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/compute.json +30 -0
  1008. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-add-drawperiod.json +20 -0
  1009. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-drawbell-to-geometry.json +26 -0
  1010. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-dump-drawperiod.json +36 -0
  1011. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-extraction-report.json +20 -0
  1012. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-group.json +31 -0
  1013. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-import-drawbell.json +20 -0
  1014. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-import-drawperiod.json +20 -0
  1015. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-import.json +20 -0
  1016. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-imz-to-geometry.json +26 -0
  1017. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-list.json +36 -0
  1018. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/fines-migration.json +19 -0
  1019. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/initialize.json +85 -0
  1020. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-filename.json +20 -0
  1021. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-group.json +31 -0
  1022. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-import-trace.json +20 -0
  1023. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-initialize.json +26 -0
  1024. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-list.json +36 -0
  1025. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-report-days.json +20 -0
  1026. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-report-export.json +20 -0
  1027. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-report-period.json +20 -0
  1028. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-size-distribution.json +56 -0
  1029. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-trace-report.json +20 -0
  1030. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-trace.json +36 -0
  1031. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/mineblock-group.json +31 -0
  1032. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/mineblock-import.json +20 -0
  1033. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/mineblock-list.json +36 -0
  1034. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/record.json +40 -0
  1035. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/secondary-fragmentation.json +19 -0
  1036. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/index.json +1843 -0
  1037. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/index.json +166 -0
  1038. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/itasca_keywords.json +96 -0
  1039. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/contact/Contact.json +8 -0
  1040. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/contact/module.json +123 -0
  1041. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/fish/module.json +93 -0
  1042. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/history/History.json +8 -0
  1043. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/history/module.json +28 -0
  1044. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/constitutive-models/index.json +276 -0
  1045. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/index.json +30 -0
  1046. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/drawpoint/color-by.json +43 -0
  1047. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/drawpoint/index.json +106 -0
  1048. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/flow-vector/index.json +102 -0
  1049. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/history-locations/index.json +87 -0
  1050. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/imz/color-by.json +40 -0
  1051. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/imz/index.json +100 -0
  1052. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/index.json +54 -0
  1053. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/marker/color-by.json +27 -0
  1054. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/marker/index.json +111 -0
  1055. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/mineblock/color-by.json +50 -0
  1056. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/mineblock/index.json +113 -0
  1057. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/particle-trace/index.json +76 -0
  1058. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/range-elements/index.json +238 -0
  1059. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/cmodel.json +35 -0
  1060. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/create.json +55 -0
  1061. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/delete.json +19 -0
  1062. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/extra.json +19 -0
  1063. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/fix.json +45 -0
  1064. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/fluid.json +30 -0
  1065. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/free.json +45 -0
  1066. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/generate.json +30 -0
  1067. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/group.json +30 -0
  1068. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/history.json +135 -0
  1069. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/hybrid-points.json +19 -0
  1070. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/import.json +39 -0
  1071. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/initialize-stresses.json +40 -0
  1072. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/initialize.json +155 -0
  1073. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/list.json +35 -0
  1074. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/locking-adjustment.json +19 -0
  1075. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/mesh-density.json +19 -0
  1076. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-damping.json +31 -0
  1077. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-dynamic.json +26 -0
  1078. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-fix.json +61 -0
  1079. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-free.json +61 -0
  1080. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-group.json +31 -0
  1081. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-history.json +61 -0
  1082. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-skin.json +26 -0
  1083. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-spacing.json +20 -0
  1084. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/pic-fraction.json +19 -0
  1085. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/property.json +19 -0
  1086. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/split.json +50 -0
  1087. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/trace.json +35 -0
  1088. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/volume-limit.json +25 -0
  1089. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/zone-conversion.json +45 -0
  1090. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/index.json +1849 -0
  1091. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/python_sdk_docs/index.json +113 -0
  1092. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/python_sdk_docs/itasca_keywords.json +96 -0
  1093. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/boundary-conditions/grid-node-fixity.json +45 -0
  1094. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/boundary-conditions/index.json +16 -0
  1095. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/boundary-conditions/material-point-fixity.json +43 -0
  1096. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/constitutive-models/index.json +276 -0
  1097. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/fish-intrinsics/background-node.json +66 -0
  1098. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/fish-intrinsics/index.json +21 -0
  1099. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/fish-intrinsics/material-point.json +100 -0
  1100. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/index.json +64 -0
  1101. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/initial-conditions/field-initialization.json +67 -0
  1102. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/initial-conditions/gravitational-stress.json +26 -0
  1103. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/initial-conditions/index.json +16 -0
  1104. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/index.json +42 -0
  1105. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/meshpoint/index.json +83 -0
  1106. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint/color-by.json +50 -0
  1107. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint/index.json +143 -0
  1108. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint-hybrid/index.json +83 -0
  1109. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint-tensor/index.json +51 -0
  1110. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint-vector/index.json +114 -0
  1111. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/range-elements/index.json +238 -0
  1112. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/accumulate-stress.json +48 -0
  1113. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/attribute.json +864 -0
  1114. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/clump.json +223 -0
  1115. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/create.json +230 -0
  1116. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/delete.json +122 -0
  1117. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/distribute.json +253 -0
  1118. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/export.json +187 -0
  1119. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/extra.json +83 -0
  1120. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/fix.json +207 -0
  1121. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/free.json +207 -0
  1122. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/generate.json +325 -0
  1123. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/group.json +162 -0
  1124. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/history.json +755 -0
  1125. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/initialize.json +72 -0
  1126. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/list.json +200 -0
  1127. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/property.json +83 -0
  1128. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/results.json +104 -0
  1129. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/tolerance.json +143 -0
  1130. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/trace.json +83 -0
  1131. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/tractions.json +343 -0
  1132. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/assemble.json +97 -0
  1133. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/delete.json +33 -0
  1134. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/export.json +81 -0
  1135. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/import.json +66 -0
  1136. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/inlet-create.json +144 -0
  1137. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/inlet-modify.json +143 -0
  1138. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/make.json +33 -0
  1139. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/accumulate-stress.json +48 -0
  1140. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/attribute.json +851 -0
  1141. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/break.json +114 -0
  1142. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/create.json +261 -0
  1143. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/delete.json +133 -0
  1144. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/distribute.json +188 -0
  1145. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/export.json +182 -0
  1146. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/extra.json +119 -0
  1147. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/fix.json +212 -0
  1148. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/free.json +212 -0
  1149. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/generate.json +319 -0
  1150. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/group.json +168 -0
  1151. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/history.json +602 -0
  1152. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/initialize.json +89 -0
  1153. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/list.json +293 -0
  1154. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/order.json +67 -0
  1155. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/property.json +126 -0
  1156. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/replicate.json +318 -0
  1157. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/results.json +119 -0
  1158. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/rotate.json +156 -0
  1159. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/scale.json +139 -0
  1160. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/template.json +266 -0
  1161. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/tolerance.json +165 -0
  1162. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/trace.json +191 -0
  1163. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/activate.json +539 -0
  1164. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/apply-group.json +548 -0
  1165. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-add.json +279 -0
  1166. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-apply.json +184 -0
  1167. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-default.json +296 -0
  1168. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-list.json +185 -0
  1169. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-modify.json +302 -0
  1170. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-proximity.json +482 -0
  1171. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-remove.json +158 -0
  1172. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/delete.json +528 -0
  1173. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/detection.json +554 -0
  1174. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/extra.json +64 -0
  1175. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/fix.json +512 -0
  1176. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/group.json +624 -0
  1177. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/history.json +340 -0
  1178. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/inhibit.json +622 -0
  1179. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/list.json +279 -0
  1180. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/method.json +570 -0
  1181. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/model.json +610 -0
  1182. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/persist.json +536 -0
  1183. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/property.json +459 -0
  1184. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/domain/condition.json +29 -0
  1185. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/domain/extent.json +29 -0
  1186. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/domain/strain-rate.json +29 -0
  1187. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/activate.json +441 -0
  1188. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/clear.json +412 -0
  1189. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/compute.json +541 -0
  1190. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/deactivate.json +526 -0
  1191. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/groupisolated.json +28 -0
  1192. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/groupslot.json +31 -0
  1193. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/list.json +533 -0
  1194. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/map.json +31 -0
  1195. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/register.json +647 -0
  1196. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/create.json +32 -0
  1197. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/list.json +32 -0
  1198. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/rename.json +32 -0
  1199. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/slot.json +65 -0
  1200. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/create.json +545 -0
  1201. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/delete.json +368 -0
  1202. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/dump.json +450 -0
  1203. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/history.json +964 -0
  1204. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/list.json +410 -0
  1205. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/modify.json +566 -0
  1206. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/model/configure.json +247 -0
  1207. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/apply-facet-groups.json +52 -0
  1208. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/attribute.json +828 -0
  1209. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/clump.json +152 -0
  1210. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/configure.json +43 -0
  1211. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/construct.json +111 -0
  1212. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/contact-resolution.json +171 -0
  1213. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/create.json +206 -0
  1214. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/cut.json +251 -0
  1215. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/damping.json +52 -0
  1216. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/delete.json +96 -0
  1217. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/densify.json +112 -0
  1218. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/dilate.json +86 -0
  1219. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/distribute.json +141 -0
  1220. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/erode.json +81 -0
  1221. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/export.json +51 -0
  1222. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/extra.json +33 -0
  1223. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/facet-apply-remove.json +30 -0
  1224. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/facet-apply.json +67 -0
  1225. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/facet-group.json +62 -0
  1226. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/fix.json +156 -0
  1227. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/free.json +156 -0
  1228. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/generate.json +261 -0
  1229. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/group.json +81 -0
  1230. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/hide.json +52 -0
  1231. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/history.json +651 -0
  1232. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/import.json +121 -0
  1233. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/initialize.json +33 -0
  1234. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/list.json +141 -0
  1235. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/merge.json +111 -0
  1236. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/property.json +33 -0
  1237. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/refine.json +122 -0
  1238. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/reflect.json +48 -0
  1239. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/remap-interval.json +27 -0
  1240. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/replicate.json +231 -0
  1241. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/result.json +81 -0
  1242. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/rotate.json +96 -0
  1243. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/scale.json +111 -0
  1244. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/select.json +62 -0
  1245. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/template.json +66 -0
  1246. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/tolerance.json +81 -0
  1247. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/trace.json +33 -0
  1248. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/tractions.json +131 -0
  1249. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/delete.json +32 -0
  1250. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/export.json +32 -0
  1251. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/interval.json +32 -0
  1252. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/list.json +80 -0
  1253. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/name.json +32 -0
  1254. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/purge.json +32 -0
  1255. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/results.json +32 -0
  1256. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/active-sides.json +106 -0
  1257. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/addfacet.json +150 -0
  1258. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/attribute.json +657 -0
  1259. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/create.json +194 -0
  1260. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/delete.json +140 -0
  1261. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/export.json +165 -0
  1262. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/extra.json +137 -0
  1263. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/generate.json +383 -0
  1264. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/group.json +174 -0
  1265. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/history.json +618 -0
  1266. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/import.json +201 -0
  1267. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/initialize.json +33 -0
  1268. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/list.json +280 -0
  1269. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/property.json +179 -0
  1270. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/resolution.json +161 -0
  1271. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/results.json +163 -0
  1272. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/rotate.json +178 -0
  1273. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/servo.json +264 -0
  1274. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/tolerance.json +217 -0
  1275. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/velocity-conveyor.json +127 -0
  1276. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/index.json +3493 -0
  1277. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/index.json +2218 -0
  1278. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/itasca_keywords.json +35 -0
  1279. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ball/Ball.json +1643 -0
  1280. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ball/keywords.json +1079 -0
  1281. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ball/module.json +182 -0
  1282. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballarray/keywords.json +328 -0
  1283. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballarray/module.json +1614 -0
  1284. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballballarray/keywords.json +236 -0
  1285. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballballarray/module.json +1004 -0
  1286. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballfacetarray/keywords.json +231 -0
  1287. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballfacetarray/module.json +978 -0
  1288. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballpebblearray/keywords.json +231 -0
  1289. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballpebblearray/module.json +978 -0
  1290. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/Clump.json +1995 -0
  1291. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/keywords.json +1407 -0
  1292. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/module.json +150 -0
  1293. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/pebble/Pebble.json +499 -0
  1294. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/pebble/keywords.json +387 -0
  1295. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/pebble/module.json +107 -0
  1296. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/template/Template.json +200 -0
  1297. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/template/keywords.json +363 -0
  1298. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/template/module.json +95 -0
  1299. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clumparray/keywords.json +348 -0
  1300. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clumparray/module.json +1732 -0
  1301. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/Contact.json +640 -0
  1302. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/ThermalContact.json +589 -0
  1303. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/keywords.json +856 -0
  1304. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/module.json +140 -0
  1305. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/Measure.json +399 -0
  1306. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/Measure_backup.json +196 -0
  1307. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/Measure_converted.json +399 -0
  1308. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/keywords.json +405 -0
  1309. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/module.json +89 -0
  1310. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblefacetarray/keywords.json +231 -0
  1311. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblefacetarray/module.json +978 -0
  1312. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblepebblearray/keywords.json +231 -0
  1313. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblepebblearray/module.json +978 -0
  1314. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/RBlock.json +1439 -0
  1315. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/keywords.json +44 -0
  1316. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/module.json +97 -0
  1317. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/template/Template.json +175 -0
  1318. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/template/keywords.json +23 -0
  1319. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/template/module.json +71 -0
  1320. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblockarray/keywords.json +348 -0
  1321. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblockarray/module.json +1732 -0
  1322. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/Wall.json +800 -0
  1323. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/facet/Facet.json +316 -0
  1324. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/facet/keywords.json +602 -0
  1325. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/facet/module.json +99 -0
  1326. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/keywords.json +1224 -0
  1327. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/module.json +116 -0
  1328. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/vertex/Vertex.json +164 -0
  1329. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/vertex/keywords.json +352 -0
  1330. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/vertex/module.json +99 -0
  1331. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wallarray/keywords.json +218 -0
  1332. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wallarray/module.json +1040 -0
  1333. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/arrlinear.json +292 -0
  1334. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/bilinear.json +25 -0
  1335. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/burger.json +172 -0
  1336. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/eepa.json +286 -0
  1337. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/fish.json +115 -0
  1338. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/flatjoint.json +385 -0
  1339. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/hertz.json +411 -0
  1340. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/hysteretic.json +165 -0
  1341. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/index.json +441 -0
  1342. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/jkr.json +252 -0
  1343. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/linear.json +297 -0
  1344. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/linearcbond.json +413 -0
  1345. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/lineardipole.json +281 -0
  1346. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/linearpbond.json +631 -0
  1347. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/mohr.json +379 -0
  1348. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/null.json +25 -0
  1349. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/rrlinear.json +465 -0
  1350. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/smoothjoint.json +278 -0
  1351. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/softbond.json +410 -0
  1352. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/springnetwork.json +559 -0
  1353. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/subspringnetwork.json +481 -0
  1354. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/thermalnull.json +26 -0
  1355. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/thermalpipe.json +27 -0
  1356. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/index.json +40 -0
  1357. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/color-by.json +55 -0
  1358. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/cut.json +49 -0
  1359. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/index.json +68 -0
  1360. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/shape.json +27 -0
  1361. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/color-by.json +56 -0
  1362. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/cut.json +43 -0
  1363. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/index.json +84 -0
  1364. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/shape.json +27 -0
  1365. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/contact/color-by.json +55 -0
  1366. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/contact/cut.json +49 -0
  1367. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/contact/index.json +62 -0
  1368. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/index.json +50 -0
  1369. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/rblock/color-by.json +55 -0
  1370. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/rblock/cut.json +43 -0
  1371. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/rblock/index.json +63 -0
  1372. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/wall/color-by.json +37 -0
  1373. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/wall/cut.json +49 -0
  1374. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/wall/index.json +62 -0
  1375. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/range-elements/contact.json +59 -0
  1376. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/range-elements/index.json +256 -0
  1377. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/range-elements/sphere.json +28 -0
  1378. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/__init__.py +21 -0
  1379. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/base.py +58 -0
  1380. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/engines/__init__.py +13 -0
  1381. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/engines/base_engine.py +196 -0
  1382. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/engines/bm25_engine.py +218 -0
  1383. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/indexing/__init__.py +5 -0
  1384. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/indexing/bm25_indexer.py +378 -0
  1385. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/keyword_matcher.py +206 -0
  1386. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/legacy_models.py +121 -0
  1387. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/postprocessing/__init__.py +11 -0
  1388. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/postprocessing/component_consolidation.py +122 -0
  1389. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/postprocessing/contact_consolidation.py +121 -0
  1390. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/preprocessing/__init__.py +10 -0
  1391. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/preprocessing/stopwords.py +193 -0
  1392. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/preprocessing/tokenizer.py +338 -0
  1393. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/scoring/__init__.py +5 -0
  1394. itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/scoring/bm25_scorer.py +333 -0
  1395. itasca_mcp-0.6.0/src/itasca_mcp/py.typed +0 -0
  1396. itasca_mcp-0.6.0/src/itasca_mcp/server.py +153 -0
  1397. itasca_mcp-0.6.0/src/itasca_mcp/tools/__init__.py +27 -0
  1398. itasca_mcp-0.6.0/src/itasca_mcp/tools/browse_commands.py +265 -0
  1399. itasca_mcp-0.6.0/src/itasca_mcp/tools/browse_python_api.py +426 -0
  1400. itasca_mcp-0.6.0/src/itasca_mcp/tools/browse_reference.py +344 -0
  1401. itasca_mcp-0.6.0/src/itasca_mcp/tools/check_task_status.py +119 -0
  1402. itasca_mcp-0.6.0/src/itasca_mcp/tools/execute_code.py +156 -0
  1403. itasca_mcp-0.6.0/src/itasca_mcp/tools/execute_task.py +109 -0
  1404. itasca_mcp-0.6.0/src/itasca_mcp/tools/interrupt_task.py +43 -0
  1405. itasca_mcp-0.6.0/src/itasca_mcp/tools/list_tasks.py +72 -0
  1406. itasca_mcp-0.6.0/src/itasca_mcp/tools/query_command.py +89 -0
  1407. itasca_mcp-0.6.0/src/itasca_mcp/tools/query_python_api.py +71 -0
  1408. itasca_mcp-0.6.0/src/itasca_mcp/tools/task_formatting.py +8 -0
  1409. itasca_mcp-0.6.0/src/itasca_mcp/utils.py +225 -0
  1410. itasca_mcp-0.6.0/tests/__init__.py +0 -0
  1411. itasca_mcp-0.6.0/tests/test_addon.py +227 -0
  1412. itasca_mcp-0.6.0/tests/test_contact_type_expansion.py +73 -0
  1413. itasca_mcp-0.6.0/tests/test_docs_tool_contracts.py +225 -0
  1414. itasca_mcp-0.6.0/tests/test_figure_reference.py +194 -0
  1415. itasca_mcp-0.6.0/tests/test_formatting.py +26 -0
  1416. itasca_mcp-0.6.0/tests/test_multi_engine_software.py +883 -0
  1417. itasca_mcp-0.6.0/tests/test_phase2_tools.py +55 -0
  1418. itasca_mcp-0.6.0/tests/test_python_api_array_docs.py +87 -0
  1419. itasca_mcp-0.6.0/tests/test_rblock_python_api.py +59 -0
  1420. itasca_mcp-0.6.0/tests/test_tool_contracts.py +415 -0
  1421. itasca_mcp-0.6.0/tests/test_versioned_schema.py +100 -0
  1422. itasca_mcp-0.6.0/uv.lock +2085 -0
  1423. itasca_mcp-0.6.0/workspace/.gitkeep +0 -0
@@ -0,0 +1,30 @@
1
+ # Keep the build context small. Only the bridge source actually needs to be
2
+ # copied into the image (see Dockerfile), but rather than allowlisting we
3
+ # block the heavy/irrelevant trees.
4
+
5
+ .git/
6
+ .venv/
7
+ __pycache__/
8
+ *.pyc
9
+ dist/
10
+ build/
11
+ .pytest_cache/
12
+ .ruff_cache/
13
+ .mypy_cache/
14
+
15
+ # Bridge probe scripts and their captured outputs -- dev artifacts that
16
+ # don't belong in the runtime image.
17
+ pfc-mcp-bridge/scratch/
18
+
19
+ # MCP-side package and tests don't need to be inside the container yet -- the
20
+ # container only runs the bridge. Comment out if you later want them available.
21
+ src/
22
+ tests/
23
+ docs/
24
+ .itasca-mcp/
25
+ .pfc-mcp-bridge/
26
+
27
+ # IDE / OS junk
28
+ .idea/
29
+ .vscode/
30
+ .DS_Store
@@ -0,0 +1,49 @@
1
+ name: Publish itasca-mcp
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v6
13
+ - uses: astral-sh/setup-uv@v8.1.0
14
+ - run: uv sync --group dev
15
+ - run: uv run pytest
16
+
17
+ publish:
18
+ needs: test
19
+ runs-on: ubuntu-latest
20
+ environment: pypi
21
+ permissions:
22
+ id-token: write
23
+ contents: write
24
+ steps:
25
+ - uses: actions/checkout@v6
26
+
27
+ - name: Extract release notes from CHANGELOG
28
+ run: |
29
+ VERSION="${GITHUB_REF_NAME#v}"
30
+ awk -v ver="$VERSION" '
31
+ BEGIN { marker = "## [" ver "]" }
32
+ index($0, marker) == 1 { found=1; next }
33
+ found && index($0, "## [") == 1 { exit }
34
+ found { print }
35
+ ' CHANGELOG.md > release-notes.md
36
+ if [ ! -s release-notes.md ]; then
37
+ echo "::error::No CHANGELOG entry found for version $VERSION in CHANGELOG.md"
38
+ exit 1
39
+ fi
40
+ echo "--- release notes ---"
41
+ cat release-notes.md
42
+
43
+ - uses: astral-sh/setup-uv@v8.1.0
44
+ - run: uv build
45
+ - uses: pypa/gh-action-pypi-publish@release/v1
46
+ - uses: softprops/action-gh-release@v3
47
+ with:
48
+ body_path: release-notes.md
49
+ files: dist/*
@@ -0,0 +1,19 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ - uses: astral-sh/setup-uv@v8.1.0
15
+ - run: uv sync --group dev
16
+ - run: uv run ruff check src/ tests/
17
+ - run: uv run ruff format --check src/ tests/
18
+ - run: uv run mypy src/itasca_mcp/
19
+ - run: uv run pytest tests/ --cov=itasca_mcp --cov-report=term-missing
@@ -0,0 +1,36 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+
8
+ # Testing
9
+ .pytest_cache/
10
+ .coverage
11
+ .coverage.*
12
+
13
+ # Environments
14
+ .venv/
15
+ *.env
16
+
17
+ # Local agent/MCP config
18
+ .mcp.json
19
+ .claude/
20
+ .codex/
21
+
22
+ # Local runtime/temp artifacts
23
+ .pfc-mcp-bridge/
24
+ .tmp/
25
+ .pytest_tmp/
26
+
27
+ # Docker dev container's user workspace (mounted into container at /workspace).
28
+ # Keep the dir itself via .gitkeep, ignore everything dropped inside.
29
+ workspace/*
30
+ !workspace/.gitkeep
31
+
32
+ # macOS
33
+ .DS_Store
34
+
35
+ # Windows / MSYS-Cygwin crash dumps
36
+ *.stackdump
@@ -0,0 +1,3 @@
1
+ [submodule "itasca-mcp-bridge"]
2
+ path = itasca-mcp-bridge
3
+ url = https://github.com/yusong652/itasca-mcp-bridge.git
@@ -0,0 +1,121 @@
1
+ # AGENTS.md
2
+
3
+ Guidance for coding agents working in the `itasca-mcp` repository.
4
+
5
+ ## Project Overview
6
+
7
+ `itasca-mcp` provides an MCP server for ITASCA PFC workflows. The bridge runtime that runs inside PFC GUI lives in the [`itasca-mcp-bridge`](https://github.com/yusong652/itasca-mcp-bridge) repo and is consumed here as a git submodule.
8
+
9
+ This repository has two runtime contexts:
10
+
11
+ - `src/itasca_mcp/` (Python >= 3.10): MCP server package used by clients/tooling
12
+ - `itasca-mcp-bridge/` (submodule, PFC embedded Python often 3.6): HTTP bridge running inside PFC GUI
13
+
14
+ End users get the bridge from PyPI (`pip install itasca-mcp-bridge`): first install happens via the agentic bootstrap's terminal pip step or `addon.py`, and from then on `itasca_mcp_bridge.start()` self-upgrades on every start. The submodule exists only so contributors can edit bridge code alongside MCP code without two clones. The legacy `pfc-mcp-bridge` PyPI package (last release `bridge-v0.3.3`) is deprecated.
15
+
16
+ ## Core Architecture
17
+
18
+ ### MCP side (`src/itasca_mcp`)
19
+
20
+ - Exposes documentation tools and execution tools through FastMCP
21
+ - Communicates with bridge via HTTP client (`itasca_mcp.bridge.client`)
22
+ - Returns a unified tool envelope: `ok`, `data`, `error`
23
+ - Dual execution model: synchronous REPL (`itasca_execute_code`) for quick queries, script-first async (`itasca_execute_task` + `itasca_check_task_status`) for long-running simulations
24
+
25
+ ### Bridge side (`itasca-mcp-bridge` submodule)
26
+
27
+ - Runs in PFC GUI process
28
+ - Owns thread-safe interaction with ITASCA SDK
29
+ - Handles long-running tasks and diagnostics
30
+ - Started inside PFC GUI via `itasca_mcp_bridge.start()`, which self-upgrades from PyPI first (best-effort); `addon.py` remains the manual first-install bootstrap
31
+
32
+ ## Repository Layout
33
+
34
+ ```text
35
+ itasca-mcp/
36
+ ├── src/itasca_mcp/
37
+ │ ├── bridge/ # MCP-side bridge client/task manager
38
+ │ ├── knowledge/ # command/API/reference search system
39
+ │ ├── tools/ # MCP tool implementations
40
+ │ ├── formatting.py # shared response formatting
41
+ │ └── server.py # MCP server entrypoint
42
+ ├── itasca-mcp-bridge/ # submodule → github.com/yusong652/itasca-mcp-bridge
43
+ ├── addon.py # PFC-side first-install bootstrap (pip-installs the bridge)
44
+ └── tests/ # MCP/tool contract tests
45
+ ```
46
+
47
+ ## Development Commands
48
+
49
+ Run from repository root.
50
+
51
+ ```bash
52
+ uv sync
53
+ uv sync --group dev
54
+ uv run itasca-mcp
55
+ uv run pytest tests/test_phase2_tools.py
56
+ uv run pytest tests/test_tool_contracts.py
57
+ ```
58
+
59
+ ## Engineering Rules
60
+
61
+ 1. Keep MCP and bridge concerns separate.
62
+ - Do not couple MCP logic to PFC GUI internals.
63
+ - Do not introduce application/session policy into bridge runtime.
64
+
65
+ 2. Preserve execution semantics for each model.
66
+ - `itasca_execute_code` runs synchronous snippets and returns stdout/result immediately.
67
+ - `itasca_execute_task` submits scripts and returns quickly.
68
+ - Progress/result retrieval goes through `itasca_check_task_status`.
69
+
70
+ 3. Maintain structured tool contracts.
71
+ - Prefer stable machine-readable keys over ad-hoc text parsing.
72
+ - Use the unified envelope for all tool business payloads:
73
+ - success: `{"ok": true, "data": ...}`
74
+ - error: `{"ok": false, "error": {"code": str, "message": str, "details"?: object}}`
75
+ - Enforce coherence: `ok=true` must not include `error`; `ok=false` must include `error`.
76
+ - Do not require duplicate presentation fields (for example, `display`) when they mirror structured data.
77
+ - Let clients render human-facing formatting from structured fields.
78
+ - Documentation tools must keep `data` consistent as:
79
+ - `source`: `"commands" | "python_api" | "reference"`
80
+ - `action`: `"browse" | "query"`
81
+ - `entries`: `list[object]`
82
+ - `summary`: `object` (counts/hints/context)
83
+ - Keep query/path/input echo minimal; prefer putting necessary context in `summary` or `error.details.input`.
84
+
85
+ 4. Keep compatibility when practical.
86
+ - If moving shared helpers, keep thin compatibility re-exports when tests or downstream code rely on old import paths.
87
+
88
+ 5. Respect runtime constraints.
89
+ - MCP package talks to the bridge over HTTP (`httpx`).
90
+ - Bridge side is stdlib-only (HTTP + SSE via `http.server`): no third-party
91
+ runtime dependency, so it installs into any ITASCA embedded Python (3.6+)
92
+ with no version pins.
93
+
94
+ ## Testing Expectations
95
+
96
+ - For tool/contract changes, run:
97
+ - `tests/test_phase2_tools.py`
98
+ - `tests/test_tool_contracts.py`
99
+ Mock bridge based tests are preferred for deterministic CI.
100
+
101
+ ## Documentation Sources
102
+
103
+ PFC searchable docs live under:
104
+
105
+ - `src/itasca_mcp/knowledge/resources/command_docs/`
106
+ - `src/itasca_mcp/knowledge/resources/python_sdk_docs/`
107
+ - `src/itasca_mcp/knowledge/resources/references/`
108
+
109
+ When changing schema/content shape, verify browse/query tool behavior remains consistent.
110
+
111
+ ## Commit Style
112
+
113
+ Use conventional prefixes seen in repository history, for example:
114
+
115
+ - `feat: ...`
116
+ - `fix: ...`
117
+ - `refactor: ...`
118
+ - `test: ...`
119
+ - `docs: ...`
120
+
121
+ Keep commit messages focused on why the change was needed.
@@ -0,0 +1,400 @@
1
+ # Changelog
2
+
3
+ All notable changes to `itasca-mcp` (formerly `pfc-mcp`) are documented here.
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ <!--
8
+ Convention (mirrors the yade-dev/trunk ChangeLog discipline):
9
+
10
+ - `## [Unreleased]` is curated by the maintainer from commit history at
11
+ release time. Contributors do NOT edit this file -- a clear conventional
12
+ commit message is enough. This keeps the changelog complete with zero
13
+ changelog friction on any single change or PR.
14
+ - Documentation is first-class here: agents read the docs and the agentic
15
+ install guides to understand and operate pfc-mcp, so notable documentation
16
+ / install-flow changes are logged like behaviour changes.
17
+ - "Notable" = anything that changes how a user or agent understands or uses
18
+ pfc-mcp: behaviour changes, added/removed tools, bug fixes, and notable
19
+ documentation / install-flow changes. Pure internal refactors, tests, CI,
20
+ and trivial doc fixes (typos, formatting) are omitted.
21
+ - Bridge changes that users perceive (deadlock fixes, new tool surfaces,
22
+ protocol shifts requiring a minimum `itasca-mcp-bridge` version) are
23
+ re-stated here even though they ship from a separate repo — readers of
24
+ pfc-mcp's release notes shouldn't have to follow a second changelog to
25
+ understand what changed for them. The notability test is the same: ask
26
+ "if a user upgrades pfc-mcp without thinking about bridge versions, do
27
+ they perceive this change?" Bridge-internal refactors and silent
28
+ improvements stay only in `itasca-mcp-bridge`'s own changelog.
29
+ - Group entries under these categories (Keep a Changelog + Documentation):
30
+ Added / Changed / Deprecated / Removed / Fixed / Security / Documentation.
31
+ - Referencing a commit/PR is optional; the entry must stand on its own.
32
+
33
+ At release the maintainer curates `## [Unreleased]` from `git log` since the
34
+ previous release, renames it to `## [x.y.z] - YYYY-MM-DD`, then starts a fresh
35
+ empty `## [Unreleased]`. The publish workflow extracts the section whose
36
+ header matches the tag version exactly (`## [x.y.z]`); `## [Unreleased]` is
37
+ never published until promoted, and a release fails if no matching version
38
+ section exists.
39
+
40
+ ## [x.y.z] - YYYY-MM-DD
41
+
42
+ ### Changed
43
+ - ...
44
+ -->
45
+
46
+ ## [Unreleased]
47
+
48
+ ## [0.6.0] - 2026-06-27
49
+
50
+ First release under the `itasca-mcp` name (formerly `pfc-mcp`). The server is
51
+ now multi-engine and the bridge transport is HTTP-based.
52
+
53
+ ### Changed
54
+ - **Renamed `pfc-mcp` → `itasca-mcp`.** The Python package is `itasca_mcp`,
55
+ the console script is `itasca-mcp`, and every tool is renamed `pfc_*` →
56
+ `itasca_*`: `itasca_execute_code`, `itasca_execute_task`,
57
+ `itasca_check_task_status`, `itasca_list_tasks`, `itasca_interrupt_task`,
58
+ `itasca_browse_commands`, `itasca_browse_python_api`,
59
+ `itasca_browse_reference`, `itasca_query_command`, `itasca_query_python_api`.
60
+ Update your MCP client config to `uvx itasca-mcp`. The `pfc-mcp` package
61
+ continues only as a deprecation shim that forwards here.
62
+ - **Bridge transport switched from WebSocket to HTTP + SSE** (httpx client).
63
+ **Requires `itasca-mcp-bridge >= 0.4.0`** (submodule pin bumped to `v0.4.0`).
64
+ The bridge self-upgrades from PyPI on every start, so existing installs move
65
+ in step; WebSocket-era bridges are no longer supported.
66
+
67
+ ### Added
68
+ - **Multi-engine documentation corpus** with a required `software` selector on
69
+ the browse/query tools, spanning PFC, FLAC, 3DEC, MPoint, and MassFlow:
70
+ - **3DEC**: commands plus the full engine-specific Python API (block family
71
+ and all proprietary modules), with references for FISH intrinsics,
72
+ initial/boundary conditions, geometry data tables, structural properties,
73
+ plot items, histories-and-results, and joint constitutive models.
74
+ - **MPoint (MPM)** and **MassFlow (gravity flow / caving)**: commands, Python
75
+ SDK skeletons, engine-exposed modules, and plot-items references.
76
+ - Shared references (range-elements, zone constitutive models) factored via a
77
+ `_common` layer across PFC / FLAC / 3DEC where the engines agree.
78
+
79
+ ### Fixed
80
+ - Engine resolution folds FLAC 9.x into a single key and resolves 9.0-only
81
+ engines at 9.0.
82
+ - Docker dev container passes an explicit bridge mode instead of `mode=auto`.
83
+
84
+ ### Documentation
85
+ - Command docs sourced from engine HTML now carry verified figure references
86
+ and flag figure-defined entries as text-incomplete, so an agent knows when a
87
+ command's full definition lives in an image rather than text.
88
+ - Version-gated the `program call` GIL-blocking warning to the engine versions
89
+ it actually applies to.
90
+ - README, install docs, and the agentic bootstrap guides updated for the
91
+ `itasca-mcp` name; daily-start flow recommends the self-upgrading two-liner
92
+ with `addon.py` as first-install only.
93
+
94
+ ## [0.5.0] - 2026-06-04
95
+
96
+ ### Added
97
+ - `--bridge-port` CLI argument to override the bridge connection port —
98
+ shorthand for `--bridge-url ws://localhost:PORT`. When a full
99
+ `--bridge-url` / `PFC_MCP_BRIDGE_URL` is also supplied, only its port is
100
+ overridden.
101
+
102
+ ### Changed
103
+ - `pfc_execute_task` now submits over the bridge's `execute_task` message
104
+ (renamed from `pfc_task` so the shared bridge protocol is product-neutral;
105
+ the bridge keeps `pfc_task` as a deprecated alias). **Requires
106
+ `itasca-mcp-bridge >= 0.1.5`** — older bridges silently ignore the message
107
+ and submission times out. If that happens, confirm the bridge version with
108
+ `pfc_execute_code` (`import itasca_mcp_bridge;
109
+ print(itasca_mcp_bridge.__version__)`) and upgrade by re-running addon.py.
110
+ - Slimmed `pfc_check_task_status` pagination to `total_lines` + `line_range`,
111
+ replacing the heavier pagination object. Output windows are still selected
112
+ with `skip_newest` / `limit` / `filter_text`.
113
+ - Bumped `itasca-mcp-bridge` to `0.1.5` (submodule pin). Picks up the PySide6
114
+ Qt task-pump fix so the bridge starts on PFC 9.7+ (Python 3.10 / Qt6),
115
+ where a hard `PySide2` import previously froze the GUI on startup, and the
116
+ `execute_task` protocol rename.
117
+
118
+ ## [0.4.4] - 2026-06-03
119
+
120
+ ### Fixed
121
+ - Bumped `itasca-mcp-bridge` to `0.1.3` (submodule pin `25668d7`), picking up
122
+ two abspath-vs-CWD fixes since 0.4.3. Command-log capture: `itasca.command()`
123
+ output no longer comes back empty when the engine's working directory
124
+ diverges from Python's (headless consoles, or after a task `os.chdir()`).
125
+ Task-log resolution: `pfc_check_task_status` no longer returns `(no output)`
126
+ for a task that called `os.chdir()` — the task log and `tasks.json` are now
127
+ read from a bridge root frozen at startup rather than the live working
128
+ directory.
129
+
130
+ ### Changed
131
+ - Task `elapsed_time` is now rounded to 2 decimals in `pfc_check_task_status`
132
+ and `pfc_list_tasks` (e.g. `0.01` instead of `0.010000944137573242`). The
133
+ field stays numeric; the bridge still reports full precision, with rounding
134
+ applied at the MCP presentation layer alongside the existing
135
+ `start_time` / `end_time` formatting.
136
+
137
+ ## [0.4.3] - 2026-05-26
138
+
139
+ Contact API documentation now distinguishes mechanical and thermal
140
+ contact interfaces, eliminating fictitious `force_normal` /
141
+ `force_shear` advertisements on thermal contacts and adding version
142
+ gating for the PFC 9.0-only `VertexFacetContact`. Rblock contacts
143
+ and thermal-specific power methods join their respective interfaces
144
+ as first-class entries.
145
+
146
+ ### Fixed
147
+ - `pfc_browse_python_api` / `pfc_query_python_api` no longer falsely
148
+ advertise mechanical force methods on thermal contacts. The five
149
+ `*ThermalContact` types (`BallBallThermalContact`,
150
+ `BallFacetThermalContact`, `BallPebbleThermalContact`,
151
+ `PebblePebbleThermalContact`, `PebbleFacetThermalContact`) are
152
+ now documented through a dedicated `ThermalContact` interface that
153
+ exposes contact state, geometry, grouping, model/property, and
154
+ orientation methods — without `force_normal` / `force_shear`.
155
+ Verified against the live PFC 9 bridge: 0 cross-contamination
156
+ across all 15 contact classes. Closes #10.
157
+ - `VertexFacetContact` is now correctly tagged as PFC 9.0-only via
158
+ per-type `availability.versions`, so 6.0 / 7.0 queries no longer
159
+ suggest it exists on those versions.
160
+
161
+ ### Added
162
+ - Mechanical `Contact` interface now expands to all four rblock
163
+ contact types (`BallRBlockContact`, `PebbleRBlockContact`,
164
+ `RBlockFacetContact`, `RBlockRBlockContact`) and the 9.0-only
165
+ `VertexFacetContact`, matching the official PFC class hierarchy.
166
+ - Thermal-specific `power()` / `set_power(value)` methods are now
167
+ documented for all five thermal contact types, sourced from the
168
+ official PFC 9 Python HTML reference.
169
+
170
+ ## [0.4.2] - 2026-05-25
171
+
172
+ Expanded Python SDK array API coverage (9 new modules) and bumped the
173
+ fastmcp dependency to the 3.x line so tests against its public API
174
+ surface work on a fresh install.
175
+
176
+ ### Added
177
+ - `pfc_browse_python_api` / `pfc_query_python_api` now cover the
178
+ vectorized array API: `ballarray`, `clumparray`, `wallarray`,
179
+ `rblockarray`, and the four contact-pair arrays (`ballballarray`,
180
+ `ballfacetarray`, `ballpebblearray`, `pebblepebblearray`,
181
+ `pebblefacetarray`). Availability is encoded per function with
182
+ `availability.versions` covering PFC 6.0 / 7.0 / 9.0.
183
+
184
+ ### Changed
185
+ - Bump minimum `fastmcp` to `>=3.0.0`. Tests now use FastMCP's public
186
+ `mcp.call_tool(...)` / `mcp.list_tools()` API.
187
+ - `pfc_browse_commands` lower-cases command input so mixed-case paths
188
+ (e.g. `"Ball Create"`) resolve correctly, and the "command not found"
189
+ suggestion list is now version-filtered (no more 9.0-only commands
190
+ surfaced when querying 6.0).
191
+ - `pfc_browse_python_api` no longer echoes the full `functions` block
192
+ inside `summary` when browsing a module, avoiding response truncation
193
+ on large modules.
194
+
195
+ ### Fixed
196
+ - Corrected `availability.versions` on the new array docs:
197
+ `rotation` / `set_rotation` / `fill_rotation` entries were removed
198
+ (they don't exist in any PFC version), and `euler` / `moi_prin`
199
+ families are now correctly marked as available on PFC 6.0 as well,
200
+ not 7.0/9.0 only. Verified against PFC 6.0 and 9.0 GUI bridges.
201
+
202
+ ## [0.4.1] - 2026-05-24
203
+
204
+ Two reliability fixes for the bootstrap path users hit on day one — pip
205
+ entry-point detection, network fallback — plus a sharp agent-guidance
206
+ warning to stop `program call '*.p?dat'` from wedging the bridge, which
207
+ many existing PFC workflows would otherwise trigger.
208
+
209
+ ### Changed
210
+ - Bridge startup output is quieter: callback registration, `TaskManager`
211
+ init, and historical-task counts now only go to `bridge.log`, not the
212
+ PFC IPython console. The status banner shows URL + log path and stops.
213
+ Ships when pfc-mcp's pin moves past `itasca-mcp-bridge` `bc68380`.
214
+ - `addon.py` drops the interactive upgrade prompt. PFC's `pythonfile`
215
+ host has no usable stdin, so the `input()` prompt was effectively
216
+ dead — it either hit the EOFError fallback or silently returned an
217
+ empty string and skipped the upgrade. A top-of-file
218
+ `AUTO_UPGRADE = True` constant replaces it: the bootstrap now installs
219
+ or upgrades to the latest `itasca-mcp-bridge` on every start with zero
220
+ interaction. Flip to `False` to pin the locally installed version.
221
+
222
+ ### Fixed
223
+ - `addon.py` no longer hard-codes pip's entry point to `pip.main`. That
224
+ symbol exists in pip <= 9 (what PFC 6.0 ships) and was later restored
225
+ as an internal shim, but it was absent in pip 10.0 through ~19.x -- a
226
+ PFC interpreter carrying a pip from that range crashed with
227
+ `AttributeError` instead of installing the bridge. The bootstrap now
228
+ probes `pip._internal.cli.main`, `pip._internal`, and `pip.main` in
229
+ turn, so it works regardless of which pip the embedded Python carries.
230
+ - A failed bridge install now points at pip's real error output and
231
+ offers a manual `pip install` fallback, instead of surfacing only a
232
+ bare `exit code 2` that hid the underlying cause.
233
+
234
+ ### Documentation
235
+ - `pfc_execute_code` and `pfc_execute_task` docstrings now warn agents
236
+ off `itasca.command("program call '<file>.p?dat'")`. PFC's
237
+ command-script interpreter blocks the entire bridge for the script's
238
+ duration — even bridge-internal calls like `pfc_list_tasks` time out,
239
+ and recovery requires the user to manually stop PFC. If a user asks
240
+ to run a `.dat` / `.p3dat` / `.p2dat` file, agents are instructed to
241
+ read the file and translate each command into a `itasca.command(...)`
242
+ call in Python instead, which preserves cycle-gap interleaving and
243
+ keeps every command inspectable. Lots of existing PFC workflows are
244
+ `.p?dat` scripts, so pointing an agent at one was previously a usage
245
+ trap that made the toolchain look broken.
246
+ - The agentic bootstrap guide's Step 3 (agent-driven bridge install)
247
+ now documents the PyPI -> Tsinghua mirror fallback, matching the
248
+ fallback `addon.py` already performs. An agent installing the bridge
249
+ for a user on a network that blocks PyPI previously had no documented
250
+ retry path and would stall there.
251
+
252
+ ## [0.4.0] - 2026-05-22
253
+
254
+ Bridge installation path migrates from `pfc-mcp-bridge` to `itasca-mcp-bridge`.
255
+ Tool surface (MCP tools and their wire contracts) is unchanged; the minor bump
256
+ reflects the user-visible install/dependency move, not a tool API change.
257
+
258
+ ### Changed
259
+ - `addon.py` now installs `itasca-mcp-bridge` (PyPI) instead of
260
+ `pfc-mcp-bridge`. End users get the multi-line `it.command()` deadlock fix
261
+ (recognized aliases like `import itasca as it`) automatically — the
262
+ splitter in `pfc-mcp-bridge` only matched the literal `itasca.command(...)`
263
+ form and silently skipped any aliased call, letting one C batch hold the
264
+ GIL while IPython's ZMQIOStream backed up. Re-download `addon.py` from the
265
+ pfc-mcp repo to pick up the new install path.
266
+ - Agentic install now defaults the MCP client config to user/global scope
267
+ instead of workspace, with workspace as an explicit last-resort fallback.
268
+ Per-client profiles are CLI-first where a verified user-scope command
269
+ exists (Claude/Codex/Gemini/Copilot) and file-edit for OpenCode. Affects
270
+ nearly all users of the agentic install flow.
271
+
272
+ ### Deprecated
273
+ - `pfc-mcp-bridge` PyPI package is frozen at `0.3.3` (final release). It
274
+ emits a `DeprecationWarning` at import and prints a migration banner from
275
+ `start()`. Users still on the old `addon.py` that upgrade will see the
276
+ signal; those who decline the upgrade prompt stay on the affected version
277
+ until they upgrade once. No further fixes ship to this package.
278
+
279
+ ### Removed
280
+ - Embedded `pfc-mcp-bridge/` directory. Bridge sources now live in the
281
+ separate [`itasca-mcp-bridge`](https://github.com/yusong652/itasca-mcp-bridge)
282
+ repo and are referenced from this repo as a git submodule
283
+ (`itasca-mcp-bridge/`). Fresh clones intended for bridge development need
284
+ `git clone --recurse-submodules` (or `git submodule update --init
285
+ --recursive`); end users running `addon.py` do not need the submodule.
286
+ - `.github/workflows/publish-bridge.yml` — bridge releases now happen from
287
+ the bridge's own repo.
288
+ - `tests/test_command_splitter.py` and `tests/test_command_log.py` — they
289
+ reached into the embedded bridge source via `sys.path` and now live with
290
+ the bridge in its repo.
291
+
292
+ ### Documentation
293
+ - `docs/development/source-install.{md,zh-CN.md}` document the submodule
294
+ workflow: clone with `--recurse-submodules`, re-sync after pull, pin
295
+ bump recipe, push order (bridge first), and how to read submodule
296
+ status noise.
297
+ - Per-AI bootstrap files (CLAUDE/AGENTS/GEMINI/WARP.md) and the agentic
298
+ install guide describe the new layout: `src/pfc_mcp/` for the MCP server,
299
+ `itasca-mcp-bridge/` (submodule) for the bridge runtime.
300
+
301
+ ## [0.3.15] - 2026-05-16
302
+
303
+ Version-aware reference documentation. The `contact-models` reference grows
304
+ from 5 to 22 models (all PFC mechanical + thermal contact models) and
305
+ `pfc_browse_reference` becomes version-aware for PFC 6.0/7.0/9.0.
306
+
307
+ - `pfc_browse_reference` gains a `version` parameter (6.0/7.0/9.0, default
308
+ 7.0) mirroring `pfc_browse_commands`: the model list is filtered by
309
+ version availability, requesting a model absent in the target version
310
+ returns a friendly `item_unavailable_for_version` error (with
311
+ `available_versions`), and not-found suggestions are version-filtered.
312
+ - New models: arrlinear, bilinear, burger, eepa, fish, flatjoint,
313
+ hysteretic, jkr, lineardipole, null, smoothjoint, softbond,
314
+ springnetwork, thermalnull, thermalpipe, plus 9.0-only `mohr` and
315
+ `subspringnetwork`. The 5 legacy curated models keep their content.
316
+ - Content is shared across versions (measured: 7.0 == 9.0, and 6.0 == 7.0
317
+ for shared properties), so no per-version data duplication. Differences
318
+ are encoded as a per-model `availability` map and per-property `since`
319
+ markers (flatjoint `fj_cohres`/`fj_resmode` since 7.0; softbond
320
+ `rgap`/`sb_coh`/`sb_fa`/`sb_mcf` since 9.0). `range-elements` and
321
+ `plot-items` have no `availability` and remain version-agnostic
322
+ (backward compatible).
323
+ - Property extraction reworked to split on `<dt id="kwd:...">` markers
324
+ instead of pairing `<dt>/<dd>`, so pages that nest base properties in a
325
+ child `<dl class="keyword">` (e.g. eepa) no longer bleed text or drop
326
+ the nested keywords; model-specific properties collapse into a single
327
+ clean group.
328
+
329
+ ## [0.3.14] - 2026-05-15
330
+
331
+ Second wave of command documentation expansion: 123 new commands across
332
+ 8 new scopes, bringing totals to 21 categories / 362 commands (was 13 / 239).
333
+
334
+ - `geometry` (34): nodes, edges, polygons, import/export, refinement, tessellation
335
+ - `fracture` (32): DFN — create, generate, intersections, templates, joint-set
336
+ - `table` (11): numerical x/y tables for boundary conditions and history data
337
+ - `group` (4): named-group lifecycle (create / list / rename / slot)
338
+ - `trace` (7): per-object trace recording (lifecycle / export / interval)
339
+ - `project` (6): GUI project containers (new / save / restore / execute)
340
+ - `data` (26): user data containers — label/scalar/vector/tensor sub-namespaces
341
+ - `domain` (3): domain extent, boundary conditions, periodic-cell strain-rate
342
+
343
+ All entries populated for PFC 6.0/7.0/9.0 (7 commands marked unavailable in
344
+ 6.0 as new in later versions; e.g. `fracture intersections` machinery).
345
+
346
+ Note: the "dfn" doc module is exposed under the scope name `fracture` to
347
+ match the actual command verb users type. Dotted HTML stems (e.g.
348
+ `cmd_geometry.edge.create.html`, `cmd_data.scalar.create.html`) are mapped
349
+ to dash-separated JSON keys (`edge-create`, `scalar-create`) following the
350
+ rblock convention. `parse_pfc{600,700,900}.py` `build_html_map` learned the
351
+ same dot→dash rule.
352
+
353
+ `range` was considered but not added — the HTML files under
354
+ `range_manual/range_commands/` are syntax reference (rangelogical,
355
+ rangenaming, rangephrase), not commands.
356
+
357
+ Fixes `pfc_browse_commands` to accept the natural space-separated form
358
+ of compound sub-commands (e.g. `geometry edge create`, `data scalar
359
+ create`, `fracture intersections compute`, `contact cmat add`).
360
+ Previously the lookup only matched the stored dash form (`edge-create`,
361
+ `cmat-add`), forcing users to type a non-PFC-syntax variant.
362
+
363
+ ## [0.3.13] - 2026-05-15
364
+
365
+ Expands PFC command documentation coverage from 177 to 239 entries
366
+ across 13 categories (was 10). Three new scopes — `program` (28
367
+ commands: license, threads, log, system, lifecycle), `history` (8:
368
+ interval, export, label, results), and `fish` (11: callback, define,
369
+ list, debug, trace) — join filled gaps in `model` (+9: creep,
370
+ dynamic, energy, factor-of-safety, fluid, list, precision, step,
371
+ title), `contact` (+3: extra, history, list), and `fragment` (+3:
372
+ groupisolated, groupslot, map). All entries are populated for PFC
373
+ 6.0/7.0/9.0. These commands were previously skipped because their
374
+ Python SDK equivalents return nothing; now that `itasca.command()`
375
+ stdout is captured via the bridge log, exposing them lets agents
376
+ read program/model/history/contact list output through normal
377
+ documentation lookup. A new `bootstrap_missing.py` script under
378
+ `command_docs/` walks the installed PFC HTML manuals and writes
379
+ complete versioned JSON.
380
+
381
+ Trims trailing float-precision noise from BM25 result scores in
382
+ `pfc_query_command` and `pfc_query_python_api` (e.g.
383
+ `2.4743000000000004` → `2.47`).
384
+
385
+ ## [0.3.12] - 2026-05-14
386
+
387
+ Surfaces the structured cancellation outcomes from pfc-mcp-bridge >=
388
+ 0.3.2 through `pfc_execute_code`: `terminated` (bridge aborted at the
389
+ deadline, partial output returned, PFC state may be partially
390
+ modified), `timeout` with `details.method="stuck_in_c"` (snippet stuck
391
+ in a C extension; bridge may recover when the C call returns),
392
+ `interrupted`, and the default `timeout` path. Local wait widens to
393
+ `timeout_ms / 1000 + 5.0s` so the bridge has room to deliver the
394
+ `terminated` response after its own grace window.
395
+
396
+ Drops `pfc_mcp.formatting.normalize_status()` (and its re-export from
397
+ `pfc_mcp.tools.task_formatting`); the shim only mapped legacy
398
+ `success`/`error` status from pre-0.3.0 bridges. Requires
399
+ pfc-mcp-bridge >= 0.3.0; pin `pfc-mcp<0.3.12` if you can't upgrade the
400
+ bridge.