mcp-stata 1.22.1__cp311-abi3-macosx_11_0_x86_64.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.
@@ -0,0 +1,488 @@
1
+ Metadata-Version: 2.4
2
+ Name: mcp-stata
3
+ Version: 1.22.1
4
+ Classifier: Development Status :: 4 - Beta
5
+ Classifier: Intended Audience :: Science/Research
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
8
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: Programming Language :: Python :: 3.14
13
+ Requires-Dist: mcp[cli]>=1.0.0
14
+ Requires-Dist: pandas>=2.0.0
15
+ Requires-Dist: numpy>=1.26.0
16
+ Requires-Dist: pydantic>=2.0.0
17
+ Requires-Dist: pystata>=0.0.1
18
+ Requires-Dist: stata-setup>=0.1.0
19
+ Requires-Dist: httpx>=0.27.0,<0.28.0
20
+ Requires-Dist: pytest-asyncio>=1.3.0
21
+ Requires-Dist: pyarrow>=14.0.0
22
+ Requires-Dist: polars>=1.36.1
23
+ Requires-Dist: build>=1.3.0 ; extra == 'dev'
24
+ Requires-Dist: hatch>=1.16.2 ; extra == 'dev'
25
+ Requires-Dist: twine>=6.2.0 ; extra == 'dev'
26
+ Requires-Dist: ruff>=0.4.0 ; extra == 'dev'
27
+ Requires-Dist: pytest>=7.0.0 ; extra == 'dev'
28
+ Requires-Dist: pytest-cov>=4.0.0 ; extra == 'dev'
29
+ Requires-Dist: pytest-xdist>=3.5.0 ; extra == 'dev'
30
+ Requires-Dist: pytest-timeout>=2.3.1 ; extra == 'dev'
31
+ Requires-Dist: python-semantic-release>=9.8.0 ; extra == 'dev'
32
+ Requires-Dist: maturin>=1.11.5 ; extra == 'dev'
33
+ Provides-Extra: dev
34
+ License-File: LICENSE
35
+ Summary: A lightweight Model Context Protocol (MCP) server for Stata. Execute commands, inspect data, retrieve stored results (`r()`/`e()`), and view graphs in your chat interface. Built for economists who want to integrate LLM assistance into their Stata workflow.
36
+ Keywords: mcp,stata,statistics,econometrics,ai,llm
37
+ Author-email: Thomas Monk <t.d.monk@lse.ac.uk>
38
+ License-Expression: AGPL-3.0-or-later
39
+ Requires-Python: >=3.11
40
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
41
+ Project-URL: Homepage, https://github.com/tmonk/mcp-stata
42
+ Project-URL: Issues, https://github.com/tmonk/mcp-stata/issues
43
+ Project-URL: Repository, https://github.com/tmonk/mcp-stata
44
+
45
+ # Stata MCP Server
46
+
47
+ <a href="https://cursor.com/en-US/install-mcp?name=mcp-stata&config=eyJjb21tYW5kIjogInV2eCAtLXJlZnJlc2ggLS1yZWZyZXNoLXBhY2thZ2UgbWNwLXN0YXRhIC0tZnJvbSBtY3Atc3RhdGFAbGF0ZXN0IG1jcC1zdGF0YSJ9"><img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Install MCP Server" height="20"></a>&nbsp;
48
+ <a href="https://pypi.org/project/mcp-stata/"><img src="https://img.shields.io/pypi/v/mcp-stata?style=flat&color=black" alt="PyPI - Version" height="20"></a>
49
+
50
+ A [Model Context Protocol](https://github.com/modelcontextprotocol) (MCP) server that connects AI agents to a local Stata installation.
51
+
52
+ > If you'd like a fully integrated VS Code extension to run Stata code without leaving your IDE, and also allow AI agent interaction, check out my other project: [<img src="https://raw.githubusercontent.com/tmonk/stata-workbench/refs/heads/main/img/icon.png" height="12px"> Stata Workbench](https://github.com/tmonk/stata-workbench/).
53
+
54
+ Built by <a href="https://tdmonk.com">Thomas Monk</a>, London School of Economics.
55
+ <!-- mcp-name: io.github.tmonk/mcp-stata -->
56
+
57
+ This server enables LLMs to:
58
+ - **Execute Stata code**: run any Stata command (e.g. `sysuse auto`, `regress price mpg`).
59
+ - **Inspect data**: retrieve dataset summaries and variable codebooks.
60
+ - **Export graphics**: generate and view Stata graphs (histograms, scatterplots).
61
+ - **Streaming graph caching**: automatically cache graphs during command execution for instant exports.
62
+ - **Verify results**: programmatically check stored results (`r()`, `e()`) for accurate validation.
63
+
64
+ ## Prerequisites
65
+
66
+ - **Stata 17+** (required for `pystata` integration)
67
+ - **Python 3.11+** (required)
68
+ - **uv** (recommended for install/run)
69
+
70
+ ## Installation
71
+
72
+ ### Run as a published tool with `uvx`
73
+
74
+ ```bash
75
+ uvx --refresh --refresh-package mcp-stata --from mcp-stata@latest mcp-stata
76
+ ```
77
+
78
+ `uvx` is an alias for `uv tool run` and runs the tool in an isolated, cached environment.
79
+
80
+ ## Configuration
81
+
82
+ This server attempts to automatically discover your Stata installation (supporting standard paths and StataNow).
83
+
84
+ If auto-discovery fails, set the `STATA_PATH` environment variable to your Stata executable:
85
+
86
+ ```bash
87
+ # macOS example
88
+ export STATA_PATH="/Applications/StataNow/StataMP.app/Contents/MacOS/stata-mp"
89
+
90
+ # Windows example (cmd.exe)
91
+ set STATA_PATH="C:\Program Files\Stata18\StataMP-64.exe"
92
+ ```
93
+
94
+ If you encounter write permission issues with temporary files (common on Windows), you can override the temporary directory location by setting `MCP_STATA_TEMP`:
95
+
96
+ ```bash
97
+ # Example
98
+ export MCP_STATA_TEMP="/path/to/writable/temp"
99
+ ```
100
+
101
+ The server will automatically try the following locations in order of preference:
102
+ 1. `MCP_STATA_TEMP` environment variable
103
+ 2. System temporary directory
104
+ 3. `~/.mcp-stata/temp`
105
+ 4. Current working directory subdirectory (`.tmp/`)
106
+
107
+ If you prefer, add these variables to your MCP config's `env` for any IDE shown below. It's optional and only needed when discovery cannot find Stata.
108
+
109
+ Optional `env` example (add inside your MCP server entry):
110
+
111
+ ```json
112
+ "env": {
113
+ "STATA_PATH": "/Applications/StataNow/StataMP.app/Contents/MacOS/stata-mp"
114
+ }
115
+ ```
116
+
117
+ ## IDE Setup (MCP)
118
+
119
+ This MCP server uses the **stdio** transport (the IDE launches the process and communicates over stdin/stdout).
120
+
121
+ ---
122
+
123
+ ### Claude Desktop
124
+
125
+ Open Claude Desktop → **Settings** → **Developer** → **Edit Config**.
126
+ Config file locations include:
127
+
128
+ * macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
129
+ * Windows: `%APPDATA%\Claude\claude_desktop_config.json`
130
+
131
+ #### Published tool (uvx)
132
+
133
+ ```json
134
+ {
135
+ "mcpServers": {
136
+ "mcp-stata": {
137
+ "command": "uvx",
138
+ "args": [
139
+ "--refresh",
140
+ "--refresh-package",
141
+ "mcp-stata",
142
+ "--from",
143
+ "mcp-stata@latest",
144
+ "mcp-stata"
145
+ ]
146
+ }
147
+ }
148
+ }
149
+ ```
150
+
151
+ After editing, fully quit and restart Claude Desktop to reload MCP servers.
152
+
153
+ ---
154
+
155
+ ### Cursor
156
+
157
+ Cursor supports MCP config at:
158
+
159
+ * Global: `~/.cursor/mcp.json`
160
+ * Project: `.cursor/mcp.json`
161
+
162
+ #### Published tool (uvx)
163
+
164
+ ```json
165
+ {
166
+ "mcpServers": {
167
+ "mcp-stata": {
168
+ "command": "uvx",
169
+ "args": [
170
+ "--refresh",
171
+ "--refresh-package",
172
+ "mcp-stata",
173
+ "--from",
174
+ "mcp-stata@latest",
175
+ "mcp-stata"
176
+ ]
177
+ }
178
+ }
179
+ }
180
+ ```
181
+
182
+ ---
183
+
184
+ ### Windsurf
185
+
186
+ Windsurf supports MCP plugins and also allows manual editing of `mcp_config.json`. After adding/editing a server, use the UI’s refresh so it re-reads the config.
187
+
188
+ A common location is `~/.codeium/windsurf/mcp_config.json`.
189
+ #### Published tool (uvx)
190
+
191
+ ```json
192
+ {
193
+ "mcpServers": {
194
+ "mcp-stata": {
195
+ "command": "uvx",
196
+ "args": [
197
+ "--refresh",
198
+ "--refresh-package",
199
+ "mcp-stata",
200
+ "--from",
201
+ "mcp-stata@latest",
202
+ "mcp-stata"
203
+ ]
204
+ }
205
+ }
206
+ }
207
+ ```
208
+
209
+ ---
210
+
211
+ ### Google Antigravity
212
+
213
+ In Antigravity, MCP servers are managed from the MCP store/menu; you can open **Manage MCP Servers** and then **View raw config** to edit `mcp_config.json`.
214
+
215
+ #### Published tool (uvx)
216
+
217
+ ```json
218
+ {
219
+ "mcpServers": {
220
+ "mcp-stata": {
221
+ "command": "uvx",
222
+ "args": [
223
+ "--refresh",
224
+ "--refresh-package",
225
+ "mcp-stata",
226
+ "--from",
227
+ "mcp-stata@latest",
228
+ "mcp-stata"
229
+ ]
230
+ }
231
+ }
232
+ }
233
+ ```
234
+
235
+ ---
236
+
237
+ ### Visual Studio Code
238
+
239
+ VS Code supports MCP servers via a `.vscode/mcp.json` file. The top-level key is **`servers`** (not `mcpServers`).
240
+
241
+ Create `.vscode/mcp.json`:
242
+
243
+ #### Published tool (uvx)
244
+
245
+ ```json
246
+ {
247
+ "servers": {
248
+ "mcp-stata": {
249
+ "type": "stdio",
250
+ "command": "uvx",
251
+ "args": [
252
+ "--refresh",
253
+ "--refresh-package",
254
+ "mcp-stata",
255
+ "--from",
256
+ "mcp-stata@latest",
257
+ "mcp-stata"
258
+ ]
259
+ }
260
+ }
261
+ }
262
+ ```
263
+
264
+ VS Code documents `.vscode/mcp.json` and the `servers` schema, including `type` and `command`/`args`.
265
+
266
+ ---
267
+
268
+ ## Skills
269
+
270
+ - Skill file (for Claude/Codex): [skill/SKILL.md](skill/SKILL.md)
271
+
272
+ ## Tools Available (from server.py)
273
+
274
+ * `run_command(code, echo=True, as_json=True, trace=False, raw=False, max_output_lines=None, session_id="default")`: Execute Stata syntax in the specified session.
275
+ - Always writes output to a temporary log file and emits a single `notifications/logMessage` containing `{"event":"log_path","path":"..."}` so the client can tail it locally.
276
+ - May emit `notifications/progress` when the client provides a progress token/callback.
277
+ * `read_log(path, offset=0, max_bytes=65536)`: Read a slice of a previously-provided log file (JSON: `path`, `offset`, `next_offset`, `data`).
278
+ * `find_in_log(path, query, start_offset=0, max_bytes=5_000_000, before=2, after=2, case_sensitive=False, regex=False, max_matches=50)`: Search a log file for text and return context windows.
279
+ - Returns JSON with `matches` (context lines, line indices), `next_offset`, and `truncated` if `max_matches` is hit.
280
+ - Supports literal or regex search with bounded read window for large logs.
281
+ * `load_data(source, clear=True, as_json=True, raw=False, max_output_lines=None, session_id="default")`: Heuristic loader (sysuse/webuse/use/path/URL) for the specified session.
282
+ * `get_ui_channel(session_id="default")`: Return a short-lived localhost HTTP endpoint + bearer token for the UI-only data browser, targeting the specified session.
283
+ * `describe(session_id="default")`: View dataset structure via Stata `describe`.
284
+ * `list_graphs(session_id="default")`: See available graphs in memory (JSON list with an `active` flag).
285
+ * `export_graph(graph_name=None, format="pdf", session_id="default")`: Export a graph to a file path.
286
+ * `export_graphs_all(session_id="default")`: Export all in-memory graphs. Returns file paths.
287
+ * `get_help(topic, plain_text=False, session_id="default")`: Markdown-rendered Stata help.
288
+ * `codebook(variable, as_json=True, trace=False, raw=False, max_output_lines=None, session_id="default")`: Variable-level metadata.
289
+ * `run_do_file(path, echo=True, as_json=True, trace=False, raw=False, max_output_lines=None, session_id="default")`: Execute a .do file in the specified session.
290
+ * `get_stored_results(session_id="default")`: Get `r()` and `e()` scalars/macros as JSON.
291
+ * `get_variable_list(session_id="default")`: JSON list of variables and labels.
292
+ * `create_session(session_id)`: Manually create a new Stata session.
293
+ * `list_sessions()`: List all active sessions and their status.
294
+ * `stop_session(session_id)`: Terminate a specific session.
295
+
296
+ ### Cancellation
297
+
298
+ - Clients may cancel an in-flight request by sending the MCP notification `notifications/cancelled` with `params.requestId` set to the original tool call ID.
299
+ - Client guidance:
300
+ 1. Pass a `_meta.progressToken` when invoking the tool if you want progress updates (optional).
301
+ 2. If you need to cancel, send `notifications/cancelled` with the same requestId. You may also stop tailing the log file path once you receive cancellation confirmation (the tool call will return an error indicating cancellation).
302
+ 3. Be prepared for partial output in the log file; cancellation is best-effort and depends on Stata surfacing `BreakError`.
303
+
304
+ Resources exposed for MCP clients:
305
+
306
+ * `stata://data/summary` → `summarize`
307
+ * `stata://data/metadata` → `describe`
308
+ * `stata://graphs/list` → graph list (resource handler delegates to `list_graphs` tool)
309
+ * `stata://variables/list` → variable list (resource wrapper)
310
+ * `stata://results/stored` → stored r()/e() results
311
+
312
+ ## UI-only Data Browser (Local HTTP API)
313
+
314
+ This server also hosts a **localhost-only HTTP API** intended for a VS Code extension UI to browse data at high volume (paging, filtering) without sending large payloads over MCP.
315
+
316
+ Important properties:
317
+
318
+ - **Loopback only**: binds to `127.0.0.1`.
319
+ - **Bearer auth**: every request requires an `Authorization: Bearer <token>` header.
320
+ - **Short-lived tokens**: clients should call `get_ui_channel()` to obtain a fresh token as needed.
321
+ - **Session Isolate**: caches (views, sorting) are isolated per `sessionId`.
322
+ - **No Stata dataset mutation** for browsing/filtering:
323
+ - No generated variables.
324
+ - Paging uses `sfi.Data.get`.
325
+ - Filtering is evaluated in Python over chunked reads.
326
+
327
+ ### Discovery via MCP (`get_ui_channel`)
328
+
329
+ Call the MCP tool `get_ui_channel()` and parse the JSON:
330
+
331
+ ```json
332
+ {
333
+ "baseUrl": "http://127.0.0.1:53741",
334
+ "token": "...",
335
+ "expiresAt": 1730000000,
336
+ "capabilities": {
337
+ "dataBrowser": true,
338
+ "filtering": true,
339
+ "sorting": true,
340
+ "arrowStream": true
341
+ }
342
+ }
343
+ ```
344
+
345
+ Server-enforced limits (current defaults):
346
+
347
+ - **maxLimit**: 500
348
+ - **maxVars**: 32,767
349
+ - **maxChars**: 500
350
+ - **maxRequestBytes**: 1,000,000
351
+ - **maxArrowLimit**: 1,000,000 (specific to `/v1/arrow`)
352
+
353
+ ### Endpoints
354
+
355
+ All endpoints are under `baseUrl` and require the bearer token.
356
+
357
+ - `GET /v1/dataset?sessionId=default`
358
+ - Returns dataset identity and basic state (`id`, `frame`, `n`, `k`) for the given session.
359
+ - `GET /v1/vars?sessionId=default`
360
+ - Returns full variable list with labels, types, and formats.
361
+ - `POST /v1/page`
362
+ - Paged data retrieval. Supports `sortBy`, `filterExpr` (ephemeral), and `sessionId`.
363
+ - `POST /v1/arrow`
364
+ - Returns a binary Arrow IPC stream (same input as `/v1/page`).
365
+ - `POST /v1/views`
366
+ - Create a long-lived filtered view. Returns a `viewId`. Requires `sessionId`.
367
+ - `POST /v1/views/<viewId>/page`
368
+ - Paged retrieval from a previously created view. Supports `sortBy` and `sessionId`.
369
+ - `POST /v1/views/:viewId/arrow`
370
+ - Returns a binary Arrow IPC stream from a filtered view.
371
+ - `DELETE /v1/views/:viewId`
372
+ - Deletes a view handle.
373
+ - `POST /v1/filters/validate`
374
+ - Validates a filter expression.
375
+
376
+ ### Paging request example
377
+
378
+ ```bash
379
+ curl -sS \
380
+ -H "Authorization: Bearer $TOKEN" \
381
+ -H "Content-Type: application/json" \
382
+ -d '{"datasetId":"...","frame":"default","offset":0,"limit":50,"vars":["price","mpg"],"includeObsNo":true,"maxChars":200}' \
383
+ "$BASE_URL/v1/page"
384
+ ```
385
+
386
+ #### Sorting
387
+
388
+ The `/v1/page` and `/v1/views/:viewId/page` endpoints support sorting via the optional `sortBy` parameter:
389
+
390
+ ```bash
391
+ # Sort by price ascending
392
+ curl -sS \
393
+ -H "Authorization: Bearer $TOKEN" \
394
+ -H "Content-Type: application/json" \
395
+ -d '{"datasetId":"...","offset":0,"limit":50,"vars":["price","mpg"],"sortBy":["price"]}' \
396
+ "$BASE_URL/v1/page"
397
+
398
+ # Sort by price descending
399
+ curl -sS \
400
+ -H "Authorization: Bearer $TOKEN" \
401
+ -H "Content-Type: application/json" \
402
+ -d '{"datasetId":"...","offset":0,"limit":50,"vars":["price","mpg"],"sortBy":["-price"]}' \
403
+ "$BASE_URL/v1/page"
404
+
405
+ # Multi-variable sort: foreign ascending, then price descending
406
+ curl -sS \
407
+ -H "Authorization: Bearer $TOKEN" \
408
+ -H "Content-Type: application/json" \
409
+ -d '{"datasetId":"...","offset":0,"limit":50,"vars":["foreign","price","mpg"],"sortBy":["foreign","-price"]}' \
410
+ "$BASE_URL/v1/page"
411
+ ```
412
+
413
+ **Sort specification format:**
414
+ - `sortBy` is an array of strings (variable names with optional prefix)
415
+ - No prefix or `+` prefix = ascending order (e.g., `"price"` or `"+price"`)
416
+ - `-` prefix = descending order (e.g., `"-price"`)
417
+ - Multiple variables are supported for multi-level sorting
418
+ - Uses the native Rust sorter when available, with a Polars fallback
419
+
420
+ **Sorting with filtered views:**
421
+ - Sorting is fully supported with filtered views
422
+ - The sort is computed in-memory over the sort columns, then filtered indices are re-applied
423
+ - Example: Filter for `price < 5000`, then sort descending by price
424
+
425
+ ```bash
426
+ # Create a filtered view
427
+ curl -sS \
428
+ -H "Authorization: Bearer $TOKEN" \
429
+ -H "Content-Type: application/json" \
430
+ -d '{"datasetId":"...","frame":"default","filterExpr":"price < 5000"}' \
431
+ "$BASE_URL/v1/views"
432
+ # Returns: {"view": {"id": "view_abc123", "filteredN": 37}}
433
+
434
+ # Get sorted page from filtered view
435
+ curl -sS \
436
+ -H "Authorization: Bearer $TOKEN" \
437
+ -H "Content-Type: application/json" \
438
+ -d '{"offset":0,"limit":50,"vars":["price","mpg"],"sortBy":["-price"]}' \
439
+ "$BASE_URL/v1/views/view_abc123/page"
440
+ ```
441
+
442
+ Notes:
443
+
444
+ - `datasetId` is used for cache invalidation. If the dataset changes due to running Stata commands, the server will report a new dataset id and view handles become invalid.
445
+ - Filter expressions are evaluated in Python using values read from Stata via `sfi.Data.get`. Use boolean operators like `==`, `!=`, `<`, `>`, and `and`/`or` (Stata-style `&`/`|` are also accepted).
446
+ - Sorting does **not** mutate the dataset order in Stata; it computes sorted indices for the response and caches them for subsequent requests.
447
+ - The Rust sorter is the primary implementation; Polars is used only as a fallback when the native extension is unavailable.
448
+
449
+ ## License
450
+
451
+ This project is licensed under the GNU Affero General Public License v3.0 or later.
452
+ See the LICENSE file for the full text.
453
+
454
+ ## Error reporting
455
+
456
+ - All tools that execute Stata commands support JSON envelopes (`as_json=true`) carrying:
457
+ - `rc` (from r()/c(rc)), `stdout`, `stderr`, `message`, optional `line` (when Stata reports it), `command`, optional `log_path` (for log-file streaming), and a `snippet` excerpt of error output.
458
+ - Stata-specific cues are preserved:
459
+ - `r(XXX)` codes are parsed when present in output.
460
+ - “Red text” is captured via stderr where available.
461
+ - `trace=true` adds `set trace on` around the command/do-file to surface program-defined errors; the trace is turned off afterward.
462
+
463
+ ## Logging
464
+
465
+ Set `MCP_STATA_LOGLEVEL` (e.g., `DEBUG`, `INFO`) to control server logging. Logs include discovery details (edition/path) and command-init traces for easier troubleshooting.
466
+
467
+ ## Development & Contributing
468
+
469
+ For detailed information on building, testing, and contributing to this project, see [CONTRIBUTING.md](CONTRIBUTING.md).
470
+
471
+ Quick setup:
472
+
473
+ ```bash
474
+ # Install dependencies
475
+ uv sync --extra dev --no-install-project
476
+
477
+ # Run tests (requires Stata)
478
+ pytest
479
+
480
+ # Run tests without Stata
481
+ pytest -v -m "not requires_stata"
482
+
483
+ # Build the package
484
+ python -m build
485
+ ```
486
+
487
+ [![MCP Badge](https://lobehub.com/badge/mcp/tmonk-mcp-stata)](https://lobehub.com/mcp/tmonk-mcp-stata)
488
+ [![Tests](https://github.com/tmonk/mcp-stata/actions/workflows/build-test.yml/badge.svg)](https://github.com/tmonk/mcp-stata/actions/workflows/build-test.yml)
@@ -0,0 +1,22 @@
1
+ mcp_stata/__init__.py,sha256=0Tn_oUmwc1sIuYg-QlNSxnkabCtuRE5fEimkxHAB2gU,65
2
+ mcp_stata/__main__.py,sha256=oNIGZ_NlJ2fPnARXuF5lAbVGCjNTJWkebcaBYnFSIcY,73
3
+ mcp_stata/_native_ops.abi3.so,sha256=kZ7fBpjXAkOWXWlPlhex1EfWQnxEoqtjT4E1-Z9vO6Y,2185556
4
+ mcp_stata/config.py,sha256=SfXltpwO_gROABca1sm0xXDhaeRmlRfQmXcnBiG4GYk,714
5
+ mcp_stata/discovery.py,sha256=E-k7tSM6Jqm_Y6QehY1RKnB-9qGhaW2UE9EU7B8HH9w,20624
6
+ mcp_stata/graph_detector.py,sha256=CsDJtMquLtMpzox8hsgS2BiOG_y6hIFxgtqrm9vGOP0,26602
7
+ mcp_stata/models.py,sha256=9xQCn5sADBG-Mrbq38UNtgR5ZM5EmF5iNtruSccUpU8,1522
8
+ mcp_stata/native_ops.py,sha256=KtHR_5iX1VPm1eOwnfdaAWED5PXe2blzbsZLoh7VnXk,2175
9
+ mcp_stata/server.py,sha256=Lo5OmPxeQDEHfCBRdXI5_SBPN_ljqcPgHF1Zv2mfIvI,49749
10
+ mcp_stata/sessions.py,sha256=RMjOrkeAQ7x9vuHikXnI6Mkxm2LxW32mkFi9q-xTexs,10775
11
+ mcp_stata/smcl/smcl2html.py,sha256=nrZIzmSSWD9AuDQHXJ80A0v1f8fkR7gbl4nCy_BHRIg,3005
12
+ mcp_stata/stata_client.py,sha256=-Sdkwe0mTlxHEsvywluswJc814J37PwTLPC2bH-_Kxc,199171
13
+ mcp_stata/streaming_io.py,sha256=jWxEJ5v47Nzu0R-QUB69VvJWijj6X89J6uxf32Jt_mg,7122
14
+ mcp_stata/test_stata.py,sha256=V2nMuRGeP-EH2Oi5A9J9kNxpJbjcJFEJrM7a_vrjL-M,1674
15
+ mcp_stata/ui_http.py,sha256=TKuVIqkxWtvgK97hcziMqgxaM7gIDup4qnj8fcAZSAM,42356
16
+ mcp_stata/utils.py,sha256=QzzAlOm7eOWyAssmUmXlMe4iiRQLGA0zNuURoooKOJc,6010
17
+ mcp_stata/worker.py,sha256=SSequaczEZONFS4RR-nhLDfp0bQDWeTKyNCW-6k9-eI,7287
18
+ mcp_stata-1.22.1.dist-info/METADATA,sha256=XO2XwnCIkMHEG2vaPhtDG2xIHStUh8oDptkohnJcKHI,18139
19
+ mcp_stata-1.22.1.dist-info/WHEEL,sha256=rp92_XYld3-cM4thpFCRO3EaVBMRsHC0zLiWsT1hH4Y,105
20
+ mcp_stata-1.22.1.dist-info/entry_points.txt,sha256=veUG0YD5rR8Kghyf39JasKMu3-XKptiXIwrQg1Xd2Es,50
21
+ mcp_stata-1.22.1.dist-info/licenses/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
22
+ mcp_stata-1.22.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.11.5)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-abi3-macosx_11_0_x86_64
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mcp-stata=mcp_stata.server:main