Skip to main content
Glama
seungmanchoi

expo-app-scaffold-mcp

by seungmanchoi

scaffold_app

Creates a new Expo + React Native app from a Feature-Sliced Design template, configures app.json, package.json, eas.json, i18n, and initializes a git repository.

Instructions

Scaffolds a new Expo + React Native app from the FSD template. Copies the template, updates app.json, package.json, eas.json, sets up i18n, and initializes a git repo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesURL-safe slug for the app (e.g., "my-cool-app"). Used as the directory name under ~/works/ and in app.json slug. Must be lowercase letters, numbers, and hyphens only.
app_nameYesDisplay name of the app (e.g., "My Cool App"). Used in app.json as the expo name.
bundle_idNoBundle identifier for iOS/Android (e.g., "com.seungmanchoi.mycoolapp"). Defaults to com.seungmanchoi.{slug with hyphens removed}.
languagesNoSupported language codes for i18n (e.g., ["ko", "en", "ja"]). Defaults to ["ko", "en"]. Creates locale JSON files under src/shared/config/i18n/.
descriptionNoShort description of the app. Added to package.json.
theme_colorNoPrimary theme color hex code (e.g., "#6366f1"). Defaults to "#6366f1".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. It helpfully enumerates the side effects (copy template, modify config files, set up i18n, init git), which indicates a mutation that creates files and a git repo. However, it omits whether existing directories are overwritten, whether the operation is reversible, permission requirements, or what happens on partial failure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single efficient sentence that is front-loaded with the core action and follows with concrete effects. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 6-parameter creation tool with no output schema and no annotations, the description is adequate but incomplete: it fails to cover error behavior, overwrite semantics, environment prerequisites, and success confirmation. The schema covers inputs well, but behavioral context around this mutation remains thin.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all six parameters are already well documented with examples and defaults. The description adds no parameter meaning beyond what the schema provides. Baseline 3 is appropriate because the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb (scaffolds) and resource (Expo + React Native app from the FSD template), and lists concrete effects: copying the template, updating app.json/package.json/eas.json, setting up i18n, and initializing git. This clearly distinguishes it from siblings like list_apps (read-only inventory) and setup_store_config (configuration), which do not create apps.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by defining what the tool does, but it offers no explicit when-to-use guidance, no prerequisites (e.g., Node/Expo CLI availability, working directory assumptions), and no mention of when not to use it versus alternatives. For a scaffolding mutation, this leaves the agent to infer context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools