Stata MCP Server
Supported as a platform for running the Stata MCP extension, enabling cross-platform functionality
Supported as a platform for running the Stata MCP extension, with specific configuration paths for MCP integration
Required as a dependency for the MCP server, but not directly integrated as a service
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Stata MCP Serverrun summary statistics on the auto dataset"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Stata MCP Extension for VS Code, Cursor, and Antigravity
This extension provides Stata integration for Visual Studio Code, Cursor, and Antigravity IDE using the Model Context Protocol (MCP). It enables AI-powered Stata development with GitHub Copilot, Cursor, Antigravity, Cline, Claude Code, or Codex.
Features
Run Stata Commands: Execute selections or entire .do files directly from your editor
Real-time Output: See Stata results instantly in your editor
Syntax Highlighting: Full syntax support for Stata .do, .ado, .mata, and .doh files
AI Assistant Integration: Contextual help and code suggestions via MCP
Cross-platform: Works on Windows, macOS, and Linux
Multi-Session Parallel Execution: Run multiple Stata sessions simultaneously with AI coding tools
Related MCP server: AI Development Assistant MCP Server
Demo
Watch how this extension enhances your Stata workflow with Cursor (or VS Code/Antigravity) and AI assistance:

π¬ Full Video Version Β Β |Β Β π View Generated PDF Report
Demo prompt: "Write and execute Stata do-files, ensuring that full absolute file paths are used in all cases. Load the auto dataset (webuse auto) and generate summary statistics for each variable. Identify and extract key features from the dataset, produce relevant plots, and save them in a folder named plots. Conduct a regression analysis to examine the main determinants of car prices. Export all outputs to a LaTeX file and compile it. Address any compilation errors automatically, and ensure that LaTeX compilation does not exceed 10 seconds. All code errors should be identified and resolved as part of the workflow."
Requirements
Stata 17 or higher installed on your machine
UV package manager (automatically installed or can be installed manually if needed)
Installation
Note: Initial installation requires setting up dependencies which may take up to 2 minutes to complete. Please be patient during this one-time setup process. All subsequent runs will start instantly.
Open VS Code, Cursor, or Antigravity
Open the Extensions view (
Ctrl+Shift+X/Cmd+Shift+X)Search for "Stata MCP"
Click Install
That's it β the extension auto-starts the MCP server and appears in the status bar as "Stata".
From the command line
# VS Code
code --install-extension DeepEcon.stata-mcp
# Cursor
cursor --install-extension DeepEcon.stata-mcp
# Antigravity (installs from Open VSX Registry)
antigravity --install-extension DeepEcon.stata-mcpFrom a local .vsix file
Download stata-mcp-<version>.vsix from the releases page, then either:
code --install-extension path/to/stata-mcp-0.5.2.vsix
cursor --install-extension path/to/stata-mcp-0.5.2.vsix
antigravity --install-extension path/to/stata-mcp-0.5.2.vsixβ¦or in the UI: Extensions view β β¦ menu β Install from VSIXβ¦ β pick the downloaded file.
Registries
VS Code Marketplace: https://marketplace.visualstudio.com/items?itemName=DeepEcon.stata-mcp
Open VSX (Cursor / Antigravity): https://open-vsx.org/extension/DeepEcon/stata-mcp
Starting with version 0.1.8, the extension integrates a fast Python package installer called uv to set up the environment. If uv is not found on your system, the extension will attempt to install it automatically.
β‘ Connect Your AI Assistant
Once the extension is running (status bar shows "Stata"), the local MCP server is listening on:
http://localhost:4000/mcp-streamableβ Streamable HTTP (preferred for modern clients)http://localhost:4000/mcpβ SSE (legacy fallback)
Quick health check: curl -s http://localhost:4000/health should print {"status":"ok",...}.
π One-prompt setup
Paste the block below into any MCP-aware assistant β Claude Code, OpenAI Codex, Cursor AI, Copilot Chat, etc. Hover the box on GitHub and click the copy icon in the top-right corner.
Set up the Stata MCP server for me. Endpoint: http://localhost:4000/mcp-streamable β setup guide: https://github.com/hanlulong/stata-mcp#detailed-configurations β if I already have a stata-mcp entry in my MCP config (e.g. using mcp-proxy), replace it rather than appending. When registration succeeds, tell me to restart the client so the stata_run_selection tool becomes available.The assistant reads the guide, detects which client it is, writes the right config (or runs the right CLI command), and tells you to restart. The stata_run_selection tool becomes visible after the restart β MCP tool lists do not refresh mid-session.
Prefer manual setup? Expand Detailed Configurations below for per-client instructions.
Usage
Running Stata Code
Open a Stata .do file
Run commands using:
Run Selection: Select Stata code and press
Ctrl+Shift+Enter(orCmd+Shift+Enteron Mac), or click the play button in the editor toolbarRun File: Press
Ctrl+Shift+D(orCmd+Shift+Don Mac) to run the entire .do file, or click the run-all button in the toolbarStop Execution: Press
Ctrl+Shift+C(orCmd+Shift+Con Mac) to stop a running commandRestart Session: Click the restart button in the editor toolbar or use the Command Palette ("Stata: Restart Session") to reset the Stata session. This clears all in-memory data, globals, and programs β equivalent to closing and reopening Stata
Interactive Mode: Click the graph button in the editor toolbar to run code in an interactive browser window
View output in the Stata Output panel
Note for Cursor/Antigravity Users: Toolbar buttons may be hidden by default. To show them:
Click the ... (three dots) menu in the editor title bar
Select "Configure Icon Visibility"
Enable the Stata buttons you want to see (Run Selection, Run File, Stop, View Data, Restart Session, Interactive)
Data Viewer
Access the data viewer to inspect your Stata dataset:
Click the View Data button (fourth button, table icon) in the editor toolbar
View your current dataset in a table format
Filter data: Use Stata
ifconditions to view subsets of your dataExample:
price > 5000 & mpg < 30Type your condition in the filter box and click "Apply"
Click "Clear" to remove the filter and view all data
Graph Display Options
Control how graphs are displayed:
Auto-display graphs: Graphs are automatically shown when generated (default: enabled)
Disable in Extension Settings:
stata-vscode.autoDisplayGraphs
Choose display method:
VS Code webview (default): Graphs appear in a panel within VS Code
External browser: Graphs open in your default web browser
Change in Extension Settings:
stata-vscode.graphDisplayMethod
Detailed Configurations
Customize the extension behavior through VS Code settings. Access these settings via:
VS Code/Cursor/Antigravity: File > Preferences > Settings (or
Ctrl+,/Cmd+,)Search for "Stata MCP" to find all extension settings
Core Settings
Setting | Description | Default |
| Path to Stata installation directory | Auto-detected |
| Stata edition to use (MP, SE, BE) |
|
| Automatically start MCP server when extension activates |
|
Server Settings
Setting | Description | Default |
| Host for MCP server |
|
| Port for the MCP server |
|
| Force the specified port even if it's already in use |
|
Graph Settings
Setting | Description | Default |
| Automatically display graphs when generated by Stata commands |
|
| Choose how to display graphs: |
|
Log File Settings
Setting | Description | Default |
| Location for Stata log files: |
|
| Custom directory for Stata log files (only used when logFileLocation is set to | Empty |
Advanced Settings
Setting | Description | Default |
| Timeout in seconds for 'Run File' operations |
|
| Timeout in seconds for 'Run Selection' and interactive window commands |
|
| Show detailed debug information in output panel |
|
Working Directory Settings
Control which directory Stata uses when running .do files:
Setting | Description | Default |
| Working directory when running .do files: |
|
| Custom working directory path (only used when workingDirectory is set to | Empty |
Example: If your project structure is project/code/analysis.do and your do-file expects to run from project/, set workingDirectory to parent.
MCP Output Settings
These settings control how Stata output is returned to AI assistants (LLMs) via the MCP protocol, helping to reduce token usage:
Setting | Description | Default |
| Output mode for MCP returns: |
|
| Maximum tokens for MCP output (0 = unlimited). Large outputs are saved to file with a path returned instead |
|
Compact mode filters:
Loop code echoes (foreach/forvalues/while blocks) - keeps actual output only
Program definitions and Mata blocks
Command echoes and line continuations (for
run_fileonly)Verbose messages like "(N real changes made)" and "(N missing values generated)"
Multi-Session Settings
Enable parallel Stata execution with isolated sessions. Each session has its own data, variables, and macros.
Setting | Description | Default |
| Enable multi-session mode for parallel Stata execution |
|
| Maximum number of concurrent sessions (1-100) |
|
| Session idle timeout in seconds. Sessions are automatically destroyed after this period of inactivity |
|
Note: Each session requires ~200-300 MB RAM for Stata. Check your Stata license for concurrent instance limits.
GitHub Copilot supports MCP (Model Context Protocol) starting from VS Code 1.102. You can connect the Stata MCP server to Copilot for AI-powered Stata development.
Configuration
Install the Stata MCP extension in VS Code (see Installation section above)
Start the Stata MCP server: The server should start automatically when you open VS Code with the extension installed. Verify it's running by checking the status bar (should show "Stata").
Add the Stata MCP server to Copilot: You can configure MCP servers either per-workspace or globally.
Option A: Per-Workspace Configuration
Create a
.vscode/mcp.jsonfile in your workspace root:{ "servers": { "stata-mcp": { "type": "http", "url": "http://localhost:4000/mcp-streamable" } } }Option B: Global Configuration (All Workspaces)
Open Command Palette (Ctrl+Shift+P / Cmd+Shift+P)
Type "MCP: Open User Configuration" and select it
Add the Stata MCP server to the
mcp.jsonfile:{ "servers": { "stata-mcp": { "type": "http", "url": "http://localhost:4000/mcp-streamable" } } }
On older VS Code versions without Streamable HTTP support, use
"type": "sse"withhttp://localhost:4000/mcpinstead.The user-level
mcp.jsonfile is located at:Windows:
%APPDATA%\Code\User\mcp.jsonmacOS:
~/Library/Application Support/Code/User/mcp.jsonLinux:
~/.config/Code/User/mcp.json
Reload VS Code to apply the configuration.
GitHub Copilot will now have access to Stata tools and can help you:
Write and execute Stata commands
Analyze your data
Generate visualizations
Debug Stata code
Create statistical reports
Verifying the Connection
Open GitHub Copilot Chat (Ctrl+Shift+I / Cmd+Shift+I)
Type
@mcpto see available MCP toolsThe Stata tools (
stata_run_selection,stata_run_file) should appear
Troubleshooting
If Copilot is not recognizing the Stata MCP server:
Verify VS Code version 1.102 or later
Verify the MCP server is running (Status bar should show "Stata")
Check that
.vscode/mcp.jsonexists with the correct contentTry restarting VS Code
Check the extension output panel (View > Output > Stata MCP) for any errors
Ensure MCP is enabled in your organization's Copilot policy (if applicable)
Claude Code is Anthropic's official AI coding assistant available in VS Code, Cursor, and Antigravity. Follow these steps to configure the Stata MCP server:
Installation
Install the Stata MCP extension in VS Code, Cursor, or Antigravity (see Installation section above)
Start the Stata MCP server: The server should start automatically when you open your IDE with the extension installed. Verify it's running by checking the status bar (should show "Stata").
Configuration
Once the Stata MCP server is running, configure Claude Code to connect to it:
Open your terminal or command palette
Run the following command to add the Stata MCP server:
claude mcp add --transport http stata-mcp http://localhost:4000/mcp-streamable --scope userOlder Claude Code versions (pre-2026) may not recognize
--transport http. On those, use--transport ssewithhttp://localhost:4000/mcpinstead. Claude Code now treats SSE as legacy β preferhttpwhenever it is supported.Restart your IDE
Claude Code will now have access to Stata tools and can help you:
Write and execute Stata commands
Analyze your data
Generate visualizations
Debug Stata code
Create statistical reports
Verifying the Connection
To verify Claude Code is properly connected to the Stata MCP server:
Open a Stata .do file or create a new one
Ask Claude Code to help with a Stata task (e.g., "Load the auto dataset and show summary statistics")
Claude Code should be able to execute Stata commands and show results
Troubleshooting
If Claude Code is not recognizing the Stata MCP server:
Verify the MCP server is running (Status bar should show "Stata")
Check that you ran the
claude mcp addcommand with the correct URLTry restarting your IDE
Check the extension output panel (View > Output > Stata MCP) for any errors
Ensure there are no port conflicts (default port is 4000)
Claude Desktop connects to remote MCP servers like the one this extension exposes. Make sure the Stata MCP extension is installed and its status bar shows "Stata" before configuring Claude Desktop.
Option A (recommended): add as a Custom Connector
Open Claude Desktop β Settings β Connectors β Add custom connector
Name:
Stata MCPURL:
http://localhost:4000/mcp-streamableSave and restart Claude Desktop
No wrapper, no config file editing, no Python/Node install required. This is Anthropic's current recommended way to add remote MCP servers to Claude Desktop.
Option B: JSON config with a stdio wrapper (if you prefer editing claude_desktop_config.json)
Anthropic's JSON config doesn't yet accept remote URLs directly β you still need a local stdio wrapper. The easiest is mcp-remote, which is zero-install if you have Node:
Open the config file:
macOS:
~/Library/Application Support/Claude Desktop/claude_desktop_config.jsonWindows:
%APPDATA%\Claude Desktop\claude_desktop_config.json
Add this block (merge with any existing
mcpServersobject):{ "mcpServers": { "stata-mcp": { "command": "npx", "args": ["-y", "mcp-remote", "http://localhost:4000/mcp-streamable"] } } }Restart Claude Desktop. The Stata tools will appear in the available-tools list.
You can use this extension with OpenAI Codex β the CLI and every IDE extension share the same ~/.codex/config.toml. Codex CLI 0.46.0+ (October 2025) supports MCP servers over HTTP natively, so no wrapper is needed. Either drive it from the command line:
codex mcp add stata-mcp --url http://localhost:4000/mcp-streamableOr append this block manually to ~/.codex/config.toml (or %USERPROFILE%\.codex\config.toml on Windows):
[mcp_servers.stata-mcp]
url = "http://localhost:4000/mcp-streamable"Upgrading from an older setup? If an existing
[mcp_servers.stata-mcp]block usescommand = "mcp-proxy"(orcommand = "uvx"+mcp-proxyin args), delete that block before adding the one above β TOML forbids duplicate keys, and Codex will silently skip the server if both are present.
Then restart Codex β the stata_run_selection and stata_run_file tools will appear. Run codex mcp list to confirm the server is registered.
Note on transports. Codex only speaks MCP's Streamable HTTP transport (single endpoint at
/mcp-streamable). The extension's legacy SSE endpoint (/mcp) is for older clients like GitHub Copilot β don't point Codex at it.
Troubleshooting Codex Configuration
If Codex doesn't see the Stata tools:
Verify the MCP server is running (status bar shows "Stata") β try
curl -s http://localhost:4000/healthCheck
codex --versionβ make sure you're on 0.46.0 or newer. Older Codex versions need themcp-proxywrapper (see note below).Verify the config file exists at
~/.codex/config.tomland contains the exact[mcp_servers.stata-mcp]block aboveRun
codex mcp listβstata-mcpshould appear as registeredRestart Codex (CLI or IDE) after config changes
Check the extension output panel (View β Output β Stata) for any server-side errors
Ensure no port conflict (default is 4000 β change via
stata-vscode.mcpServerPortif needed)
If you cannot upgrade, use mcp-proxy as a stdio wrapper around the SSE endpoint:
# Install uv first if needed:
curl -LsSf https://astral.sh/uv/install.sh | sh # macOS/Linux
# Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex"[mcp_servers.stata-mcp]
command = "uvx"
args = ["mcp-proxy", "http://localhost:4000/mcp"]Open your Cline MCP settings file:
macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonWindows:
%APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonLinux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Add the Stata MCP server configuration:
{ "mcpServers": { "stata-mcp": { "url": "http://localhost:4000/mcp-streamable" } } }Cline auto-detects the transport from the URL β no
transportkey needed. Point it athttp://localhost:4000/mcpif you need SSE for any reason.If the file already contains other MCP servers, just add the
"stata-mcp"entry to the existing"mcpServers"object.Save the file and restart VS Code.
You can also configure Cline through VS Code settings:
"cline.mcpSettings": {
"stata-mcp": {
"url": "http://localhost:4000/mcp-streamable"
}
}Troubleshooting Cline Configuration
If Cline is not recognizing the Stata MCP server:
Verify the MCP server is running (Status bar should show "Stata")
Check that the configuration file exists with the correct content
Try restarting VS Code
Check the extension output panel (View > Output > Stata MCP) for any errors
The extension automatically configures Cursor MCP integration. To verify it's working:
Open Cursor
Press
Ctrl+Shift+P(orCmd+Shift+Pon Mac) to open the Command PaletteType "Stata: Test MCP Server Connection" and press Enter
You should see a success message if the server is properly connected
Cursor Configuration File Paths
Cursor reads user-level MCP config from:
macOS / Linux:
~/.cursor/mcp.jsonWindows:
%USERPROFILE%\.cursor\mcp.json
Workspace-level config (overrides user-level for that project) goes in .cursor/mcp.json at the workspace root.
Manual Cursor Configuration
If you need to manually configure Cursor MCP:
Create or edit the MCP configuration file:
macOS/Linux:
~/.cursor/mcp.jsonWindows:
%USERPROFILE%\.cursor\mcp.json
Add the Stata MCP server configuration:
{ "mcpServers": { "stata-mcp": { "url": "http://localhost:4000/mcp-streamable" } } }Cursor auto-detects the transport from the URL β no
transportkey needed. It tries Streamable HTTP first and falls back to SSE if the server advertises it.If the file already contains other MCP servers, just add the
"stata-mcp"entry to the existing"mcpServers"object.Save the file and restart Cursor.
Troubleshooting Cursor Configuration
If Cursor is not recognizing the Stata MCP server:
Verify the MCP server is running
Check that the configuration file exists with the correct content
Try restarting Cursor
Ensure there are no port conflicts with other running applications
This extension uses uv, a fast Python package installer built in Rust, to manage Python dependencies. Key features:
Automatic Python setup and dependency management
Creates isolated environments that won't conflict with your system
Works across Windows, macOS, and Linux
10-100x faster than traditional pip installations
If you encounter any UV-related errors during installation:
Install UV manually:
# Windows (PowerShell as Administrator) powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" # macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | shFollow the clean-reinstall steps in the troubleshooting guide to reinstall the extension.
Troubleshooting
Running into trouble? The full troubleshooting guide β clean reinstall steps for Windows / macOS / Linux, common Python and UV issues, Stata-edition mismatches, and what to include when opening a GitHub issue β lives in docs/troubleshooting.md.
Star History
License
MIT
Credits
Created by Lu Han, Published by OpenEcon.ai
This server cannot be installed
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hanlulong/stata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server