@dypai-ai/mcp 1.5.8 → 1.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +19 -8
- package/src/tools/scaffold.js +3 -2
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -146,7 +146,7 @@ This stores classification metadata only. It does not create users, roles, login
|
|
|
146
146
|
},
|
|
147
147
|
},
|
|
148
148
|
{ name: "list_ai_models", description: "List only the DYPAI Managed AI models that are active for a project. Returns the project-gated OpenRouter model catalog priced in AI Credits per 1M tokens, RPM limit, max output tokens, active/available counts, billing metadata, and the exact node parameters to use. Call this before creating or editing an AI Agent node with DYPAI Managed models. Agents must not invent or use inactive model ids. Use provider='openrouter' and do NOT set credential_id; DYPAI uses the platform OpenRouter key and deducts usage from the organization's AI Credits.", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project UUID whose plan and Model Gateway settings determine the active Managed AI catalog." } }, required: ["project_id"] } },
|
|
149
|
-
{ name: "create_project", description: "Create a new DYPAI project (free plan). Creates a full project with database, engine, GitHub repo, and frontend hosting. BLOCKS by default until provisioning finishes (~60s typical, 120s max) — when it returns, the project_id is ready to use with execute_sql, endpoint tools, etc. Pass wait_until_ready:false for batch flows.\n\nName collision: if another project in the same org already uses the name (case-insensitive), returns {error:'name_taken', existing_project_id, suggestions:[...]}. Pick a different name or use the existing project.\n\nIMPORTANT: before calling, check for a matching template with `search_project_templates`. Passing a `template_slug` drops in a ready-made schema + endpoints + UI that cover 70% of common app types.
|
|
149
|
+
{ name: "create_project", description: "Create a new DYPAI project (free plan). Creates a full project with database, engine, GitHub repo, and frontend hosting. BLOCKS by default until provisioning finishes (~60s typical, 120s max) — when it returns, the project_id is ready to use with execute_sql, endpoint tools, etc. Pass wait_until_ready:false for batch flows.\n\nName collision: if another project in the same org already uses the name (case-insensitive), returns {error:'name_taken', existing_project_id, suggestions:[...]}. Pick a different name or use the existing project.\n\nProject limits are enforced by the DYPAI API at organization/workspace scope according to the workspace plan. If it returns {error:'project_limit_reached'}, do not retry create_project; show list_projects for that organization and ask the user to reuse, archive/pause, upgrade the workspace to Pro, or add capacity.\n\nIMPORTANT: before calling, check for a matching template with `search_project_templates`. Passing a `template_slug` drops in a ready-made schema + endpoints + UI that cover 70% of common app types. Use built-in bases when appropriate: `private-admin` for private internal tools, `user-accounts` for apps with signup/login users, `landing-admin` for public landing plus admin, and `blank` only when no base fits.", inputSchema: { type: "object", properties: { name: { type: "string", description: "Project name (e.g. 'My Veterinary App')" }, organization_id: { type: "string", description: "Optional. Uses default org if omitted." }, description: { type: "string" }, template_slug: { type: "string", description: "RECOMMENDED. Project template slug to start from (e.g. 'clinic', 'gym', 'private-admin', 'user-accounts', 'landing-admin', 'blank'). Always call search_project_templates first to find the best match." }, wait_until_ready: { type: "boolean", description: "If true (default), blocks until provisioning completes and the project is ready for all operations. If false, returns immediately with status='provisioning' — caller must poll get_project before using.", default: true } }, required: ["name"] } },
|
|
150
150
|
{ name: "get_app_credentials", description: "Lists available credentials in the current application. Returns API keys, anon key, service role key, and engine URL needed for SDK configuration.", inputSchema: { type: "object", properties: { project_id: { type: "string" } }, required: [] } },
|
|
151
151
|
|
|
152
152
|
// ── Database ──────────────────────────────────────────────────────────────
|
|
@@ -487,8 +487,9 @@ endpoint YAML and \`dypai_push\`. This tool does NOT modify the definition.`,
|
|
|
487
487
|
|
|
488
488
|
// ── Knowledge ─────────────────────────────────────────────────────────────
|
|
489
489
|
{ name: "search_docs", description: "Search DYPAI documentation. Use this when unsure about SDK usage, auth patterns, workflow nodes, or platform features. Returns relevant documentation chunks.", inputSchema: { type: "object", properties: { query: { type: "string", description: "What you want to learn about" } }, required: ["query"] } },
|
|
490
|
+
{ name: "search_design_patterns", description: "Search compact DYPAI UI/design recipes. Use before designing substantial screens.", inputSchema: { type: "object", properties: { query: { type: "string", description: "Design need, with starter/domain/screen/style context when known." }, starter_slug: { type: "string", description: "Optional: private-admin, user-accounts, landing-admin, or blank." }, app_type: { type: "string", description: "Optional domain/app type." }, screen_type: { type: "string", description: "Optional screen/workflow." }, visual_style: { type: "string", description: "Optional style." }, category: { type: "string", description: "Optional category." }, limit: { type: "integer", default: 3, minimum: 1, maximum: 4 } }, required: ["query"] } },
|
|
490
491
|
{ name: "search_workflow_templates", description: "Search workflow templates by description. Returns ready-to-use workflow code for common patterns: CRUD operations, payment gateways, email sending, AI chatbots, data pipelines, etc.", inputSchema: { type: "object", properties: { query: { type: "string", description: "What the workflow should do (e.g. 'send email', 'stripe payment')" }, category: { type: "string", description: "Optional: AI, Database, Payments, Communication, Logic, Storage" } }, required: ["query"] } },
|
|
491
|
-
{ name: "search_project_templates", description: "Search project starter templates by description. Returns template metadata and slugs for
|
|
492
|
+
{ name: "search_project_templates", description: "Search project starter templates by description. Returns template metadata and slugs for marketplace templates plus built-in bases: private-admin, user-accounts, landing-admin, and blank.", inputSchema: { type: "object", properties: { query: { type: "string", description: "What kind of project starter you need (e.g. 'gym app', 'private admin dashboard', 'user accounts portal', 'landing plus admin')" }, category: { type: "string", description: "Optional category filter" } }, required: ["query"] } },
|
|
492
493
|
]
|
|
493
494
|
|
|
494
495
|
// ── Server Instructions ──────────────────────────────────────────────────────
|
|
@@ -517,16 +518,26 @@ First reflex, always:
|
|
|
517
518
|
|
|
518
519
|
1. **Acknowledge briefly** what they want to build (one short line, their language).
|
|
519
520
|
2. **\`search_project_templates(query: "<keywords from their request>")\`** — keywords in their language. Templates cover common app types (gym, clinic, waitlist, saas dashboard, etc.).
|
|
520
|
-
3. **Decide: template
|
|
521
|
+
3. **Decide: marketplace template, built-in base, or blank.** Marketplace templates are only right when the match is OBVIOUS and STRONG:
|
|
521
522
|
- ✅ User says *"app para mi gimnasio"* + there's \`gym-manager\` (exact domain + feature overlap) → template.
|
|
522
|
-
- ❌ User says *"algo para gestionar reservas"* + there's \`gym-manager\` (soft match, many interpretations) → **blank**. Don't assume they want the gym's specific schema (classes, memberships, check-ins) — they didn't ask for it.
|
|
523
|
-
-
|
|
524
|
-
|
|
525
|
-
|
|
523
|
+
- ❌ User says *"algo para gestionar reservas"* + there's \`gym-manager\` (soft match, many interpretations) → use a built-in base or **blank**. Don't assume they want the gym's specific schema (classes, memberships, check-ins) — they didn't ask for it.
|
|
524
|
+
- Built-in bases are safe defaults:
|
|
525
|
+
- private/internal/admin/dashboard/backoffice/business management → \`private-admin\`
|
|
526
|
+
- end-user signup/login/customer/member portal/marketplace/SaaS accounts → \`user-accounts\`
|
|
527
|
+
- public landing/marketing site plus private admin → \`landing-admin\`
|
|
528
|
+
- no clear access pattern or explicitly custom/from scratch → \`blank\`
|
|
529
|
+
- ❌ User is a dev with a concrete spec (*"crea un proyecto con estas 3 tablas y estos endpoints"*) → usually **blank**, unless they explicitly want one of the built-in bases.
|
|
530
|
+
- ❌ No marketplace or built-in base fits → **blank**.
|
|
531
|
+
4. **Call it** → \`create_project(name: "<their name>", template_slug: "<matched_slug>" | "private-admin" | "user-accounts" | "landing-admin" | "blank")\`.
|
|
526
532
|
If you went with a template, acknowledge in ONE line what's included so the user can push back: *"Lo arranco con la plantilla X, que trae socios, clases y pagos. ¿Te vale o prefieres algo más simple?"*
|
|
527
533
|
If you went blank, just say: *"Arranco un proyecto en blanco y lo construimos a medida."*
|
|
528
534
|
5. **After \`create_project\`** → ask for an absolute workspace path, then \`dypai_pull\` + \`manage_frontend(sync)\` (see next section).
|
|
529
535
|
|
|
536
|
+
Before designing substantial UI (app shell, dashboard, login, tables/lists,
|
|
537
|
+
forms, calendars, or domain-specific screens), use \`search_design_patterns\`
|
|
538
|
+
with the app/starter/screen/style context. It returns curated recipes; adapt
|
|
539
|
+
them to the project instead of inventing generic starter UI.
|
|
540
|
+
|
|
530
541
|
**The template system exists to save time when the fit is obvious, not to force-match every request.** When in doubt → blank is always correct. Iterating up from blank is cheaper than deleting 80% of a mismatched template.
|
|
531
542
|
|
|
532
543
|
## The one legit follow-up question
|
|
@@ -748,7 +759,7 @@ Use phrases like:
|
|
|
748
759
|
Default is **no tool names in user-facing text**.
|
|
749
760
|
|
|
750
761
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
751
|
-
# SEARCH BEFORE YOU GUESS — \`search_docs\`
|
|
762
|
+
# SEARCH BEFORE YOU GUESS — \`search_docs\` and \`search_design_patterns\`
|
|
752
763
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
753
764
|
|
|
754
765
|
This prompt is the MAP of the DYPAI platform. The detailed docs live in
|
package/src/tools/scaffold.js
CHANGED
|
@@ -20,7 +20,8 @@ Scaffolds a project directory with:
|
|
|
20
20
|
- .env with engine URL
|
|
21
21
|
|
|
22
22
|
Use search_project_templates first to find available templates, then pass the template slug here.
|
|
23
|
-
|
|
23
|
+
Use "private-admin" for private internal tools, "user-accounts" for apps with signup/login users,
|
|
24
|
+
"landing-admin" for public landing plus admin, or "blank" only when no base fits.`,
|
|
24
25
|
|
|
25
26
|
inputSchema: {
|
|
26
27
|
type: "object",
|
|
@@ -35,7 +36,7 @@ Or use "blank" for an empty starter project.`,
|
|
|
35
36
|
},
|
|
36
37
|
template: {
|
|
37
38
|
type: "string",
|
|
38
|
-
description: 'Template slug (e.g. "clinic", "gym", "blank"). Use search_project_templates to find available templates.',
|
|
39
|
+
description: 'Template slug (e.g. "clinic", "gym", "private-admin", "user-accounts", "landing-admin", "blank"). Use search_project_templates to find available templates.',
|
|
39
40
|
default: "blank",
|
|
40
41
|
},
|
|
41
42
|
},
|