mcp-stata 1.20.0__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.

Potentially problematic release.


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

@@ -0,0 +1,472 @@
1
+ Metadata-Version: 2.4
2
+ Name: mcp-stata
3
+ Version: 1.20.0
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: python-semantic-release>=9.8.0 ; extra == 'dev'
30
+ Requires-Dist: maturin>=1.11.5 ; extra == 'dev'
31
+ Provides-Extra: dev
32
+ License-File: LICENSE
33
+ 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.
34
+ Keywords: mcp,stata,statistics,econometrics,ai,llm
35
+ Author-email: Thomas Monk <t.d.monk@lse.ac.uk>
36
+ License-Expression: AGPL-3.0-or-later
37
+ Requires-Python: >=3.11
38
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
39
+ Project-URL: Homepage, https://github.com/tmonk/mcp-stata
40
+ Project-URL: Issues, https://github.com/tmonk/mcp-stata/issues
41
+ Project-URL: Repository, https://github.com/tmonk/mcp-stata
42
+
43
+ # Stata MCP Server
44
+
45
+ <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;
46
+ <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>
47
+
48
+ A [Model Context Protocol](https://github.com/modelcontextprotocol) (MCP) server that connects AI agents to a local Stata installation.
49
+
50
+ > 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/).
51
+
52
+ Built by <a href="https://tdmonk.com">Thomas Monk</a>, London School of Economics.
53
+ <!-- mcp-name: io.github.tmonk/mcp-stata -->
54
+
55
+ This server enables LLMs to:
56
+ - **Execute Stata code**: run any Stata command (e.g. `sysuse auto`, `regress price mpg`).
57
+ - **Inspect data**: retrieve dataset summaries and variable codebooks.
58
+ - **Export graphics**: generate and view Stata graphs (histograms, scatterplots).
59
+ - **Streaming graph caching**: automatically cache graphs during command execution for instant exports.
60
+ - **Verify results**: programmatically check stored results (`r()`, `e()`) for accurate validation.
61
+
62
+ ## Prerequisites
63
+
64
+ - **Stata 17+** (required for `pystata` integration)
65
+ - **Python 3.11+** (required)
66
+ - **uv** (recommended for install/run)
67
+
68
+ ## Installation
69
+
70
+ ### Run as a published tool with `uvx`
71
+
72
+ ```bash
73
+ uvx --refresh --refresh-package mcp-stata --from mcp-stata@latest mcp-stata
74
+ ```
75
+
76
+ `uvx` is an alias for `uv tool run` and runs the tool in an isolated, cached environment.
77
+
78
+ ## Configuration
79
+
80
+ This server attempts to automatically discover your Stata installation (supporting standard paths and StataNow).
81
+
82
+ If auto-discovery fails, set the `STATA_PATH` environment variable to your Stata executable:
83
+
84
+ ```bash
85
+ # macOS example
86
+ export STATA_PATH="/Applications/StataNow/StataMP.app/Contents/MacOS/stata-mp"
87
+
88
+ # Windows example (cmd.exe)
89
+ set STATA_PATH="C:\Program Files\Stata18\StataMP-64.exe"
90
+ ```
91
+
92
+ If you prefer, add `STATA_PATH` to your MCP config's `env` for any IDE shown below. It's optional and only needed when discovery cannot find Stata.
93
+
94
+ Optional `env` example (add inside your MCP server entry):
95
+
96
+ ```json
97
+ "env": {
98
+ "STATA_PATH": "/Applications/StataNow/StataMP.app/Contents/MacOS/stata-mp"
99
+ }
100
+ ```
101
+
102
+ ## IDE Setup (MCP)
103
+
104
+ This MCP server uses the **stdio** transport (the IDE launches the process and communicates over stdin/stdout).
105
+
106
+ ---
107
+
108
+ ### Claude Desktop
109
+
110
+ Open Claude Desktop → **Settings** → **Developer** → **Edit Config**.
111
+ Config file locations include:
112
+
113
+ * macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
114
+ * Windows: `%APPDATA%\Claude\claude_desktop_config.json`
115
+
116
+ #### Published tool (uvx)
117
+
118
+ ```json
119
+ {
120
+ "mcpServers": {
121
+ "mcp-stata": {
122
+ "command": "uvx",
123
+ "args": [
124
+ "--refresh",
125
+ "--refresh-package",
126
+ "mcp-stata",
127
+ "--from",
128
+ "mcp-stata@latest",
129
+ "mcp-stata"
130
+ ]
131
+ }
132
+ }
133
+ }
134
+ ```
135
+
136
+ After editing, fully quit and restart Claude Desktop to reload MCP servers.
137
+
138
+ ---
139
+
140
+ ### Cursor
141
+
142
+ Cursor supports MCP config at:
143
+
144
+ * Global: `~/.cursor/mcp.json`
145
+ * Project: `.cursor/mcp.json`
146
+
147
+ #### Published tool (uvx)
148
+
149
+ ```json
150
+ {
151
+ "mcpServers": {
152
+ "mcp-stata": {
153
+ "command": "uvx",
154
+ "args": [
155
+ "--refresh",
156
+ "--refresh-package",
157
+ "mcp-stata",
158
+ "--from",
159
+ "mcp-stata@latest",
160
+ "mcp-stata"
161
+ ]
162
+ }
163
+ }
164
+ }
165
+ ```
166
+
167
+ ---
168
+
169
+ ### Windsurf
170
+
171
+ 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.
172
+
173
+ A common location is `~/.codeium/windsurf/mcp_config.json`.
174
+ #### Published tool (uvx)
175
+
176
+ ```json
177
+ {
178
+ "mcpServers": {
179
+ "mcp-stata": {
180
+ "command": "uvx",
181
+ "args": [
182
+ "--refresh",
183
+ "--refresh-package",
184
+ "mcp-stata",
185
+ "--from",
186
+ "mcp-stata@latest",
187
+ "mcp-stata"
188
+ ]
189
+ }
190
+ }
191
+ }
192
+ ```
193
+
194
+ ---
195
+
196
+ ### Google Antigravity
197
+
198
+ 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`.
199
+
200
+ #### Published tool (uvx)
201
+
202
+ ```json
203
+ {
204
+ "mcpServers": {
205
+ "mcp-stata": {
206
+ "command": "uvx",
207
+ "args": [
208
+ "--refresh",
209
+ "--refresh-package",
210
+ "mcp-stata",
211
+ "--from",
212
+ "mcp-stata@latest",
213
+ "mcp-stata"
214
+ ]
215
+ }
216
+ }
217
+ }
218
+ ```
219
+
220
+ ---
221
+
222
+ ### Visual Studio Code
223
+
224
+ VS Code supports MCP servers via a `.vscode/mcp.json` file. The top-level key is **`servers`** (not `mcpServers`).
225
+
226
+ Create `.vscode/mcp.json`:
227
+
228
+ #### Published tool (uvx)
229
+
230
+ ```json
231
+ {
232
+ "servers": {
233
+ "mcp-stata": {
234
+ "type": "stdio",
235
+ "command": "uvx",
236
+ "args": [
237
+ "--refresh",
238
+ "--refresh-package",
239
+ "mcp-stata",
240
+ "--from",
241
+ "mcp-stata@latest",
242
+ "mcp-stata"
243
+ ]
244
+ }
245
+ }
246
+ }
247
+ ```
248
+
249
+ VS Code documents `.vscode/mcp.json` and the `servers` schema, including `type` and `command`/`args`.
250
+
251
+ ---
252
+
253
+ ## Skills
254
+
255
+ - Skill file (for Claude/Codex): [skill/SKILL.md](skill/SKILL.md)
256
+
257
+ ## Tools Available (from server.py)
258
+
259
+ * `run_command(code, echo=True, as_json=True, trace=False, raw=False, max_output_lines=None)`: Execute Stata syntax.
260
+ - 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.
261
+ - May emit `notifications/progress` when the client provides a progress token/callback.
262
+ * `read_log(path, offset=0, max_bytes=65536)`: Read a slice of a previously-provided log file (JSON: `path`, `offset`, `next_offset`, `data`).
263
+ * `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.
264
+ - Returns JSON with `matches` (context lines, line indices), `next_offset`, and `truncated` if `max_matches` is hit.
265
+ - Supports literal or regex search with bounded read window for large logs.
266
+ * `load_data(source, clear=True, as_json=True, raw=False, max_output_lines=None)`: Heuristic loader (sysuse/webuse/use/path/URL) with JSON envelope unless `raw=True`. Supports output truncation.
267
+ * `get_data(start=0, count=50)`: View dataset rows (JSON response, capped to 500 rows).
268
+ * `get_ui_channel()`: Return a short-lived localhost HTTP endpoint + bearer token for the UI-only data browser.
269
+ * `describe()`: View dataset structure via Stata `describe`.
270
+ * `list_graphs()`: See available graphs in memory (JSON list with an `active` flag).
271
+ * `export_graph(graph_name=None, format="pdf")`: Export a graph to a file path (default PDF; use `format="png"` for PNG).
272
+ * `export_graphs_all()`: Export all in-memory graphs. Returns file paths.
273
+ * `get_help(topic, plain_text=False)`: Markdown-rendered Stata help by default; `plain_text=True` strips formatting.
274
+ * `codebook(variable, as_json=True, trace=False, raw=False, max_output_lines=None)`: Variable-level metadata (JSON envelope by default; supports `trace=True` and output truncation).
275
+ * `run_do_file(path, echo=True, as_json=True, trace=False, raw=False, max_output_lines=None)`: Execute a .do file.
276
+ - 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.
277
+ - Emits incremental `notifications/progress` when the client provides a progress token/callback.
278
+ * `get_stored_results()`: Get `r()` and `e()` scalars/macros as JSON.
279
+ * `get_variable_list()`: JSON list of variables and labels.
280
+
281
+ ### Cancellation
282
+
283
+ - Clients may cancel an in-flight request by sending the MCP notification `notifications/cancelled` with `params.requestId` set to the original tool call ID.
284
+ - Client guidance:
285
+ 1. Pass a `_meta.progressToken` when invoking the tool if you want progress updates (optional).
286
+ 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).
287
+ 3. Be prepared for partial output in the log file; cancellation is best-effort and depends on Stata surfacing `BreakError`.
288
+
289
+ Resources exposed for MCP clients:
290
+
291
+ * `stata://data/summary` → `summarize`
292
+ * `stata://data/metadata` → `describe`
293
+ * `stata://graphs/list` → graph list (resource handler delegates to `list_graphs` tool)
294
+ * `stata://variables/list` → variable list (resource wrapper)
295
+ * `stata://results/stored` → stored r()/e() results
296
+
297
+ ## UI-only Data Browser (Local HTTP API)
298
+
299
+ 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.
300
+
301
+ Important properties:
302
+
303
+ - **Loopback only**: binds to `127.0.0.1`.
304
+ - **Bearer auth**: every request requires an `Authorization: Bearer <token>` header.
305
+ - **Short-lived tokens**: clients should call `get_ui_channel()` to obtain a fresh token as needed.
306
+ - **No Stata dataset mutation** for browsing/filtering:
307
+ - No generated variables.
308
+ - Paging uses `sfi.Data.get`.
309
+ - Filtering is evaluated in Python over chunked reads.
310
+
311
+ ### Discovery via MCP (`get_ui_channel`)
312
+
313
+ Call the MCP tool `get_ui_channel()` and parse the JSON:
314
+
315
+ ```json
316
+ {
317
+ "baseUrl": "http://127.0.0.1:53741",
318
+ "token": "...",
319
+ "expiresAt": 1730000000,
320
+ "capabilities": {
321
+ "dataBrowser": true,
322
+ "filtering": true,
323
+ "sorting": true,
324
+ "arrowStream": true
325
+ }
326
+ }
327
+ ```
328
+
329
+ Server-enforced limits (current defaults):
330
+
331
+ - **maxLimit**: 500
332
+ - **maxVars**: 32,767
333
+ - **maxChars**: 500
334
+ - **maxRequestBytes**: 1,000,000
335
+ - **maxArrowLimit**: 1,000,000 (specific to `/v1/arrow`)
336
+
337
+ ### Endpoints
338
+
339
+ All endpoints are under `baseUrl` and require the bearer token.
340
+
341
+ - `GET /v1/dataset`
342
+ - Returns dataset identity and basic state (`id`, `frame`, `n`, `k`).
343
+ - `GET /v1/vars`
344
+ - Returns variable metadata (`name`, `type`, `label`, `format`).
345
+ - `POST /v1/page`
346
+ - Returns a page of data for selected variables.
347
+ - `POST /v1/arrow`
348
+ - Returns a binary Arrow IPC stream (same input as `/v1/page`).
349
+ - `POST /v1/views`
350
+ - Creates a server-side filtered view (handle-based filtering).
351
+ - `POST /v1/views/:viewId/page`
352
+ - Pages within a filtered view.
353
+ - `POST /v1/views/:viewId/arrow`
354
+ - Returns a binary Arrow IPC stream from a filtered view.
355
+ - `DELETE /v1/views/:viewId`
356
+ - Deletes a view handle.
357
+ - `POST /v1/filters/validate`
358
+ - Validates a filter expression.
359
+
360
+ ### Paging request example
361
+
362
+ ```bash
363
+ curl -sS \
364
+ -H "Authorization: Bearer $TOKEN" \
365
+ -H "Content-Type: application/json" \
366
+ -d '{"datasetId":"...","frame":"default","offset":0,"limit":50,"vars":["price","mpg"],"includeObsNo":true,"maxChars":200}' \
367
+ "$BASE_URL/v1/page"
368
+ ```
369
+
370
+ #### Sorting
371
+
372
+ The `/v1/page` and `/v1/views/:viewId/page` endpoints support sorting via the optional `sortBy` parameter:
373
+
374
+ ```bash
375
+ # Sort by price ascending
376
+ curl -sS \
377
+ -H "Authorization: Bearer $TOKEN" \
378
+ -H "Content-Type: application/json" \
379
+ -d '{"datasetId":"...","offset":0,"limit":50,"vars":["price","mpg"],"sortBy":["price"]}' \
380
+ "$BASE_URL/v1/page"
381
+
382
+ # Sort by price descending
383
+ curl -sS \
384
+ -H "Authorization: Bearer $TOKEN" \
385
+ -H "Content-Type: application/json" \
386
+ -d '{"datasetId":"...","offset":0,"limit":50,"vars":["price","mpg"],"sortBy":["-price"]}' \
387
+ "$BASE_URL/v1/page"
388
+
389
+ # Multi-variable sort: foreign ascending, then price descending
390
+ curl -sS \
391
+ -H "Authorization: Bearer $TOKEN" \
392
+ -H "Content-Type: application/json" \
393
+ -d '{"datasetId":"...","offset":0,"limit":50,"vars":["foreign","price","mpg"],"sortBy":["foreign","-price"]}' \
394
+ "$BASE_URL/v1/page"
395
+ ```
396
+
397
+ **Sort specification format:**
398
+ - `sortBy` is an array of strings (variable names with optional prefix)
399
+ - No prefix or `+` prefix = ascending order (e.g., `"price"` or `"+price"`)
400
+ - `-` prefix = descending order (e.g., `"-price"`)
401
+ - Multiple variables are supported for multi-level sorting
402
+ - Uses the native Rust sorter when available, with a Polars fallback
403
+
404
+ **Sorting with filtered views:**
405
+ - Sorting is fully supported with filtered views
406
+ - The sort is computed in-memory over the sort columns, then filtered indices are re-applied
407
+ - Example: Filter for `price < 5000`, then sort descending by price
408
+
409
+ ```bash
410
+ # Create a filtered view
411
+ curl -sS \
412
+ -H "Authorization: Bearer $TOKEN" \
413
+ -H "Content-Type: application/json" \
414
+ -d '{"datasetId":"...","frame":"default","filterExpr":"price < 5000"}' \
415
+ "$BASE_URL/v1/views"
416
+ # Returns: {"view": {"id": "view_abc123", "filteredN": 37}}
417
+
418
+ # Get sorted page from filtered view
419
+ curl -sS \
420
+ -H "Authorization: Bearer $TOKEN" \
421
+ -H "Content-Type: application/json" \
422
+ -d '{"offset":0,"limit":50,"vars":["price","mpg"],"sortBy":["-price"]}' \
423
+ "$BASE_URL/v1/views/view_abc123/page"
424
+ ```
425
+
426
+ Notes:
427
+
428
+ - `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.
429
+ - 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).
430
+ - Sorting does **not** mutate the dataset order in Stata; it computes sorted indices for the response and caches them for subsequent requests.
431
+ - The Rust sorter is the primary implementation; Polars is used only as a fallback when the native extension is unavailable.
432
+
433
+ ## License
434
+
435
+ This project is licensed under the GNU Affero General Public License v3.0 or later.
436
+ See the LICENSE file for the full text.
437
+
438
+ ## Error reporting
439
+
440
+ - All tools that execute Stata commands support JSON envelopes (`as_json=true`) carrying:
441
+ - `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.
442
+ - Stata-specific cues are preserved:
443
+ - `r(XXX)` codes are parsed when present in output.
444
+ - “Red text” is captured via stderr where available.
445
+ - `trace=true` adds `set trace on` around the command/do-file to surface program-defined errors; the trace is turned off afterward.
446
+
447
+ ## Logging
448
+
449
+ 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.
450
+
451
+ ## Development & Contributing
452
+
453
+ For detailed information on building, testing, and contributing to this project, see [CONTRIBUTING.md](CONTRIBUTING.md).
454
+
455
+ Quick setup:
456
+
457
+ ```bash
458
+ # Install dependencies
459
+ uv sync --extra dev --no-install-project
460
+
461
+ # Run tests (requires Stata)
462
+ pytest
463
+
464
+ # Run tests without Stata
465
+ pytest -v -m "not requires_stata"
466
+
467
+ # Build the package
468
+ python -m build
469
+ ```
470
+
471
+ [![MCP Badge](https://lobehub.com/badge/mcp/tmonk-mcp-stata)](https://lobehub.com/mcp/tmonk-mcp-stata)
472
+ [![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,19 @@
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=AUtmrRPO8CDdStOxP_OvGyHJFHdKiPsudrshG_z0WEw,2185556
4
+ mcp_stata/config.py,sha256=SfXltpwO_gROABca1sm0xXDhaeRmlRfQmXcnBiG4GYk,714
5
+ mcp_stata/discovery.py,sha256=JVcyUo0myZqB6knriU9XeEhZzM-WsiLR-uAbQdGtAow,20590
6
+ mcp_stata/graph_detector.py,sha256=vqHz8jmjJp8YZJBaKCEtvW2ZjktNtQrBvAFEbGlFQ0c,21191
7
+ mcp_stata/models.py,sha256=4ZqJrVrbWtBjSTCv283ljj7Q5unObkmQUZQPLiSIRkA,1307
8
+ mcp_stata/native_ops.py,sha256=m9wOB4qVbfWKM629XuJI6KmP0cQw_EfbuQAUrVxW1Dk,2221
9
+ mcp_stata/server.py,sha256=FVgkePWQvdrfb3S8OPD9xZ99BlQOAzhKzD0M3EJ2ANo,41273
10
+ mcp_stata/smcl/smcl2html.py,sha256=nrZIzmSSWD9AuDQHXJ80A0v1f8fkR7gbl4nCy_BHRIg,3005
11
+ mcp_stata/stata_client.py,sha256=dNGsRUwU2UrpVhRUdPEVQH2vxwUOdDr3jzhih-FnoaI,150044
12
+ mcp_stata/streaming_io.py,sha256=jWxEJ5v47Nzu0R-QUB69VvJWijj6X89J6uxf32Jt_mg,7122
13
+ mcp_stata/test_stata.py,sha256=HF_P4IjvLGlihXggbt79MZZB6PbuYHpKI3S0R2dgCeE,1512
14
+ mcp_stata/ui_http.py,sha256=3pY9ztlAKJaxPe6F2bzq9siqfOafislSd1-Jo7LajUA,39866
15
+ mcp_stata-1.20.0.dist-info/METADATA,sha256=TgS-_lWkcrjE0mHmoUyqFASuRizyiR6GlkHdFWYDUgc,17367
16
+ mcp_stata-1.20.0.dist-info/WHEEL,sha256=rp92_XYld3-cM4thpFCRO3EaVBMRsHC0zLiWsT1hH4Y,105
17
+ mcp_stata-1.20.0.dist-info/entry_points.txt,sha256=veUG0YD5rR8Kghyf39JasKMu3-XKptiXIwrQg1Xd2Es,50
18
+ mcp_stata-1.20.0.dist-info/licenses/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
19
+ mcp_stata-1.20.0.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