ScriptFlow is a script workflow management system built on the Model Context Protocol (MCP). It transforms complex, repetitive AI interactions into persistent, executable scripts that can be managed, version-controlled, and reused across sessions. 1. Transform Workflows into Scripts: Convert successful AI interactions into reusable, executable scripts 2. Save Time & Tokens: Execute complex tasks i
Add this skill
npx mdskills install yanmxa/scriptflow-mcpTransforms AI workflows into persistent, multi-language scripts with comprehensive management tools and clear setup
ScriptFlow is a script workflow management system built on the Model Context Protocol (MCP). It transforms complex, repetitive AI interactions into persistent, executable scripts that can be managed, version-controlled, and reused across sessions.
Add to your MCP client config (e.g., Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"scriptflow": {
"command": "npx",
"args": ["scriptflow-mcp"],
"env": {
"SCRIPTFLOW_SCRIPTS_DIR": "/your/custom/path"
}
}
}
}
Environment Variables:
SCRIPTFLOW_SCRIPTS_DIR: Scripts directory (default: /tmp/scriptflow-mcp/scripts)SCRIPTFLOW_TIMEOUT: Execution timeout in ms (default: 30000)script_add - Add new script (name, description, content, language, tags)script_edit - Update existing scriptscript_get - View script detailsscript_list - Search/filter scriptsscript_run - Execute script with argumentsscript_rm - Remove script// Add script
{"name": "hello", "description": "Hello script", "content": "echo 'Hello!'"}
// Run script
{"name": "hello", "args": ["World"]}
// List scripts
{"search": "hello"}
Scripts stored as {name}.{ext} + {name}.json metadata files.
Supports: Bash (.sh), Python (.py), JavaScript (.js), TypeScript (.ts)
# Run tests
npm test
# Test with MCP Inspector
npx @modelcontextprotocol/inspector npx scriptflow-mcp
Install via CLI
npx mdskills install yanmxa/scriptflow-mcpScriptFlow MCP Server is a free, open-source AI agent skill. ScriptFlow is a script workflow management system built on the Model Context Protocol (MCP). It transforms complex, repetitive AI interactions into persistent, executable scripts that can be managed, version-controlled, and reused across sessions. 1. Transform Workflows into Scripts: Convert successful AI interactions into reusable, executable scripts 2. Save Time & Tokens: Execute complex tasks i
Install ScriptFlow MCP Server with a single command:
npx mdskills install yanmxa/scriptflow-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
ScriptFlow MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.