AugmentClaude

Stata Runner

Execute Stata scripts, install packages, and analyze data structures.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up β€” so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/stata-skill-sepinetam/ β€” the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates β€” they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description β€” no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the β€œWhat this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

A packaged Stata Runner skill via official MCP-for-Stata server including stata_do, ado_package_install, help, read_log and get_data_info tools. Use it when (1) need to execute Stata do-file; (2) missing ado-packages; (3) find code error caused by syntax in Stata; (4) want to read smcl and text format log file with rich text output; (5) first encounter a data file and want to understand its structure and content.

What this skill does

MCP-for-Stata

Official plugin for MCP-for-Stata maintained in collaboration with SepineTam.

MCP-for-Stata is an MCP (Model Context Protocol) server that exposes Stata's statistical and econometric capabilities to LLMs. This toolset supports executing do-files, querying data file structures, installing ado packages, reading Stata logs, and looking up command documentation.

Prerequisites

This skill requires the MCP-for-Stata server to be installed and running. If you have not configured it yet, follow @references/installation.md. After installation, verify with uvx stata-mcp doctor. Restart your AI client after installation (required for the first-time setup).

When to Use

Trigger this skill when the user mentions any of the following scenarios:

  • Needs to execute a Stata do-file for regression or statistical analysis
  • Encounters a Stata syntax error and needs to troubleshoot or verify command usage
  • Needs to install third-party ado packages (e.g., outreg2, reghdfe, estout)
  • First encounters a data file and wants to quickly understand its variable structure and distribution
  • Needs to read a Stata execution log (.log or .smcl)
  • Needs to look up the official documentation and syntax for a Stata command

Workflow

1. First Encounter with Data β†’ get_data_info

When the user provides a data file path (.dta, .csv, .xlsx, .sav) or says "look at this data," call get_data_info first.

Key points:

  • data_path: absolute path to the data file
  • vars_list: if the user only cares about specific variables, pass a list of variable names; otherwise omit (defaults to all)
  • head: defaults to 0 (no preview rows). Only set to a positive integer when the user explicitly asks to see rows

Return value includes: data source, number of observations, variable list, variable types, and descriptive statistics (mean, standard error, min, max) for each variable.

Note: results are cached based on MD5 hash of file content. Repeated queries on the same file hit the cache.


2. Execute Stata Code β†’ stata_do

When the user asks to run Stata commands, perform regression analysis, generate graphs, process data, etc., call stata_do.

Pre-requisites:

  1. Write Stata code into a .do file (using the Write tool)
  2. Confirm the file path is within an allowed directory (<WORKING_DIR>/.statamcp/stata-mcp-dofile/ or <WORKING_DIR>)
  3. Call stata_do(dofile_path=..., log_file_name=...)

Key parameters:

  • dofile_path: absolute path to the do-file
  • log_file_name: custom log filename without timestamp, optional
  • read_log_when_error: defaults to false. When true, only returns log content when Stata returns an error code (e.g., r(198))
  • enable_smcl: defaults to true, also generates .smcl log (Unix only)

Return value: log_file_path (text and smcl paths); may contain log_content on error.

Notes:

  • Security guard is enabled by default and blocks dangerous commands (shell, erase, rm, !, etc.)
  • Do-file must be within a whitelisted directory; otherwise execution is rejected
  • SMCL log preserves hyperlinks from commands like findsj and getiref (Unix only)

3. Install Third-Party Packages β†’ ado_package_install

Treat ado_package_install as a high-risk, opt-in tool. Do not call it merely because a command is missing. First identify the exact package and source, then ask the user to approve that package and source. The MCP tool is available only when the operator starts the MCP server with the unsafe profile.

Key parameters:

  • package: package name. For GitHub source, use "user/repo" format
  • source: "ssc" (default), "github", or "net"
  • is_replace: defaults to false
  • package_source_from: required only when source="net", specifies a validated HTTPS URL

Authorization and validation: SSC and net package names may contain only ASCII letters and numbers. GitHub repositories must use owner/repository format and match the exact repository allowlist. Unknown sources, local paths, IP hosts, credentials, queries, fragments, and non-default ports are rejected. The MCP client will ask the user to approve the exact request during the tool call; do not attempt to bypass or pre-answer it. The Python API does not require caller confirmation. The CLI prompts unless -y or --yes is supplied.

Examples:

  • ado_package_install("outreg2") β€” request approval to install an SSC package
  • ado_package_install("SepineTam/TexIV", source="github") β€” request approval to install an allowlisted GitHub repository

Note: GitHub repository contents receive no security protection. Inspect the repository before installation. The tool never installs the GitHub helper. Successful installs automatically attempt help(..., replace=true) for the likely command name; if the package exposes other commands, refresh those commands explicitly.


4. Look Up Command Documentation β†’ help

When the user asks about the syntax, options, or usage of a Stata command, or wants to verify a command before troubleshooting an error, call help.

Key parameter:

  • cmd: Stata command name (e.g., "regress", "describe", "xtset")
  • replace: defaults to false. When true, bypasses cached help and refreshes it from Stata

Return value: Stata help text string. A cache hit is prefixed with Saved result for {cmd} or Cached result for {cmd}.

Notes:

  • Unix only (macOS/Linux), not available on Windows
  • Enabled project and global caches are considered, and the newest non-empty result is returned
  • If cached content seems stale or incorrect, call help(cmd=..., replace=true) to refresh it

5. Read Execution Log β†’ read_log

When the user asks to view a Stata execution log, analyze output results, or wants to inspect the full log after stata_do execution, call read_log.

Key parameters:

  • file_path: absolute path to the log file
  • output_format: "core" (default, removes framework lines), "dict" (structured command-result pairs), or "full" (all original content)
  • lines: content truncation. 0 returns all; positive returns first N items; negative returns last |N| items

Notes:

  • File must be within <WORKING_DIR>/<FOLDER_TAG>/ (security boundary)
  • Structured parsing is controlled by [BETA] enable_structured_log and is disabled by default

Typical Workflow

Scenario A: Full Data Analysis Pipeline

  1. get_data_info β€” explore data structure
  2. Write do-file based on data characteristics (Write tool)
  3. Ask for approval and use ado_package_install; inspect GitHub repositories first
  4. stata_do β€” execute the do-file
  5. read_log β€” inspect execution results if needed

Scenario B: Troubleshooting Syntax Errors

  1. help β€” look up official command documentation (Unix only)
  2. Fix the code in the do-file
  3. stata_do β€” re-execute to verify

Scenario C: Install and Use a New Package

  1. Confirm the exact package and source with the user
  2. ado_package_install("pkgname") β€” request approval and install the package
  3. help(cmd="pkg_name", replace=true) β€” explicitly refresh and check package usage
  4. Use the package commands in the do-file
  5. stata_do β€” execute

Edge Cases

  • help Unix limitation: not available on Windows; guide users to alternative documentation methods
  • security guard enabled by default: dangerous commands (shell, erase, rm, !) in do-files are blocked. To disable, set STATA_MCP__IS_GUARD=false (not recommended)
  • RAM monitoring disabled by default: to monitor Stata process memory, set STATA_MCP__IS_MONITOR=true and STATA_MCP__RAM_LIMIT
  • path boundary check: do-files and log files must be within whitelisted directories; otherwise execution is rejected
  • SSC installation slow: ado_package_install from SSC source may take time; skip if the package is already installed

References

NameLocationDescription
Installation@references/installation.mdInstallation and configuration guide for MCP-for-Stata
stata_do@references/stata_do.mdDetailed guide for the execution tool
get_data_info@references/get_data_info.mdDetailed guide for the data exploration tool
help@references/help.mdDetailed guide for the documentation tool
read_log@references/read_log.mdDetailed guide for the log reader tool
ado_package_install@references/ado_package_install.mdDetailed guide for the package installer tool
Documentationsepinetam.github.io/mcp-for-stataFull user documentation
Homepagestatamcp.comProject homepage
Source Codegithub.com/sepinetam/mcp-for-stataGitHub repository

Related skills