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.
- itasca_mcp-0.6.0/.dockerignore +30 -0
- itasca_mcp-0.6.0/.github/workflows/publish.yml +49 -0
- itasca_mcp-0.6.0/.github/workflows/test.yml +19 -0
- itasca_mcp-0.6.0/.gitignore +36 -0
- itasca_mcp-0.6.0/.gitmodules +3 -0
- itasca_mcp-0.6.0/AGENTS.md +121 -0
- itasca_mcp-0.6.0/CHANGELOG.md +400 -0
- itasca_mcp-0.6.0/CLAUDE.md +181 -0
- itasca_mcp-0.6.0/GEMINI.md +120 -0
- itasca_mcp-0.6.0/LICENSE +21 -0
- itasca_mcp-0.6.0/PKG-INFO +134 -0
- itasca_mcp-0.6.0/README.md +113 -0
- itasca_mcp-0.6.0/README.zh-CN.md +111 -0
- itasca_mcp-0.6.0/WARP.md +120 -0
- itasca_mcp-0.6.0/addon.py +214 -0
- itasca_mcp-0.6.0/docker/Dockerfile +119 -0
- itasca_mcp-0.6.0/docker/README.md +76 -0
- itasca_mcp-0.6.0/docker/build.sh +49 -0
- itasca_mcp-0.6.0/docker/docker-compose.yml +49 -0
- itasca_mcp-0.6.0/docker/entrypoint.sh +86 -0
- itasca_mcp-0.6.0/docker/run.sh +35 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-claude.md +47 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-codex.md +48 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-copilot.md +57 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-gemini.md +55 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-opencode.md +60 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap-toyoura-nagisa.md +54 -0
- itasca_mcp-0.6.0/docs/agentic/itasca-mcp-bootstrap.md +252 -0
- itasca_mcp-0.6.0/docs/development/source-install.md +154 -0
- itasca_mcp-0.6.0/docs/development/source-install.zh-CN.md +154 -0
- itasca_mcp-0.6.0/pyproject.toml +74 -0
- itasca_mcp-0.6.0/release-notes.md +45 -0
- itasca_mcp-0.6.0/scripts/corpus/STRUCTURE_DESIGN.md +298 -0
- itasca_mcp-0.6.0/scripts/corpus/bootstrap_missing.py +353 -0
- itasca_mcp-0.6.0/scripts/corpus/extract_figure_refs.py +136 -0
- itasca_mcp-0.6.0/scripts/corpus/figure_manifest.json +296 -0
- itasca_mcp-0.6.0/scripts/corpus/flag_figure_defined.py +228 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_boundary_conditions.py +262 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_fish_intrinsics.py +248 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_geometry_data_table.py +157 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_histories_and_results.py +231 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_index.py +140 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_initial_conditions.py +224 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_joint_models.py +307 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_plot_items.py +1069 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_3dec_python_skeleton.py +59 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_index.py +560 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_massflow_index.py +118 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_massflow_plot_items.py +559 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_massflow_python_skeleton.py +54 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_conditions.py +254 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_fish_intrinsics.py +225 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_index.py +113 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_plot_items.py +481 -0
- itasca_mcp-0.6.0/scripts/corpus/generate_mpoint_python_skeleton.py +54 -0
- itasca_mcp-0.6.0/scripts/corpus/migrate_to_versioned.py +66 -0
- itasca_mcp-0.6.0/scripts/corpus/optimize_keywords.py +340 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_3dec900.py +151 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_3dec_python.py +321 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_3dec_structural_properties.py +163 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_brick_rblock.py +476 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_massflow.py +146 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_massflow_python.py +158 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_mpoint.py +137 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_pfc600.py +609 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_pfc700.py +256 -0
- itasca_mcp-0.6.0/scripts/corpus/parse_pfc900.py +618 -0
- itasca_mcp-0.6.0/scripts/corpus/wire_common_constitutive_models.py +127 -0
- itasca_mcp-0.6.0/scripts/corpus/wire_common_range_elements.py +87 -0
- itasca_mcp-0.6.0/scripts/corpus/wire_massflow_common_references.py +175 -0
- itasca_mcp-0.6.0/scripts/corpus/wire_mpoint_common_references.py +169 -0
- itasca_mcp-0.6.0/src/itasca_mcp/__init__.py +3 -0
- itasca_mcp-0.6.0/src/itasca_mcp/bridge/__init__.py +5 -0
- itasca_mcp-0.6.0/src/itasca_mcp/bridge/client.py +294 -0
- itasca_mcp-0.6.0/src/itasca_mcp/config.py +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/contracts.py +128 -0
- itasca_mcp-0.6.0/src/itasca_mcp/formatting.py +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/__init__.py +5 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/adapters/__init__.py +11 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/adapters/api_adapter.py +225 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/adapters/command_adapter.py +128 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/__init__.py +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/formatter.py +296 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/loader.py +202 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/commands/models.py +12 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/config.py +63 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/models/__init__.py +10 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/models/document.py +168 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/models/search_result.py +128 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/__init__.py +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/formatter.py +674 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/loader.py +731 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/models.py +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/types/__init__.py +10 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/types/contact.py +296 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/python_api/types/mappings.py +34 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/query/__init__.py +13 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/query/api_search.py +171 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/query/command_search.py +192 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/references/__init__.py +17 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/references/formatter.py +402 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/references/loader.py +291 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/analyze-stability.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/apply-remove.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/apply.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/cells.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-apply.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-area-minimum.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-compute-stiffness.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-compute.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-delete-open.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-generate-subcontacts.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-group-subcontact.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-group.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-history.json +151 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-jmodel.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-join.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-list.json +146 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-local-stiffness.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-material-table.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-persistence.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-property-distribution.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-property.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-record-shear.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-reset.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-tolerance.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/contact-vertex-vertex.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/copy.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/create.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/cut.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/delete.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/densify.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/dynamic.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/excavate.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/export.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-apply-remove.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-apply.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-group.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-list.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/face-triangulate.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fill.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/finite-element.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fix.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fluid.json +90 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/fragment.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/free.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/generate.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-apply-remove.json +136 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-apply.json +151 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-group.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-initialize.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-list.json +91 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/gridpoint-trace.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/group.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/hide.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/history.json +245 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/import.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/initialize.json +90 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/insitu.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/join-by-contact.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/join.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/joint-plane.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/list.json +215 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/makewall.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/mechanical.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/merge-finish.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/merge-start.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/property.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/relax.json +59 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/skip-join-update.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/thermal.json +89 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/to-flac3d.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/to-pfc.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/to-udec.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/tolerance.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/trace.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/update.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/vtk.json +85 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/water.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-cmodel.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-fluid.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-generate-new.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-generate.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-group.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-initialize.json +91 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-list.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-nodal-mixed-discretization.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-property-distribution.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-property.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-size.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-thermal.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/block/zone-volume-minimum-delete.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/fblock/delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/fblock/group.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/fblock/list.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/feblock/generate.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/feblock/gravity.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/feblock/list.json +70 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/apply-remove.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/apply.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/fix.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/free.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/group.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/hide.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/history.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/initialize.json +55 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/list.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/property.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowknot/volume-minimum.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/active.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/area-minimum.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/edge-apply-remove.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/edge-apply.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/edge-list.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/group.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/hide.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/list.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/property.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-group.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-history.json +56 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-initialize.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-list.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/vertex-property.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-area-minimum.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-edge-minimum.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-group.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/commands/flowplane/zone-list.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/command_docs/index.json +2535 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/index.json +2399 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/itasca_keywords.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/Block.json +742 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/contact/Contact.json +373 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/contact/module.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/contactarray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/face/Face.json +354 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/face/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/facearray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/gridpoint/Gridpoint.json +842 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/gridpoint/module.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/gridpointarray/module.json +287 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/module.json +77 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/subcontact/Subcontact.json +583 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/subcontact/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/subcontactarray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/zone/Zone.json +548 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/zone/module.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/block/zonearray/module.json +436 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/blockarray/module.json +175 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/contact/Contact.json +8 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/contact/module.json +123 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/DFN.json +324 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/fracture/Fracture.json +641 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/fracture/module.json +92 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/inter/Inter.json +275 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/inter/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/module.json +142 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/setinter/Setinter.json +74 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/setinter/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/template/Template.json +370 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/template/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/vertex/Vertex.json +52 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/dfn/vertex/module.json +39 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/fish/module.json +93 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowknot/Flowknot.json +514 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowknot/module.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowknotarray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/Flowplane.json +327 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/vertex/Vertex.json +371 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/vertex/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/vertexarray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/zone/Zone.json +291 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/zone/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplane/zonearray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/flowplanearray/module.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/history/History.json +8 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/history/module.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Beam.json +514 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Cable.json +607 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Geogrid.json +646 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Liner.json +668 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Pile.json +978 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/Shell.json +494 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/link/Link.json +455 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/link/module.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/module.json +92 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/node/Node.json +528 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/python_sdk_docs/modules/structure/node/module.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/apply-modifiers.json +44 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/fluid-flow.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/gridpoint-and-block-fixity.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/index.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/mechanical-face.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/boundary-conditions/thermal-and-dynamic.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/constitutive-models/index.json +198 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/block-and-joints.json +72 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/block-zone-gridpoint.json +53 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/fluid-flow.json +39 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/fish-intrinsics/index.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/data-sets.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/geometry-workflow.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/index.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/geometry-data-table/table-curves.json +18 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/histories-and-results/history-workflow.json +78 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/histories-and-results/index.json +16 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/histories-and-results/results-export.json +49 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/index.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/fluid-thermal.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/index.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/stress-initialization.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/initial-conditions/velocity-and-state-reset.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/bilinear-mohr.json +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/cyjm.json +87 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/elastic.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/index.json +73 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/mohr.json +93 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/nonlinear.json +148 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/power.json +39 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/ratestate.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/joint-models/softening-mohr.json +129 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/block/contour.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/block/index.json +138 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/block/label.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/blockcontact/colorby.json +18 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/blockcontact/index.json +112 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/bzone/contour.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/bzone/index.json +130 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/bzone/label.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/flow/index.json +108 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/fracture/color-by.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/fracture/index.json +108 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/index.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/joint/contour.json +44 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/joint/index.json +142 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/joint/label.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/structure/contour.json +76 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/structure/index.json +157 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/structure/label.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/subcontact/colorby.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/plot-items/subcontact/index.json +118 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/range-elements/index.json +238 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/beam.json +105 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/cable.json +101 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/geogrid.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/index.json +42 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/liner.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/pile.json +191 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/3dec/references/structural-properties/shell.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-create.json +110 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-list.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-modify.json +110 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/label-results.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-create.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-export.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-import.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-list.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/scalar-results.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-create.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-export.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-import.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-list.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/tensor-results.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-create.json +145 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-export.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-import.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-list.json +110 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/data/vector-results.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/automatic-create.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/boolean-convert.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/callback.json +669 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/debug.json +169 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/define.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/history.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/list.json +189 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/operator.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/result.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/structure.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fish/trace.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/aperture.json +155 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/attribute.json +185 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/cluster.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/combine.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/compute.json +140 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/connectivity.json +140 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/contact-model.json +155 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/copy.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/create.json +185 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/dfn-extra.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/dfn-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/export.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/extra.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/generate.json +215 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/import.json +245 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/initialize.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-automatic-update.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-compute.json +110 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-delete.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/intersections-scanline.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/joint-set.json +141 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/list.json +125 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/property.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/prune.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/results.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/set-property.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/template-create.json +125 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/template-delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/template-modify-default.json +125 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/fracture/verify-file.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/assign-groups.json +125 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/copy.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-create.json +135 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-delete.json +54 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-export.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-extra.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/edge-group.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/export.json +105 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/fill.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/generate.json +180 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/import.json +115 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/list.json +110 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/move-to.json +90 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-create.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-delete.json +54 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-export.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-extra.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/node-group.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/paint-extra.json +1015 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-create.json +135 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-delete.json +54 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-export.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-extra.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/polygon-group.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/refine.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/results.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/rotate.json +90 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/select.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/separate.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/set.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/tessellate.json +125 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/translate.json +54 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/geometry/triangulate.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/delete.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/export.json +139 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/interval.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/label.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/list.json +94 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/purge.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/rename.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/history/results.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/calm.json +94 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/clean.json +138 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/creep.json +124 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/cycle.json +137 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/deterministic.json +154 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/display.json +189 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/domain.json +247 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/dynamic.json +124 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/energy.json +74 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/factor-of-safety.json +294 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/fluid.json +124 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/gravity.json +155 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/history.json +322 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/large-strain.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/list.json +109 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/mechanical.json +310 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/new.json +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/orientation-tracking.json +109 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/precision.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/random.json +122 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/range.json +271 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/restore.json +152 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/results.json +411 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/save.json +262 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/solve.json +621 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/step.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/thermal.json +287 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/title.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/model/update-interval.json +131 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/active.json +114 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/background.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/clear.json +85 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/copy.json +137 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/create.json +84 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/current.json +70 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/delete.json +84 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/export.json +248 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/item.json +337 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/rename.json +99 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/title.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/update.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/plot/view.json +341 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/automatic-model-save.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/call.json +94 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/continue.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/customer-title-1.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/customer-title-2.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/directory.json +109 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/echo-line.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/echo.json +64 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/encrypt.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/exit.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/floating-point-check.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/license.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/list.json +189 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/load.json +169 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/log-file.json +42 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/log.json +74 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/mail.json +214 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/notice.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/pagination.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/pause.json +64 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/playback.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/quit.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/return.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/stop.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/system.json +89 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/threads.json +64 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/undo.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/program/warning.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/execute.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/list.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/new.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/restore.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/save-plugins.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/project/save.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/add.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/clear.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/export.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/import.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/insert.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/label.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/list.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/position.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/results.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/command_docs/commands/table/sort.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/python_sdk_docs/itasca.json +703 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/anisotropic.json +106 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/burgers-mohr.json +141 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/burgers.json +99 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/cap-yield-simplified.json +213 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/cap-yield.json +302 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/columnar-basalt.json +242 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/concrete.json +190 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/double-yield.json +162 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/drucker-prager.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/elastic.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/finn.json +174 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/hoek-brown-pac.json +156 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/hoek-brown.json +241 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/hydration-drucker-prager.json +144 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/imass.json +429 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/maxwell.json +57 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/modified-cam-clay.json +122 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/mohr-coulomb-tension.json +131 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/mohr-coulomb.json +86 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/norsand.json +269 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/null.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/orthotropic.json +135 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/p2psand.json +304 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/plastic-hardening.json +254 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/power-mohr.json +128 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/power-ubiquitous.json +203 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/power.json +92 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/soft-soil-creep.json +201 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/soft-soil.json +192 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/softening-ubiquitous.json +333 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/strain-softening.json +124 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/swell.json +246 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/ubiquitous-anisotropic.json +162 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/ubiquitous-joint.json +161 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/von-mises.json +66 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/wipp-drucker.json +162 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/wipp-salt.json +178 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/constitutive-models/wipp.json +120 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/annulus.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/by.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/cylinder.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/ellipse.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/extent.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/extra-list.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/extra.json +39 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/fish.json +18 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/group.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/id-list.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/id.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/named-range.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/not.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/plane.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/polygon.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position-x.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position-y.json +17 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position-z.json +17 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/position.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/rectangle.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/sphere.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/_common/references/range-elements/union.json +15 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-create.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-delete.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-export.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-group.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-hide.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-id.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-import.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-list.json +63 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-make-hex-only.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-multiplier.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-snapon.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/block-transform.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-add-controls.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-delete.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-drape.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-factor.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-group.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-id.json +93 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-list.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-ratio-isolate.json +24 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-ratio.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-size.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-snapon.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-transform.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/edge-type.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-add-controls.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-cycle.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-delete.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-drape.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-group.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-id.json +73 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-list.json +53 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-snapon.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/face-transform.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-delete.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-drape.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-group.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-list.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-merge.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-move-to.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-snapon.json +38 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/point-transform.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-arrest-triangle.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-auto-tolerance.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-automatic-zone.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-break-angle.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-create.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-export.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-geometry.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-import.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-list.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-select.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-tolerance.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/body/set-validate-all.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/domain/condition.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/domain/extent.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/domain/strain-rate.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-create.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-group.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-id.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-list.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-multiplier.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/block-position.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-clear.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-combine.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-create.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-group.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-id.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-list.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-ratio-isolate.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-ratio-reverse.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-ratio.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-size-default.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-size.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-zone-length-default.json +22 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/edge-zone-length.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-gradation.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-list.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-mode.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-optimization.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-quad-weight.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-reset.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-shape-quality.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-target-size.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/mesh-type.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-clear.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-continuous.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-ends-parallel.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-extrude-mode.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/path-translate.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-create.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-group.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-id.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-list.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/point-transform.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/section-circle.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/section-polygon.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/section-rectangle.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-clear.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-create.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-group.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-id.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-list.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-create.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-delete.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-group.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-id.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-list.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-node-transform.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-ratio-reverse.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-ratio.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-size.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/segment-zone-length.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-automatic-validate.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-automatic-zone.json +57 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-clear.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-create.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-list.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-metadata.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-rename.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-select.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-system.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/extruder/set-update-polygons.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/create.json +24 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/list.json +24 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/rename.json +24 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/group/slot.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/model/configure.json +173 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-apply.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-cmodel.json +115 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-create.json +222 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-history.json +232 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-import.json +237 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-initialize.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-list.json +312 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-property-{elastic}.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-property.json +252 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-refine.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/beam-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-apply.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-create.json +217 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-history.json +207 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-import.json +247 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-initialize.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-list.json +380 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-property.json +272 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-refine.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/cable-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/dynamic-damping.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/dynamic-safety-factor.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-apply.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-cmodel.json +102 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-create.json +309 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-history.json +572 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-import.json +285 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-initialize.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-list.json +419 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-property.json +242 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-recover.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-refine.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geogrid-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/geometry-update.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-apply.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-create.json +160 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-delete.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-hide.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-history.json +184 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-import.json +190 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-initialize.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-list.json +259 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-property.json +225 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/hybrid-select.json +75 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-apply.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-cmodel.json +102 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-create.json +364 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-gap-factor.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-history.json +617 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-import.json +325 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-initialize.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-list.json +534 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-property.json +392 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-recover.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-refine.json +44 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/liner-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-attach.json +237 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-create.json +166 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-dynamic-damping.json +49 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-history.json +292 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-list.json +187 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-property.json +337 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-slide.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-tolerance-contact.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-tolerance-node.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/link-tolerance-slide.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/list-information.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/mechanical-damping.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-apply.json +248 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-create.json +85 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-damping-local.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-fix.json +187 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-free.json +197 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-history.json +462 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-initialize.json +463 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-join.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-list.json +350 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/node-system-local.json +109 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-apply.json +68 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-cmodel.json +102 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-create.json +222 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-history.json +322 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-import.json +247 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-initialize.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-list.json +542 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-property.json +517 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-refine.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/pile-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/ratio.json +84 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/results.json +174 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/safety-factor.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/scale-rotational-mass.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-apply.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-cmodel.json +102 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-create.json +314 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-delete.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-group.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-hide.json +82 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-history.json +527 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-import.json +290 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-initialize.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-list.json +354 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-property-{elastic}.json +76 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-property.json +167 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-recover.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-refine.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/structure/shell-select.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/apply-remove.json +132 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/apply.json +414 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/attach.json +324 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/cmodel.json +654 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/consolidation.json +46 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/copy.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/create.json +590 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/create2d.json +151 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/creep.json +94 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/delete.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/densify.json +161 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/dynamic.json +354 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/export.json +66 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-apply-remove.json +399 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-apply.json +676 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-group.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-hide.json +175 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-list.json +94 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-select.json +175 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-skin.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-westergaard-remove.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/face-westergaard.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/fluid.json +965 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/generate.json +371 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/geometry-test.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/geometry-tolerance.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/geometry-update.json +47 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-create.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-fix.json +244 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-free.json +190 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-import.json +90 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-initialize.json +379 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-list.json +193 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-merge.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint-system.json +85 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/gridpoint.json +56 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/group.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/hide.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/history.json +1254 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/import.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/initialize-stresses.json +113 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/initialize.json +412 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-create.json +125 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-effective.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-element.json +154 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-group.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-list.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-node.json +420 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-permeability.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/interface-tolerance-contact.json +59 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/list.json +1634 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/mechanical.json +167 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/nodal-mixed-discretization.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/property-distribution.json +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/property.json +197 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/ratio.json +106 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/reflect.json +126 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/relax.json +515 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/results.json +314 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/select.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/separate.json +134 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/split.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/thermal.json +472 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/trace.json +106 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/validate.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/vtk.json +194 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/commands/zone/water.json +239 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/command_docs/index.json +4120 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/index.json +1050 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/itasca_keywords.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/attach/Attach.json +317 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/attach/module.json +71 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/gridpoint/Gridpoint.json +1440 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/gridpoint/module.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/gridpointarray/module.json +619 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/Interface.json +234 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/element/Element.json +248 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/element/module.json +7 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/module.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/node/Node.json +762 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interface/node/module.json +7 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interfacearray/module.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interfaceelementarray/module.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/interfacenodearray/module.json +295 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/vertexarray/module.json +108 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/zone/Zone.json +1419 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/zone/module.json +386 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/python_sdk_docs/modules/zonearray/module.json +585 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/apply-modifiers.json +74 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/fluid-flow.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/gridpoint-fixity.json +85 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/index.json +41 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/mechanical-face.json +104 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/boundary-conditions/thermal-dynamic.json +73 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/constitutive-models/index.json +285 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/field-query.json +58 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/index.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/structure-interface.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/fish-intrinsics/zone-gridpoint.json +98 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/data-sets.json +57 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/geometry-workflow.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/index.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/geometry-data-table/table-curves.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/history-workflow.json +101 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/index.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/results-export.json +117 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/histories-and-results/zone-field-data.json +137 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/index.json +104 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/fluid-thermal.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/index.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/state-reset.json +52 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/initial-conditions/stress-initialization.json +58 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/interface-and-joints/index.json +24 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/interface-and-joints/joint-workflow.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/interface-and-joints/zone-interface.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/gridpoint-fix/index.json +83 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/index.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/structure/contour.json +84 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/structure/index.json +108 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/contour.json +90 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/cut-line.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/index.json +151 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/plot-items/zone/label.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/range-elements/index.json +238 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/sketch-and-building-blocks/building-blocks.json +60 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/sketch-and-building-blocks/index.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/sketch-and-building-blocks/sketch-workflow.json +88 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/beam-pile.json +114 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/cable.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/index.json +42 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/liner.json +161 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/flac/references/structural-properties/link.json +49 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/clean.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/compute.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-add-drawperiod.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-drawbell-to-geometry.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-dump-drawperiod.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-extraction-report.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-group.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-import-drawbell.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-import-drawperiod.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-import.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-imz-to-geometry.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/drawpoint-list.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/fines-migration.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/initialize.json +85 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-filename.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-group.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-import-trace.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-initialize.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-list.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-report-days.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-report-export.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-report-period.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-size-distribution.json +56 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-trace-report.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/marker-trace.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/mineblock-group.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/mineblock-import.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/mineblock-list.json +36 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/record.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/commands/massflow/secondary-fragmentation.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/command_docs/index.json +1843 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/index.json +166 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/itasca_keywords.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/contact/Contact.json +8 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/contact/module.json +123 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/fish/module.json +93 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/history/History.json +8 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/python_sdk_docs/modules/history/module.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/constitutive-models/index.json +276 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/index.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/drawpoint/color-by.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/drawpoint/index.json +106 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/flow-vector/index.json +102 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/history-locations/index.json +87 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/imz/color-by.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/imz/index.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/index.json +54 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/marker/color-by.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/marker/index.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/mineblock/color-by.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/mineblock/index.json +113 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/plot-items/particle-trace/index.json +76 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/massflow/references/range-elements/index.json +238 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/cmodel.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/create.json +55 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/delete.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/extra.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/fix.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/fluid.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/free.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/generate.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/group.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/history.json +135 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/hybrid-points.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/import.json +39 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/initialize-stresses.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/initialize.json +155 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/list.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/locking-adjustment.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/mesh-density.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-damping.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-dynamic.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-fix.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-free.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-group.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-history.json +61 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-skin.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/node-spacing.json +20 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/pic-fraction.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/property.json +19 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/split.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/trace.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/volume-limit.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/commands/mpoint/zone-conversion.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/command_docs/index.json +1849 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/python_sdk_docs/index.json +113 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/python_sdk_docs/itasca_keywords.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/boundary-conditions/grid-node-fixity.json +45 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/boundary-conditions/index.json +16 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/boundary-conditions/material-point-fixity.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/constitutive-models/index.json +276 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/fish-intrinsics/background-node.json +66 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/fish-intrinsics/index.json +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/fish-intrinsics/material-point.json +100 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/index.json +64 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/initial-conditions/field-initialization.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/initial-conditions/gravitational-stress.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/initial-conditions/index.json +16 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/index.json +42 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/meshpoint/index.json +83 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint/color-by.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint/index.json +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint-hybrid/index.json +83 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint-tensor/index.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/plot-items/mpoint-vector/index.json +114 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/mpoint/references/range-elements/index.json +238 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/accumulate-stress.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/attribute.json +864 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/clump.json +223 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/create.json +230 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/delete.json +122 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/distribute.json +253 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/export.json +187 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/extra.json +83 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/fix.json +207 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/free.json +207 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/generate.json +325 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/group.json +162 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/history.json +755 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/initialize.json +72 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/list.json +200 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/property.json +83 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/results.json +104 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/tolerance.json +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/trace.json +83 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/ball/tractions.json +343 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/assemble.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/delete.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/export.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/import.json +66 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/inlet-create.json +144 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/inlet-modify.json +143 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/brick/make.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/accumulate-stress.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/attribute.json +851 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/break.json +114 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/create.json +261 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/delete.json +133 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/distribute.json +188 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/export.json +182 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/extra.json +119 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/fix.json +212 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/free.json +212 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/generate.json +319 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/group.json +168 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/history.json +602 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/initialize.json +89 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/list.json +293 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/order.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/property.json +126 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/replicate.json +318 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/results.json +119 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/rotate.json +156 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/scale.json +139 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/template.json +266 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/tolerance.json +165 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/clump/trace.json +191 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/activate.json +539 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/apply-group.json +548 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-add.json +279 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-apply.json +184 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-default.json +296 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-list.json +185 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-modify.json +302 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-proximity.json +482 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/cmat-remove.json +158 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/delete.json +528 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/detection.json +554 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/extra.json +64 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/fix.json +512 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/group.json +624 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/history.json +340 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/inhibit.json +622 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/list.json +279 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/method.json +570 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/model.json +610 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/persist.json +536 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/contact/property.json +459 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/domain/condition.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/domain/extent.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/domain/strain-rate.json +29 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/activate.json +441 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/clear.json +412 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/compute.json +541 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/deactivate.json +526 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/groupisolated.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/groupslot.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/list.json +533 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/map.json +31 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/fragment/register.json +647 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/create.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/list.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/rename.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/group/slot.json +65 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/create.json +545 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/delete.json +368 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/dump.json +450 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/history.json +964 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/list.json +410 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/measure/modify.json +566 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/model/configure.json +247 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/apply-facet-groups.json +52 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/attribute.json +828 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/clump.json +152 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/configure.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/construct.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/contact-resolution.json +171 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/create.json +206 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/cut.json +251 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/damping.json +52 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/delete.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/densify.json +112 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/dilate.json +86 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/distribute.json +141 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/erode.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/export.json +51 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/extra.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/facet-apply-remove.json +30 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/facet-apply.json +67 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/facet-group.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/fix.json +156 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/free.json +156 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/generate.json +261 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/group.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/hide.json +52 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/history.json +651 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/import.json +121 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/initialize.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/list.json +141 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/merge.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/property.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/refine.json +122 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/reflect.json +48 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/remap-interval.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/replicate.json +231 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/result.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/rotate.json +96 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/scale.json +111 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/select.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/template.json +66 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/tolerance.json +81 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/trace.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/rblock/tractions.json +131 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/delete.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/export.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/interval.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/list.json +80 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/name.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/purge.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/trace/results.json +32 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/active-sides.json +106 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/addfacet.json +150 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/attribute.json +657 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/create.json +194 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/delete.json +140 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/export.json +165 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/extra.json +137 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/generate.json +383 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/group.json +174 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/history.json +618 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/import.json +201 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/initialize.json +33 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/list.json +280 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/property.json +179 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/resolution.json +161 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/results.json +163 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/rotate.json +178 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/servo.json +264 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/tolerance.json +217 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/commands/wall/velocity-conveyor.json +127 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/command_docs/index.json +3493 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/index.json +2218 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/itasca_keywords.json +35 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ball/Ball.json +1643 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ball/keywords.json +1079 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ball/module.json +182 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballarray/keywords.json +328 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballarray/module.json +1614 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballballarray/keywords.json +236 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballballarray/module.json +1004 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballfacetarray/keywords.json +231 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballfacetarray/module.json +978 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballpebblearray/keywords.json +231 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/ballpebblearray/module.json +978 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/Clump.json +1995 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/keywords.json +1407 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/module.json +150 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/pebble/Pebble.json +499 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/pebble/keywords.json +387 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/pebble/module.json +107 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/template/Template.json +200 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/template/keywords.json +363 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clump/template/module.json +95 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clumparray/keywords.json +348 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/clumparray/module.json +1732 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/Contact.json +640 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/ThermalContact.json +589 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/keywords.json +856 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/contact/module.json +140 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/Measure.json +399 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/Measure_backup.json +196 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/Measure_converted.json +399 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/keywords.json +405 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/measure/module.json +89 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblefacetarray/keywords.json +231 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblefacetarray/module.json +978 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblepebblearray/keywords.json +231 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/pebblepebblearray/module.json +978 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/RBlock.json +1439 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/keywords.json +44 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/module.json +97 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/template/Template.json +175 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/template/keywords.json +23 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblock/template/module.json +71 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblockarray/keywords.json +348 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/rblockarray/module.json +1732 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/Wall.json +800 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/facet/Facet.json +316 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/facet/keywords.json +602 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/facet/module.json +99 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/keywords.json +1224 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/module.json +116 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/vertex/Vertex.json +164 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/vertex/keywords.json +352 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wall/vertex/module.json +99 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wallarray/keywords.json +218 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/python_sdk_docs/modules/wallarray/module.json +1040 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/arrlinear.json +292 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/bilinear.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/burger.json +172 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/eepa.json +286 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/fish.json +115 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/flatjoint.json +385 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/hertz.json +411 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/hysteretic.json +165 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/index.json +441 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/jkr.json +252 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/linear.json +297 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/linearcbond.json +413 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/lineardipole.json +281 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/linearpbond.json +631 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/mohr.json +379 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/null.json +25 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/rrlinear.json +465 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/smoothjoint.json +278 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/softbond.json +410 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/springnetwork.json +559 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/subspringnetwork.json +481 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/thermalnull.json +26 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/contact-models/thermalpipe.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/index.json +40 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/color-by.json +55 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/cut.json +49 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/index.json +68 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/ball/shape.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/color-by.json +56 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/cut.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/index.json +84 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/clump/shape.json +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/contact/color-by.json +55 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/contact/cut.json +49 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/contact/index.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/index.json +50 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/rblock/color-by.json +55 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/rblock/cut.json +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/rblock/index.json +63 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/wall/color-by.json +37 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/wall/cut.json +49 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/plot-items/wall/index.json +62 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/range-elements/contact.json +59 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/range-elements/index.json +256 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/resources/pfc/references/range-elements/sphere.json +28 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/__init__.py +21 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/base.py +58 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/engines/__init__.py +13 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/engines/base_engine.py +196 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/engines/bm25_engine.py +218 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/indexing/__init__.py +5 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/indexing/bm25_indexer.py +378 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/keyword_matcher.py +206 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/legacy_models.py +121 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/postprocessing/__init__.py +11 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/postprocessing/component_consolidation.py +122 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/postprocessing/contact_consolidation.py +121 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/preprocessing/__init__.py +10 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/preprocessing/stopwords.py +193 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/preprocessing/tokenizer.py +338 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/scoring/__init__.py +5 -0
- itasca_mcp-0.6.0/src/itasca_mcp/knowledge/search/scoring/bm25_scorer.py +333 -0
- itasca_mcp-0.6.0/src/itasca_mcp/py.typed +0 -0
- itasca_mcp-0.6.0/src/itasca_mcp/server.py +153 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/__init__.py +27 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/browse_commands.py +265 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/browse_python_api.py +426 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/browse_reference.py +344 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/check_task_status.py +119 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/execute_code.py +156 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/execute_task.py +109 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/interrupt_task.py +43 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/list_tasks.py +72 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/query_command.py +89 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/query_python_api.py +71 -0
- itasca_mcp-0.6.0/src/itasca_mcp/tools/task_formatting.py +8 -0
- itasca_mcp-0.6.0/src/itasca_mcp/utils.py +225 -0
- itasca_mcp-0.6.0/tests/__init__.py +0 -0
- itasca_mcp-0.6.0/tests/test_addon.py +227 -0
- itasca_mcp-0.6.0/tests/test_contact_type_expansion.py +73 -0
- itasca_mcp-0.6.0/tests/test_docs_tool_contracts.py +225 -0
- itasca_mcp-0.6.0/tests/test_figure_reference.py +194 -0
- itasca_mcp-0.6.0/tests/test_formatting.py +26 -0
- itasca_mcp-0.6.0/tests/test_multi_engine_software.py +883 -0
- itasca_mcp-0.6.0/tests/test_phase2_tools.py +55 -0
- itasca_mcp-0.6.0/tests/test_python_api_array_docs.py +87 -0
- itasca_mcp-0.6.0/tests/test_rblock_python_api.py +59 -0
- itasca_mcp-0.6.0/tests/test_tool_contracts.py +415 -0
- itasca_mcp-0.6.0/tests/test_versioned_schema.py +100 -0
- itasca_mcp-0.6.0/uv.lock +2085 -0
- 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,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.
|