Install
openclaw skills install mcp-scaffolderScaffolds a complete TypeScript MCP server with folder structure, typed tools, transport config, Claude MCP snippet, and README from a simple description.
openclaw skills install mcp-scaffolderWhen the user describes an MCP server they want to build, scaffold it completely.
Folder structure
Server entry point (src/index.ts)
Tool definitions
Claude Code config snippet Always output a ready-to-paste config block:
For stdio: { "mcpServers": { "": { "type": "stdio", "command": "node", "args": ["/build/index.js"], "env": { "<ENV_VAR>": "your-value-here" } } } }
For HTTP: { "mcpServers": { "": { "type": "http", "url": "http://localhost:3000/mcp" } } }
README