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
1# ScriptFlow MCP Server23[](https://www.npmjs.com/package/scriptflow-mcp)4[](https://opensource.org/licenses/MIT)56ScriptFlow 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.78## Why ScriptFlow?9101. **Transform Workflows into Scripts**: Convert successful AI interactions into reusable, executable scripts112. **Save Time & Tokens**: Execute complex tasks instantly instead of repeating long conversations123. **Guaranteed Consistency**: Scripts run the same way every time, eliminating AI randomness134. **Powerful Management**: Search, organize, edit, and version your automation library145. **Team Collaboration**: Share proven workflows across your organization1516## Features1718- **Add/Edit/Remove** scripts with metadata19- **List/Search** scripts by name, description, or tags20- **Execute** scripts with arguments21- **Multi-language** support (Bash, Python, Node.js, TypeScript)2223## Setup2425Add to your MCP client config (e.g., Claude Desktop `claude_desktop_config.json`):2627```json28{29 "mcpServers": {30 "scriptflow": {31 "command": "npx",32 "args": ["scriptflow-mcp"],33 "env": {34 "SCRIPTFLOW_SCRIPTS_DIR": "/your/custom/path"35 }36 }37 }38}39```4041**Environment Variables:**42- `SCRIPTFLOW_SCRIPTS_DIR`: Scripts directory (default: `/tmp/scriptflow-mcp/scripts`)43- `SCRIPTFLOW_TIMEOUT`: Execution timeout in ms (default: `30000`)4445## Available Tools4647- `script_add` - Add new script (name, description, content, language, tags)48- `script_edit` - Update existing script49- `script_get` - View script details50- `script_list` - Search/filter scripts51- `script_run` - Execute script with arguments52- `script_rm` - Remove script5354## Quick Example5556```json57// Add script58{"name": "hello", "description": "Hello script", "content": "echo 'Hello!'"}5960// Run script61{"name": "hello", "args": ["World"]}6263// List scripts64{"search": "hello"}65```6667## Storage6869Scripts stored as `{name}.{ext}` + `{name}.json` metadata files.70Supports: Bash (.sh), Python (.py), JavaScript (.js), TypeScript (.ts)7172## Testing7374```bash75# Run tests76npm test7778# Test with MCP Inspector79npx @modelcontextprotocol/inspector npx scriptflow-mcp80```
Full transparency — inspect the skill content before installing.