append_dofile
Add Stata code to an existing dofile or generate a new one for Stata-MCP, enabling streamlined code management and execution of statistical operations.
Instructions
append stata-code to an existing dofile or create a new one
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
original_dofile_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"original_dofile_path": {
"title": "Original Dofile Path",
"type": "string"
}
},
"required": [
"original_dofile_path",
"content"
],
"title": "append_dofileArguments",
"type": "object"
}