rowan-mcp 0.1.0__py3-none-any.whl → 1.0.0__py3-none-any.whl
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.
- rowan_mcp/__init__.py +1 -1
- {rowan_mcp-0.1.0.dist-info → rowan_mcp-1.0.0.dist-info}/METADATA +74 -45
- {rowan_mcp-0.1.0.dist-info → rowan_mcp-1.0.0.dist-info}/RECORD +5 -5
- {rowan_mcp-0.1.0.dist-info → rowan_mcp-1.0.0.dist-info}/WHEEL +0 -0
- {rowan_mcp-0.1.0.dist-info → rowan_mcp-1.0.0.dist-info}/entry_points.txt +0 -0
rowan_mcp/__init__.py
CHANGED
|
@@ -5,7 +5,7 @@ This package provides MCP (Model Context Protocol) server functionality
|
|
|
5
5
|
for integrating with Rowan's computational chemistry platform.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "
|
|
8
|
+
__version__ = "1.0.0"
|
|
9
9
|
__author__ = "Rowan MCP Team"
|
|
10
10
|
__description__ = "MCP server for Rowan computational chemistry platform"
|
|
11
11
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rowan-mcp
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: Model Context Protocol server for Rowan computational chemistry platform
|
|
5
5
|
Project-URL: Homepage, https://github.com/k-yenko/rowan-mcp
|
|
6
6
|
Author-email: Katherine Yenko <katherineyenko@example.com>
|
|
@@ -50,31 +50,38 @@ That's it - no command line setup needed!
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## **
|
|
53
|
+
## **Package Installation**
|
|
54
54
|
|
|
55
|
-
**
|
|
55
|
+
### **Using uv (recommended):**
|
|
56
|
+
```bash
|
|
57
|
+
# Install the package
|
|
58
|
+
uv add rowan-mcp
|
|
59
|
+
```
|
|
56
60
|
|
|
57
|
-
### **
|
|
61
|
+
### **Using pip:**
|
|
58
62
|
```bash
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
63
|
+
# Install the package
|
|
64
|
+
pip install rowan-mcp
|
|
65
|
+
|
|
66
|
+
# Or in a virtual environment
|
|
67
|
+
python -m venv venv
|
|
68
|
+
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
69
|
+
pip install rowan-mcp
|
|
62
70
|
```
|
|
63
71
|
|
|
64
|
-
### **
|
|
65
|
-
- Visit [labs.rowansci.com](https://labs.rowansci.com)
|
|
66
|
-
- Create free account → Generate API key
|
|
72
|
+
### **Get API Key & Configure**
|
|
67
73
|
|
|
68
|
-
|
|
74
|
+
1. **Get your API key**: Visit [labs.rowansci.com](https://labs.rowansci.com) → Create account → Generate API key
|
|
69
75
|
|
|
70
|
-
**Claude
|
|
76
|
+
2. **Configure your MCP client** (e.g., Claude Code, VSCode, Cursor, etc.):
|
|
77
|
+
|
|
78
|
+
**With uv:**
|
|
71
79
|
```json
|
|
72
80
|
{
|
|
73
81
|
"mcpServers": {
|
|
74
82
|
"rowan": {
|
|
75
83
|
"command": "uv",
|
|
76
|
-
"args": ["run", "
|
|
77
|
-
"cwd": "/path/to/rowan-mcp",
|
|
84
|
+
"args": ["run", "rowan-mcp"],
|
|
78
85
|
"env": {
|
|
79
86
|
"ROWAN_API_KEY": "your_api_key_here"
|
|
80
87
|
}
|
|
@@ -83,72 +90,76 @@ uv sync
|
|
|
83
90
|
}
|
|
84
91
|
```
|
|
85
92
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
+
**With pip/system Python:**
|
|
94
|
+
```json
|
|
95
|
+
{
|
|
96
|
+
"mcpServers": {
|
|
97
|
+
"rowan": {
|
|
98
|
+
"command": "rowan-mcp",
|
|
99
|
+
"env": {
|
|
100
|
+
"ROWAN_API_KEY": "your_api_key_here"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
93
105
|
```
|
|
94
106
|
|
|
95
|
-
### **
|
|
107
|
+
### **Start Using**
|
|
96
108
|
Ask your AI: *"Calculate the pKa of aspirin"* or *"Optimize the geometry of caffeine"*
|
|
97
109
|
|
|
98
|
-
|
|
99
|
-
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## **Development Installation**
|
|
113
|
+
|
|
114
|
+
**For developers or contributors:**
|
|
115
|
+
|
|
116
|
+
### **1. Clone and Setup**
|
|
100
117
|
```bash
|
|
101
|
-
|
|
102
|
-
|
|
118
|
+
git clone https://github.com/k-yenko/rowan-mcp.git
|
|
119
|
+
cd rowan-mcp
|
|
120
|
+
uv sync
|
|
103
121
|
```
|
|
104
122
|
|
|
105
|
-
|
|
123
|
+
### **2. Configure for Development**
|
|
106
124
|
```json
|
|
107
125
|
{
|
|
108
126
|
"mcpServers": {
|
|
109
127
|
"rowan": {
|
|
110
128
|
"command": "uv",
|
|
111
129
|
"args": ["run", "python", "-m", "rowan_mcp"],
|
|
112
|
-
"cwd": "/path/to/rowan-mcp"
|
|
130
|
+
"cwd": "/path/to/rowan-mcp",
|
|
131
|
+
"env": {
|
|
132
|
+
"ROWAN_API_KEY": "your_api_key_here"
|
|
133
|
+
}
|
|
113
134
|
}
|
|
114
135
|
}
|
|
115
136
|
}
|
|
116
137
|
```
|
|
117
138
|
|
|
139
|
+
*Replace `/path/to/rowan-mcp` with your actual clone path. Find it with `pwd` in the project directory.*
|
|
140
|
+
|
|
118
141
|
---
|
|
119
142
|
|
|
120
143
|
## **What You Can Do**
|
|
121
144
|
|
|
122
145
|
Ask the LLM to:
|
|
123
146
|
- **Calculate drug properties**: *"Predict drug-likeness of aspirin"*
|
|
124
|
-
- **Optimize molecular structures**: *"Optimize the geometry of aspirin"*
|
|
147
|
+
- **Optimize molecular structures**: *"Optimize the geometry of aspirin"*
|
|
125
148
|
- **Predict chemical behavior**: *"What's the pKa of acetic acid?"*
|
|
126
149
|
- **Run calculations**: *"Calculate the HOMO and LUMO of benzene"*
|
|
127
150
|
|
|
128
151
|
## **System Requirements**
|
|
129
152
|
|
|
130
153
|
- **Python 3.10+** (Python 3.11+ recommended)
|
|
131
|
-
- **[uv](https://docs.astral.sh/uv/)
|
|
154
|
+
- **Package manager**: [uv](https://docs.astral.sh/uv/) (recommended) or pip
|
|
132
155
|
- **Rowan API key** (free at [labs.rowansci.com](https://labs.rowansci.com))
|
|
133
|
-
- **MCP-compatible client** (Claude Desktop,
|
|
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
|
-
```
|
|
156
|
+
- **MCP-compatible client** (Claude Desktop, etc.)
|
|
142
157
|
|
|
143
|
-
## **Development**
|
|
144
158
|
|
|
145
|
-
|
|
159
|
+
**Development commands** (if you cloned the repo):
|
|
146
160
|
```bash
|
|
147
|
-
# Run
|
|
161
|
+
# Run from source
|
|
148
162
|
uv run python -m rowan_mcp --http
|
|
149
|
-
|
|
150
|
-
# Run server in STDIO mode (default)
|
|
151
|
-
uv run python -m rowan_mcp
|
|
152
163
|
```
|
|
153
164
|
|
|
154
165
|
---
|
|
@@ -214,3 +225,21 @@ If you use this MCP tool in your research, please cite the underlying Rowan plat
|
|
|
214
225
|
Rowan Scientific. https://www.rowansci.com (accessed 2025-07-01).
|
|
215
226
|
|
|
216
227
|
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).
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## **Publishing (Maintainer Notes)**
|
|
232
|
+
|
|
233
|
+
To publish a new version to PyPI:
|
|
234
|
+
|
|
235
|
+
```bash
|
|
236
|
+
# Update version in pyproject.toml and rowan_mcp/__init__.py
|
|
237
|
+
# Build the package
|
|
238
|
+
uv build
|
|
239
|
+
|
|
240
|
+
# Publish to PyPI (requires API token)
|
|
241
|
+
uv publish
|
|
242
|
+
|
|
243
|
+
# Or publish to TestPyPI first
|
|
244
|
+
uv publish --index-url https://test.pypi.org/simple/
|
|
245
|
+
```
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
rowan_mcp/__init__.py,sha256=
|
|
1
|
+
rowan_mcp/__init__.py,sha256=P0K_WQJCQuyQtG4fNFto6Wutijtle32lG9sFB96cYiw,381
|
|
2
2
|
rowan_mcp/__main__.py,sha256=I7wCpoCPLrCx_tWozFBtCtnoL65lmgDiZnEumj3vijM,388
|
|
3
3
|
rowan_mcp/server.py,sha256=47MsJchxzqRVd4mFQXR81wYXBX8B8fFUkl7wDYB5uMs,7702
|
|
4
4
|
rowan_mcp/functions/admet.py,sha256=m_RD7OJ8GDocEInHw4zOmk4tBf2mWBGTL3LVt-vo_mU,2438
|
|
@@ -29,7 +29,7 @@ rowan_mcp/functions/spin_states.py,sha256=NG7uJjTi_Fx-E4Qr7RzjNhfFmKlHfIGMD0Uhyo
|
|
|
29
29
|
rowan_mcp/functions/system_management.py,sha256=UwdKD46FNEJh1zEPpvFW7-JBD6g8x-xSbmH7lrcubx0,20089
|
|
30
30
|
rowan_mcp/functions/tautomers.py,sha256=oXFUpMgCVtXy2JnyCb8G04vYj_anJj4WThD26ZGOsZ0,2694
|
|
31
31
|
rowan_mcp/functions/workflow_management.py,sha256=EqXRqj0EuJz7h2igqOHBpq23Qyo-KT9geWp39URacxw,21130
|
|
32
|
-
rowan_mcp-
|
|
33
|
-
rowan_mcp-
|
|
34
|
-
rowan_mcp-
|
|
35
|
-
rowan_mcp-
|
|
32
|
+
rowan_mcp-1.0.0.dist-info/METADATA,sha256=wqqheHW12cXQmu4Ocp-j551vbx1oJ72P5kB85Q65q8g,6628
|
|
33
|
+
rowan_mcp-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
34
|
+
rowan_mcp-1.0.0.dist-info/entry_points.txt,sha256=QkmK3GHkTNA6gqyTIFrl2V2eVBm-VBdRAlDNsvi4Rl0,52
|
|
35
|
+
rowan_mcp-1.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|