- Update project name in all documentation files - Update GitHub repository references to Anto01/Atomizer - Update Python package name to 'atomizer' - Update conda environment name references - Update all module docstrings with new branding 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
652 B
Python
24 lines
652 B
Python
"""
|
|
MCP Tools for Atomizer
|
|
|
|
Available tools:
|
|
- discover_fea_model: Analyze .sim files to extract configurable elements
|
|
- build_optimization_config: Generate optimization config from LLM instructions
|
|
- start_optimization: Launch optimization run
|
|
- query_optimization_status: Get current iteration status
|
|
- extract_results: Parse FEA result files
|
|
- run_nx_journal: Execute NXOpen scripts
|
|
- search_nxopen_docs: Search NXOpen API documentation
|
|
"""
|
|
|
|
from typing import Dict, Any
|
|
|
|
__all__ = [
|
|
"discover_fea_model",
|
|
"build_optimization_config",
|
|
"start_optimization",
|
|
"query_optimization_status",
|
|
"extract_results",
|
|
"run_nx_journal",
|
|
]
|