mcp-app-scaffolding

mcp-app-scaffolding is a skill for Claude Code from a5c-ai/babysitter. It costs 50 tokens per session (2,224 once invoked), scanned A, original, MIT.

A scaffolding tool for MCP Apps, interactive interfaces that run inside hosts such as Claude Desktop, ChatGPT, or VS Code. It creates the project folders, dependencies, entry points, and templates needed for React, Vue, Svelte, and other supported frameworks.

In plain words
What is it for?
Use it to start an MCP App with React, Vanilla JavaScript, Vue, Svelte, Preact, or Solid, including the tool that returns data and the resource that serves the interface.
Why use it?
It removes the setup work and common structural mistakes involved in starting an MCP App. It also provides framework-specific starting points based on the MCP App SDK's reference code.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to start an MCP App with React, Vanilla JavaScript, Vue, Svelte, Preact, or Solid, including the tool that returns data and the resource that serves the interface.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/a5c-ai/babysitter/mcp-app-scaffolding
About the project

Babysitter is a workflow engine for AI coding agents that enforces predefined steps, quality checks, human approvals, and decision records. It is used to coordinate complex, repeatable agent workflows across supported coding tools. The catalogue contains skills, agents, instructions, settings, a plugin, and an MCP integration for its workflow.

a5c-ai/babysitter · 1,788 stars · on GitHub · a5c.ai

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add a5c-ai/babysitter --skill mcp-app-scaffolding
Clone the repo
git clone --depth 1 https://github.com/a5c-ai/babysitter

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-app-scaffolding

README.md
[![agentmods](https://agentmods.dev/badge/skills/a5c-ai/babysitter/mcp-app-scaffolding/github.svg)](https://agentmods.dev/skills/a5c-ai/babysitter/mcp-app-scaffolding)
Your own site
<a href="https://agentmods.dev/skills/a5c-ai/babysitter/mcp-app-scaffolding"><img src="https://agentmods.dev/badge/skills/a5c-ai/babysitter/mcp-app-scaffolding/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-app-scaffolding

Your own site · 80×15
<a href="https://agentmods.dev/skills/a5c-ai/babysitter/mcp-app-scaffolding"><img src="https://agentmods.dev/badge/skills/a5c-ai/babysitter/mcp-app-scaffolding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,224 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.02224
Opus 5 $0.00025 $0.01112
Sonnet 5 $0.00010 $0.00445
Haiku 4.5 $0.00005 $0.00222

Measured 6d ago against content hash 8f9d733b5877, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

mcp-app-scaffolding scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

library/specializations/ai-agents-conversational/skills/mcp-app-scaffolding/SKILL.md · 254 lines

How it starts

The opening of the file, as written. The whole thing — 254 lines — stays where its author put it; the contents beside it link to each section on GitHub.

mcp-app-scaffolding

Scaffold MCP App projects from scratch with correct structure, dependencies, and framework-specific templates following the reference-code-first methodology.

Overview

MCP Apps are interactive UIs that render inline in MCP-enabled hosts (Claude Desktop, ChatGPT, VS Code, Goose, Postman). Every MCP App requires:

  • A Tool (called by the LLM/host, returns data) registered via registerAppTool
  • A Resource (serves bundled HTML UI) registered via registerAppResource
  • The tool's _meta.ui.resourceUri references the resource's URI

This skill handles the initial project scaffolding: cloning the SDK reference code, selecting a framework, generating the directory structure, and creating all entry points.

Capabilities

Reference Code Acquisition

  • Clone SDK repository at exact published npm version
  • Access framework templates from examples/basic-server-{framework}/
  • Access API reference source from src/
  • Access advanced patterns from docs/patterns.md
  • Access basic-host reference for testing from examples/basic-host/

Framework Selection Decision Tree

  • React (first-class support): SDK-provided useApp hook, useHostStyles, useHostStyleVariables, useHostFonts
  • Vanilla JS: Manual App lifecycle, simplest setup, no framework overhead
  • Vue / Svelte / Preact / Solid: Manual lifecycle management, follow team preference

Project Structure Generation

  • Directory layout with src/, build configs, entry points
  • Separate server and client source directories
  • Proper .gitignore for build artifacts

Dependency Installation

  • Runtime: @modelcontextprotocol/ext-apps, @modelcontextprotocol/sdk, zod
  • Dev: typescript, vite, vite-plugin-singlefile, tsx, concurrently
  • Framework-specific: react, react-dom, @types/react, @types/react-dom (for React)
  • Always use npm install -- never hardcode version numbers

Usage

Step 1: Clone Reference Code

# Clone SDK at the exact version published to npm
git clone --branch "v$(npm view @modelcontextprotocol/ext-apps version)" \
  --depth 1 https://github.com/modelcontextprotocol/ext-apps.git /tmp/mcp-ext-apps

Read the full file on GitHub · 254 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 254 lines · 50 tokens per session scan A 8f9d733b5877

Subscribe to this mod's changes

mcp-app-scaffolding is a skill published in the GitHub repository a5c-ai/babysitter (1,788 stars, last pushed 5d ago), licensed MIT. It adds 50 tokens to every session and 2,224 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

tutti-ui-system

Use when working with @tutti-os/ui-system components, replacing local UI with shared components, querying component ids or metadata, promoting UI into shared base or business components, or maintaining UI-system storyboard inventory.

tutti-os/tutti · 46 tokens

rn-best-practices

This skill should be used when writing or reviewing React Native / Expo code — before writing list rendering, animations, data fetching, component APIs, navigation, or image/media UI — and when asked to "review best practices", "check performance", "optimize renders", "review list rendering", "check animation…

Lykhoyda/rn-dev-agent · 98 tokens

verifying-ux

Defines live application and screenshot verification. Load when a diff changes user-visible UI behavior.

bostonaholic/team · 22 tokens

rn-feature-dev

Explicit Codex workflow: Guided feature development for React Native — explore codebase, design architecture, implement, verify live on device, and review quality.

Lykhoyda/rn-dev-agent · 34 tokens

vercel-composition-patterns

React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.

Lykhoyda/rn-dev-agent · 58 tokens

vercel-react-best-practices

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance…

Lykhoyda/rn-dev-agent · 67 tokens