Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
DEPRECATED: Replaced by mcp-app-builder. Previously used to build MCP servers with tools, resources, and prompts via mcp-use.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
evals/architecture.json
1[2{3"query": "Build me a weather app",4"expected_behavior": "Creates a widget tool (get-weather) with visual display of temperature, conditions, humidity. Uses mock data. Does NOT require an API key by default. Widget renders a styled weather card."5},6{7"query": "I need a tool that translates text between languages",8"expected_behavior": "Creates a tool-only (translate-text) with no widget. Returns text() response. Accepts text, targetLanguage, optional sourceLanguage. No visual UI needed for text translation."9},10{11"query": "Make a recipe finder where I can search and browse recipes",12"expected_behavior": "Creates a widget tool (search-recipes) with recipe card list UI. Widget shows name, cuisine, time, ingredients. May also create get-recipe-details tool. Uses mock recipe data."13},14{15"query": "I want a todo list manager",16"expected_behavior": "Creates multiple tools: add-todo, list-todos, complete-todo, delete-todo. list-todos should have a widget with interactive checklist. Widget calls other tools via callTool."17},18{19"query": "Build a stock price checker",20"expected_behavior": "Creates a widget tool (get-stock) showing price, change, and key metrics visually. Also creates compare-stocks tool. Uses mock stock data with slight randomization."21},22{23"query": "I need a simple calculator tool",24"expected_behavior": "Creates tool-only (calculate) with no widget. Takes expression or operands. Returns text() with the result. No visual UI needed."25},26{27"query": "Make a quiz app where users can take quizzes on different topics",28"expected_behavior": "Creates a widget tool (generate-quiz) showing questions with multiple choice options. Also creates check-answer tool. Widget manages quiz state (current question, score) internally."29},30{31"query": "Build a color palette generator",32"expected_behavior": "Creates a widget tool showing color swatches visually (hex codes, color previews). Widget approach because visual color representation is far better than text descriptions of colors."33}34]35