Skip to main content
Glama

expo_workflow_create

Creates a new EAS workflow YAML file for Expo projects or fetches workflow syntax documentation. Use this when users want to create CI/CD workflows in .eas/workflows/ or need to learn EAS workflow syntax. After creating, use workflow_validate to validate the file.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
fileNameNo
projectRootNo
workflowYamlNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.3/5.0
Behavior3/5

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

With annotations providing no hints (readOnlyHint=false, destructiveHint=false, etc.), the description carries the burden of explaining side effects. It states that creating a file is a write operation, but it doesn't disclose whether it overwrites existing files, whether it requires authentication, or what happens if the file already exists. The 'learn' action is likely non-destructive, but this isn't explicitly stated. The description adds some context but lacks details on failure modes or side effects.

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

Conciseness4/5

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

The description is concise, with two sentences that pack a lot of information. It front-loads the primary purpose (creating the file) and adds the secondary action (learning). It also mentions the validation follow-up. No redundant words, and it's appropriately structured. Minor deduction for not breaking down the two modes more clearly, but overall efficient.

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

Completeness2/5

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

Given the tool has 4 parameters, no output schema, and zero schema description coverage, the description is incomplete for an agent to use it correctly. It doesn't explain the 'action' parameter's role in determining create vs. learn, nor does it specify what inputs are needed for each mode. It also doesn't mention prerequisites (like authentication or having an Expo project). The description gives high-level guidance but lacks operational detail, making it insufficient for complex usage.

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

Parameters2/5

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

Schema description coverage is 0%, meaning the description does not explain any parameters. The input schema lists parameters like action (with enum create/learn), fileName, projectRoot, and workflowYaml, but the description does not describe what each parameter means or how they are used. For example, it doesn't clarify that workflowYaml is the content of the YAML file, or that projectRoot is the root directory. This is a significant gap, as 4 parameters are undocumented in the description, forcing the agent to infer from names.

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

Purpose4/5

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

The description clearly states that the tool creates a new EAS workflow YAML file or fetches syntax documentation, which distinguishes it from sibling tools like expo_workflow_validate and expo_workflow_run. It specifies the target location (.eas/workflows/) and the two primary actions (create and learn). However, it could more explicitly state that this is for creating workflows (as opposed to other workflow operations), but the verb 'Creates' and the resource 'EAS workflow YAML file' are specific enough.

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

Usage Guidelines4/5

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

The description provides clear guidance on when to use the tool: 'Use this when users want to create CI/CD workflows in .eas/workflows/ or need to learn EAS workflow syntax.' It also points to an alternative for validation: 'After creating, use workflow_validate to validate the file.' This gives context on the next step, though it doesn't explicitly state when not to use it (e.g., for running or inspecting workflows).

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation3/5

Most build/workflow tools are clearly separated by resource and action, but some boundaries are blurry: expo_learn overlaps with expo_search_documentation/expo_read_documentation, and connect/toolkit_info/authenticate all touch connection and auth state. Agents may need to read descriptions carefully to avoid picking the wrong one.

Naming Consistency4/5

The Expo-specific tools follow a strong expo_<domain>_<action> snake_case pattern, e.g., expo_build_cancel, expo_workflow_create, expo_search_documentation. The non-prefixed platform tools like authenticate, connect, marketplace, report_bug, and show_version break the pattern, but they read as a separate platform services group rather than random inconsistency.

Tool Count4/5

25 tools is at the heavy end, but the scope is broad: EAS builds, EAS workflows, TestFlight, documentation, auth, and platform maintenance each contribute natural clusters of tools. A few generic helpers like marketplace and show_version could arguably live elsewhere, but the overall size is defensible.

Completeness4/5

The build lifecycle and workflow lifecycle are well covered: create/run/list/info/cancel/logs exist for workflows, and run/list/info/cancel/logs/submit exist for builds. Documentation search/read support is solid; minor gaps like removing or updating installed libraries and exposing EAS Update tooling prevent a perfect score.