rowan-mcp 0.1.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.

Potentially problematic release.


This version of rowan-mcp might be problematic. Click here for more details.

Files changed (40) hide show
  1. rowan_mcp-0.1.0/.gitignore +11 -0
  2. rowan_mcp-0.1.0/MANIFEST.in +8 -0
  3. rowan_mcp-0.1.0/PKG-INFO +216 -0
  4. rowan_mcp-0.1.0/README.md +184 -0
  5. rowan_mcp-0.1.0/ROWAN_MCP_TEST_QUERIES.md +123 -0
  6. rowan_mcp-0.1.0/ROWAN_MCP_TOOLS.md +440 -0
  7. rowan_mcp-0.1.0/pyproject.toml +64 -0
  8. rowan_mcp-0.1.0/rowan-dxt.dxt +0 -0
  9. rowan_mcp-0.1.0/rowan_mcp/__init__.py +14 -0
  10. rowan_mcp-0.1.0/rowan_mcp/__main__.py +14 -0
  11. rowan_mcp-0.1.0/rowan_mcp/functions/admet.py +94 -0
  12. rowan_mcp-0.1.0/rowan_mcp/functions/bde.py +113 -0
  13. rowan_mcp-0.1.0/rowan_mcp/functions/calculation_retrieve.py +89 -0
  14. rowan_mcp-0.1.0/rowan_mcp/functions/conformers.py +135 -0
  15. rowan_mcp-0.1.0/rowan_mcp/functions/descriptors.py +92 -0
  16. rowan_mcp-0.1.0/rowan_mcp/functions/docking.py +340 -0
  17. rowan_mcp-0.1.0/rowan_mcp/functions/docking_enhanced.py +174 -0
  18. rowan_mcp-0.1.0/rowan_mcp/functions/electronic_properties.py +263 -0
  19. rowan_mcp-0.1.0/rowan_mcp/functions/folder_management.py +137 -0
  20. rowan_mcp-0.1.0/rowan_mcp/functions/fukui.py +355 -0
  21. rowan_mcp-0.1.0/rowan_mcp/functions/hydrogen_bond_basicity.py +94 -0
  22. rowan_mcp-0.1.0/rowan_mcp/functions/irc.py +125 -0
  23. rowan_mcp-0.1.0/rowan_mcp/functions/macropka.py +195 -0
  24. rowan_mcp-0.1.0/rowan_mcp/functions/molecular_converter.py +423 -0
  25. rowan_mcp-0.1.0/rowan_mcp/functions/molecular_dynamics.py +191 -0
  26. rowan_mcp-0.1.0/rowan_mcp/functions/molecule_cache.db +0 -0
  27. rowan_mcp-0.1.0/rowan_mcp/functions/molecule_lookup.py +446 -0
  28. rowan_mcp-0.1.0/rowan_mcp/functions/multistage_opt.py +171 -0
  29. rowan_mcp-0.1.0/rowan_mcp/functions/pdb_handler.py +200 -0
  30. rowan_mcp-0.1.0/rowan_mcp/functions/pka.py +137 -0
  31. rowan_mcp-0.1.0/rowan_mcp/functions/redox_potential.py +352 -0
  32. rowan_mcp-0.1.0/rowan_mcp/functions/scan.py +536 -0
  33. rowan_mcp-0.1.0/rowan_mcp/functions/scan_analyzer.py +347 -0
  34. rowan_mcp-0.1.0/rowan_mcp/functions/solubility.py +277 -0
  35. rowan_mcp-0.1.0/rowan_mcp/functions/spin_states.py +747 -0
  36. rowan_mcp-0.1.0/rowan_mcp/functions/system_management.py +368 -0
  37. rowan_mcp-0.1.0/rowan_mcp/functions/tautomers.py +91 -0
  38. rowan_mcp-0.1.0/rowan_mcp/functions/workflow_management.py +422 -0
  39. rowan_mcp-0.1.0/rowan_mcp/server.py +169 -0
  40. rowan_mcp-0.1.0/uv.lock +1655 -0
@@ -0,0 +1,11 @@
1
+ /.venv
2
+ /rowan-dxt
3
+ .env
4
+ __pycache__/
5
+ *.py[cod]
6
+ *$py.class
7
+ *.so
8
+ .DS_Store
9
+
10
+ .claude
11
+ CLAUDE.md
@@ -0,0 +1,8 @@
1
+ include README.md
2
+ include ROWAN_MCP_TOOLS.md
3
+ include ROWAN_MCP_TEST_QUERIES.md
4
+ include rowan-dxt.dxt
5
+ recursive-include rowan_mcp *.db
6
+ recursive-exclude * __pycache__
7
+ recursive-exclude * *.py[co]
8
+ recursive-exclude * .DS_Store
@@ -0,0 +1,216 @@
1
+ Metadata-Version: 2.4
2
+ Name: rowan-mcp
3
+ Version: 0.1.0
4
+ Summary: Model Context Protocol server for Rowan computational chemistry platform
5
+ Project-URL: Homepage, https://github.com/k-yenko/rowan-mcp
6
+ Author-email: Katherine Yenko <katherineyenko@example.com>
7
+ License: MIT
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
16
+ Requires-Python: >=3.10
17
+ Requires-Dist: fastapi>=0.104.0
18
+ Requires-Dist: fastmcp>=0.2.0
19
+ Requires-Dist: pubchempy>=1.0.4
20
+ Requires-Dist: pydantic>=2.0.0
21
+ Requires-Dist: python-dotenv>=1.0.0
22
+ Requires-Dist: rdkit>=2025.3.2
23
+ Requires-Dist: rowan-python>=0.1.0
24
+ Requires-Dist: typing-extensions>=4.0.0
25
+ Requires-Dist: uvicorn>=0.24.0
26
+ Provides-Extra: dev
27
+ Requires-Dist: black>=23.0.0; extra == 'dev'
28
+ Requires-Dist: isort>=5.0.0; extra == 'dev'
29
+ Requires-Dist: mypy>=1.0.0; extra == 'dev'
30
+ Requires-Dist: pytest>=7.0.0; extra == 'dev'
31
+ Description-Content-Type: text/markdown
32
+
33
+ # Rowan MCP Server
34
+
35
+ This project wraps an MCP (Model Context Protocol) around Rowan's tools, making it easy for users to submit complex quantum chemistry calculations in natural everyday language.
36
+
37
+ ---
38
+
39
+ ## **Quick Install - Desktop Extension**
40
+
41
+ **For Claude Desktop users - this is the easiest way:**
42
+
43
+ 1. **Download** the extension: [`rowan-dxt.dxt`](./rowan-dxt.dxt)
44
+ 2. **Drag and drop** the file into **Claude Desktop > Settings > Extensions**
45
+ 3. **Enter your API key** from [labs.rowansci.com](https://labs.rowansci.com)
46
+ 4. **Enable** the MCP tool in the extension settings
47
+ 5. **Start chatting** Try: *"Using the Rowan MCP tool, calculate the pKa of aspirin"*
48
+
49
+ That's it - no command line setup needed!
50
+
51
+ ---
52
+
53
+ ## **Manual Installation**
54
+
55
+ **For developers or users who prefer command-line setup:**
56
+
57
+ ### **1. Clone and Setup**
58
+ ```bash
59
+ git clone https://github.com/k-yenko/rowan-mcp.git
60
+ cd rowan-mcp
61
+ uv sync
62
+ ```
63
+
64
+ ### **2. Get API Key**
65
+ - Visit [labs.rowansci.com](https://labs.rowansci.com)
66
+ - Create free account β†’ Generate API key
67
+
68
+ ### **3. Configure Your MCP Client**
69
+
70
+ **Claude Desktop Example:**
71
+ ```json
72
+ {
73
+ "mcpServers": {
74
+ "rowan": {
75
+ "command": "uv",
76
+ "args": ["run", "python", "-m", "rowan_mcp"],
77
+ "cwd": "/path/to/rowan-mcp",
78
+ "env": {
79
+ "ROWAN_API_KEY": "your_api_key_here"
80
+ }
81
+ }
82
+ }
83
+ }
84
+ ```
85
+
86
+ *Replace `/path/to/rowan-mcp` with the actual path where you cloned the repository*
87
+
88
+ **To find your path:**
89
+ ```bash
90
+ # After cloning, run this in the rowan-mcp directory:
91
+ pwd
92
+ # Copy the output and use it as your "cwd" value
93
+ ```
94
+
95
+ ### **4. Start Using**
96
+ Ask your AI: *"Calculate the pKa of aspirin"* or *"Optimize the geometry of caffeine"*
97
+
98
+ ### **Alternative: Use .env file**
99
+ Instead of putting your API key in the MCP config, create a `.env` file:
100
+ ```bash
101
+ # In the rowan-mcp directory:
102
+ echo "ROWAN_API_KEY=your_actual_api_key_here" > .env
103
+ ```
104
+
105
+ Then use this simpler config (no env section needed):
106
+ ```json
107
+ {
108
+ "mcpServers": {
109
+ "rowan": {
110
+ "command": "uv",
111
+ "args": ["run", "python", "-m", "rowan_mcp"],
112
+ "cwd": "/path/to/rowan-mcp"
113
+ }
114
+ }
115
+ }
116
+ ```
117
+
118
+ ---
119
+
120
+ ## **What You Can Do**
121
+
122
+ Ask the LLM to:
123
+ - **Calculate drug properties**: *"Predict drug-likeness of aspirin"*
124
+ - **Optimize molecular structures**: *"Optimize the geometry of aspirin"*
125
+ - **Predict chemical behavior**: *"What's the pKa of acetic acid?"*
126
+ - **Run calculations**: *"Calculate the HOMO and LUMO of benzene"*
127
+
128
+ ## **System Requirements**
129
+
130
+ - **Python 3.10+** (Python 3.11+ recommended)
131
+ - **[uv](https://docs.astral.sh/uv/) package manager**
132
+ - **Rowan API key** (free at [labs.rowansci.com](https://labs.rowansci.com))
133
+ - **MCP-compatible client** (Claude Desktop, Continue, etc.)
134
+
135
+ ## **Testing Your Setup**
136
+
137
+ You can test the server directly:
138
+ ```bash
139
+ # In the rowan-mcp directory:
140
+ uv run python -m rowan_mcp --help
141
+ ```
142
+
143
+ ## **Development**
144
+
145
+ The installation above is the same for development! Additional commands:
146
+ ```bash
147
+ # Run server in HTTP/SSE mode
148
+ uv run python -m rowan_mcp --http
149
+
150
+ # Run server in STDIO mode (default)
151
+ uv run python -m rowan_mcp
152
+ ```
153
+
154
+ ---
155
+
156
+ ## Available Tools
157
+
158
+ ### Chemistry Calculations
159
+ - `rowan_basic_calculation` - Energy, optimization, frequencies
160
+ - `rowan_multistage_opt` - geometry optimization
161
+ - `rowan_electronic_properties` - HOMO/LUMO, orbitals
162
+ - `rowan_molecular_dynamics` - MD simulations
163
+
164
+ ### Molecular Properties
165
+ - `rowan_pka` - Acid/base strength
166
+ - `rowan_conformers` - Conformational search
167
+ - `rowan_tautomers` - Tautomer enumeration
168
+ - `rowan_descriptors` - ML-ready molecular features
169
+ - `rowan_solubility` - Aqueous solubility
170
+ - `rowan_redox_potential` - Electrochemical potentials
171
+
172
+ ### Drug Discovery
173
+ - `rowan_admet` - ADME-Tox properties
174
+
175
+
176
+ ### Reactivity Analysis
177
+ - `rowan_fukui` - Reactivity sites
178
+ - `rowan_spin_states` - Spin multiplicities
179
+
180
+ ### Project Management
181
+ - `rowan_folder_create/list/update/delete` - Organize calculations
182
+ - `rowan_workflow_create/list/status/stop` - Manage workflows
183
+
184
+ ## Requirements
185
+
186
+ - Python 3.10+
187
+ - Rowan API key
188
+ - MCP-compatible AI assistant (Claude Desktop, etc.)
189
+
190
+ ## Getting Help
191
+
192
+ - **Documentation**: [docs.rowansci.com](https://docs.rowansci.com/)
193
+ - or ping me!
194
+
195
+ ---
196
+
197
+ ## **Todo**
198
+
199
+ - [ ] Remove unnecessary AI spaghetti formatting πŸ™ƒ
200
+ - [ ] Some complex conformer searches hang on "running"
201
+ - [ ] Edit MCP one-liner context
202
+ - [ ] Transition state finding and IRC
203
+ - [X] `rowan_scan` - Potential energy surfaces
204
+ - [ ] `rowan_docking` - Protein-ligand docking
205
+ - [X] add in h-bond, BDE and macroscopic pka, logD, BBB
206
+ - [ ] Folder listing API bug (returns 500 error) - Rowan side?
207
+ - [ ] Multistage optimization sometimes shows unexpected imaginary frequencies
208
+ - [ ] Some calculations show as finished in logs but not in Rowan UI
209
+
210
+ ## Citation
211
+
212
+ If you use this MCP tool in your research, please cite the underlying Rowan platform:
213
+
214
+ Rowan Scientific. https://www.rowansci.com (accessed 2025-07-01).
215
+
216
+ For complete citation information including specific computational engines, methods, and workflows used in your calculations, please refer to [Rowan's citation guidelines](https://docs.rowansci.com/citations).
@@ -0,0 +1,184 @@
1
+ # Rowan MCP Server
2
+
3
+ This project wraps an MCP (Model Context Protocol) around Rowan's tools, making it easy for users to submit complex quantum chemistry calculations in natural everyday language.
4
+
5
+ ---
6
+
7
+ ## **Quick Install - Desktop Extension**
8
+
9
+ **For Claude Desktop users - this is the easiest way:**
10
+
11
+ 1. **Download** the extension: [`rowan-dxt.dxt`](./rowan-dxt.dxt)
12
+ 2. **Drag and drop** the file into **Claude Desktop > Settings > Extensions**
13
+ 3. **Enter your API key** from [labs.rowansci.com](https://labs.rowansci.com)
14
+ 4. **Enable** the MCP tool in the extension settings
15
+ 5. **Start chatting** Try: *"Using the Rowan MCP tool, calculate the pKa of aspirin"*
16
+
17
+ That's it - no command line setup needed!
18
+
19
+ ---
20
+
21
+ ## **Manual Installation**
22
+
23
+ **For developers or users who prefer command-line setup:**
24
+
25
+ ### **1. Clone and Setup**
26
+ ```bash
27
+ git clone https://github.com/k-yenko/rowan-mcp.git
28
+ cd rowan-mcp
29
+ uv sync
30
+ ```
31
+
32
+ ### **2. Get API Key**
33
+ - Visit [labs.rowansci.com](https://labs.rowansci.com)
34
+ - Create free account β†’ Generate API key
35
+
36
+ ### **3. Configure Your MCP Client**
37
+
38
+ **Claude Desktop Example:**
39
+ ```json
40
+ {
41
+ "mcpServers": {
42
+ "rowan": {
43
+ "command": "uv",
44
+ "args": ["run", "python", "-m", "rowan_mcp"],
45
+ "cwd": "/path/to/rowan-mcp",
46
+ "env": {
47
+ "ROWAN_API_KEY": "your_api_key_here"
48
+ }
49
+ }
50
+ }
51
+ }
52
+ ```
53
+
54
+ *Replace `/path/to/rowan-mcp` with the actual path where you cloned the repository*
55
+
56
+ **To find your path:**
57
+ ```bash
58
+ # After cloning, run this in the rowan-mcp directory:
59
+ pwd
60
+ # Copy the output and use it as your "cwd" value
61
+ ```
62
+
63
+ ### **4. Start Using**
64
+ Ask your AI: *"Calculate the pKa of aspirin"* or *"Optimize the geometry of caffeine"*
65
+
66
+ ### **Alternative: Use .env file**
67
+ Instead of putting your API key in the MCP config, create a `.env` file:
68
+ ```bash
69
+ # In the rowan-mcp directory:
70
+ echo "ROWAN_API_KEY=your_actual_api_key_here" > .env
71
+ ```
72
+
73
+ Then use this simpler config (no env section needed):
74
+ ```json
75
+ {
76
+ "mcpServers": {
77
+ "rowan": {
78
+ "command": "uv",
79
+ "args": ["run", "python", "-m", "rowan_mcp"],
80
+ "cwd": "/path/to/rowan-mcp"
81
+ }
82
+ }
83
+ }
84
+ ```
85
+
86
+ ---
87
+
88
+ ## **What You Can Do**
89
+
90
+ Ask the LLM to:
91
+ - **Calculate drug properties**: *"Predict drug-likeness of aspirin"*
92
+ - **Optimize molecular structures**: *"Optimize the geometry of aspirin"*
93
+ - **Predict chemical behavior**: *"What's the pKa of acetic acid?"*
94
+ - **Run calculations**: *"Calculate the HOMO and LUMO of benzene"*
95
+
96
+ ## **System Requirements**
97
+
98
+ - **Python 3.10+** (Python 3.11+ recommended)
99
+ - **[uv](https://docs.astral.sh/uv/) package manager**
100
+ - **Rowan API key** (free at [labs.rowansci.com](https://labs.rowansci.com))
101
+ - **MCP-compatible client** (Claude Desktop, Continue, etc.)
102
+
103
+ ## **Testing Your Setup**
104
+
105
+ You can test the server directly:
106
+ ```bash
107
+ # In the rowan-mcp directory:
108
+ uv run python -m rowan_mcp --help
109
+ ```
110
+
111
+ ## **Development**
112
+
113
+ The installation above is the same for development! Additional commands:
114
+ ```bash
115
+ # Run server in HTTP/SSE mode
116
+ uv run python -m rowan_mcp --http
117
+
118
+ # Run server in STDIO mode (default)
119
+ uv run python -m rowan_mcp
120
+ ```
121
+
122
+ ---
123
+
124
+ ## Available Tools
125
+
126
+ ### Chemistry Calculations
127
+ - `rowan_basic_calculation` - Energy, optimization, frequencies
128
+ - `rowan_multistage_opt` - geometry optimization
129
+ - `rowan_electronic_properties` - HOMO/LUMO, orbitals
130
+ - `rowan_molecular_dynamics` - MD simulations
131
+
132
+ ### Molecular Properties
133
+ - `rowan_pka` - Acid/base strength
134
+ - `rowan_conformers` - Conformational search
135
+ - `rowan_tautomers` - Tautomer enumeration
136
+ - `rowan_descriptors` - ML-ready molecular features
137
+ - `rowan_solubility` - Aqueous solubility
138
+ - `rowan_redox_potential` - Electrochemical potentials
139
+
140
+ ### Drug Discovery
141
+ - `rowan_admet` - ADME-Tox properties
142
+
143
+
144
+ ### Reactivity Analysis
145
+ - `rowan_fukui` - Reactivity sites
146
+ - `rowan_spin_states` - Spin multiplicities
147
+
148
+ ### Project Management
149
+ - `rowan_folder_create/list/update/delete` - Organize calculations
150
+ - `rowan_workflow_create/list/status/stop` - Manage workflows
151
+
152
+ ## Requirements
153
+
154
+ - Python 3.10+
155
+ - Rowan API key
156
+ - MCP-compatible AI assistant (Claude Desktop, etc.)
157
+
158
+ ## Getting Help
159
+
160
+ - **Documentation**: [docs.rowansci.com](https://docs.rowansci.com/)
161
+ - or ping me!
162
+
163
+ ---
164
+
165
+ ## **Todo**
166
+
167
+ - [ ] Remove unnecessary AI spaghetti formatting πŸ™ƒ
168
+ - [ ] Some complex conformer searches hang on "running"
169
+ - [ ] Edit MCP one-liner context
170
+ - [ ] Transition state finding and IRC
171
+ - [X] `rowan_scan` - Potential energy surfaces
172
+ - [ ] `rowan_docking` - Protein-ligand docking
173
+ - [X] add in h-bond, BDE and macroscopic pka, logD, BBB
174
+ - [ ] Folder listing API bug (returns 500 error) - Rowan side?
175
+ - [ ] Multistage optimization sometimes shows unexpected imaginary frequencies
176
+ - [ ] Some calculations show as finished in logs but not in Rowan UI
177
+
178
+ ## Citation
179
+
180
+ If you use this MCP tool in your research, please cite the underlying Rowan platform:
181
+
182
+ Rowan Scientific. https://www.rowansci.com (accessed 2025-07-01).
183
+
184
+ For complete citation information including specific computational engines, methods, and workflows used in your calculations, please refer to [Rowan's citation guidelines](https://docs.rowansci.com/citations).
@@ -0,0 +1,123 @@
1
+ # ROWAN MCP TEST QUERIES
2
+
3
+ Natural language test queries for all Rowan MCP tools.
4
+
5
+ βœ…: passed with expected results
6
+
7
+ ⚠️: passed-ish (submitted/ran, but maybe unexpected results or needs some tweaking)
8
+
9
+ ❌: failed
10
+
11
+ ---
12
+
13
+ # simple queries
14
+
15
+ ## core calculations
16
+
17
+ ### geometry optimizations
18
+ - Optimize the geometry of aspirin βœ…
19
+ - Run a multistage optimization on caffeine ⚠️ (Unexpected Imaginary Frequency
20
+
21
+ An unexpected large imaginary frequency was encountered, meaning that the calculation is far from a critical point on the PES. It's likely this structure has not been successfully optimized! Thermochemical results will be unreliable.)
22
+
23
+ - Get the best structure for benzene βœ…
24
+
25
+ ### electronic props
26
+ - Calculate the HOMO and LUMO of benzene βœ…
27
+ - Get the electronic properties of nicotine βœ…
28
+ - What are the molecular orbitals of methanol? βœ…
29
+
30
+ ### conformational analysis
31
+ - Find the stable conformers of glucose ❌ - stuck on "running"
32
+ - Generate 5 conformers of butane βœ…
33
+ - What are the different shapes ethanol can adopt? βœ…
34
+
35
+ ### scans
36
+ - Scan the C-C bond in ethane from 1.3 to 1.8 Angstroms βœ…
37
+
38
+ ### spin states
39
+ - What spin states are possible for iron(III) complex? βœ…
40
+ - Calculate different spin multiplicities for NO radical βœ… - calculated doublet and quartet states (?)
41
+ - Check if iron porphyrin prefers singlet or triplet state ⚠️ log files indicate that this run finished, but doesn't say "finished" on rowan UI. stopped
42
+
43
+ ## cheimcal properties
44
+
45
+ ### redox
46
+ - What's the reduction potential of benzoquinone? βœ… (Large Oxidation Potential Predicted. The predicted oxidation potential is very large. The workflow not been thoroughly tested on values in this rangeβ€”results may be less accurate!)
47
+ - Can vitamin E be easily oxidized? ⚠️ log files indicate that this run finished, but doesn't say "finished" on rowan UI. stopped
48
+ - Predict the redox behavior of phenol βœ…
49
+
50
+ ### solubility
51
+ - How soluble is aspirin in water?βœ…
52
+ - How soluble is caffeine in different solvents? Pick 5, and run them at 5 different temps in ascending order. βœ…
53
+
54
+ ### descriptors
55
+ - Generate descriptors for benzene βœ…
56
+ - Get QSAR features for ethanol βœ…
57
+
58
+ ### pka
59
+ - What's the pKa of acetic acid? βœ…
60
+ - What's the pKa of caffeine? βœ…
61
+ - What are the pKa values of citric acid? βœ…
62
+
63
+ ### bond dissociation energy (no access)
64
+
65
+ ### hydrogen bond basicity (no access)
66
+
67
+ ## reactions / dynamics
68
+
69
+ ### reactivity (fukui)
70
+ - Where will electrophiles attack benzene? βœ…
71
+ - Find the most reactive sites in phenol βœ…
72
+
73
+ ### rxn coordinate/irc ❌
74
+ - Find the transition state for hydrogen migration in formic acid, then trace the reaction path to confirm it connects HCOOH and HOCOH isomers ❌
75
+
76
+ ### molecular dynamics
77
+ - Run a short MD simulation of water βœ… (use molecule='water', not 'O')
78
+ - Simulate the flexibility of ethanol for 500 steps βœ…
79
+ - Run molecular dynamics on butanol for 1000 steps βœ…
80
+
81
+ ## drug discovery
82
+
83
+ ### admet
84
+ - Predict drug-likeness of aspirin (follow-up: is it orally bioavailable?) βœ…
85
+ - Calculate ADMET for KarXT from Karuna Therapeutics βœ…
86
+
87
+ ### docking (couldn't resolve) ❌
88
+ - Dock aspirin to COX-2 enzyme
89
+ - Find binding pose of this ligand
90
+ - Predict protein-drug interaction
91
+
92
+ ### tautomers
93
+ - What tautomers does acetylacetone have? βœ…
94
+ - Find tautomers of barbituric acid βœ…
95
+ - What keto-enol tautomers does phenol have? βœ…
96
+
97
+ ## workflow management
98
+
99
+ ### data retrieval
100
+ - Get results from this calculation UUID βœ…
101
+ - List 5 most recent workflows βœ…
102
+ - Update name of most recent workflow to "x" βœ…
103
+
104
+ ### project organization
105
+ - Create a new project folder for drug discovery (and delete) βœ…
106
+ - List all folders in my account βœ…
107
+ - "Move KarXT-related calculations into the folder" βœ…
108
+ - fix list folders ❌
109
+
110
+ ### server administration
111
+ - Check server status βœ…
112
+
113
+ # more comprehensive queries tbd...
114
+
115
+ ### to do
116
+ - reaction coordinates, irc, docking
117
+ - rowan folder list - i think there's a bug
118
+ - tried paramter filtering (non-None params to avoid sending empty strings)
119
+ - direct API calls with rowan.Folder.list() with no params
120
+ - string, None, type checks
121
+ - used the example directly from Rowan's API docs (after adding redox folder), still getting 500 error
122
+ - edit descriptions for one-liners to feed into the mcp tool
123
+ - break up the folder and workflow mega tools