Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From mcp-stata
Runs locally via uvx to integrate Stata for statistical analysis, data processing, and executing .do files. Supports custom startup .do file and temp dir. Requires STATA_PATH to Stata installation.
npx claudepluginhub tmonk/mcp-stata --plugin mcp-stataCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"mcp-stata": {
"command": "uvx",
"args": [
"--refresh",
"--refresh-package",
"mcp-stata",
"--from",
"mcp-stata@latest",
"mcp-stata"
],
"env": {
"STATA_PATH": "${STATA_PATH:-}",
"MCP_STATA_TEMP_DIR": "${MCP_STATA_TEMP_DIR:-}",
"MCP_STATA_STARTUP_DO_FILE": "${MCP_STATA_STARTUP_DO_FILE:-}"
}
}
}
}Server configuration and connection parameters
uvxCommand-line arguments passed to the server process
Environment variables set when the server starts
STATA_PATH=${STATA_PATH:-}MCP_STATA_TEMP_DIR=${MCP_STATA_TEMP_DIR:-}MCP_STATA_STARTUP_DO_FILE=${MCP_STATA_STARTUP_DO_FILE:-}Share bugs, ideas, or general feedback.