data-model-creation
Optional advanced tool for complex data modeling. For simple table creation, use relational-database-tool directly with SQL statements.
Install
mkdir -p .claude/skills/data-model-creation && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5530" && unzip -o skill.zip -d .claude/skills/data-model-creation && rm skill.zipInstalls to .claude/skills/data-model-creation
About this skill
When to use this skill
This is an OPTIONAL advanced modeling tool for complex database design. Most simple table creation should use relational-database-tool directly with SQL statements.
ONLY use this skill when you specifically need:
- Complex multi-table relationships with automatic foreign key management
- Visual ER diagram generation for documentation
- Automated field type mapping and constraint generation
- Enterprise-level data model documentation
For most cases, use relational-database-tool skill instead:
- Simple table creation with CREATE TABLE statements
- Basic CRUD operations
- Schema modifications with ALTER TABLE
- Direct SQL execution without Mermaid modeling
Do NOT use for:
- Querying or manipulating existing data (use database skills)
- NoSQL database design (use NoSQL skills)
- Frontend data structures (use appropriate frontend skills)
How to use this skill (for a coding agent)
⚠️ NOTE: This is OPTIONAL. For simple tasks, skip this and use relational-database-tool directly.
When you do use this advanced modeling approach:
-
Optional modeling workflow (only when complexity justifies it)
- Business analysis phase: Analyze user requirements, identify core entities and relationships
- Mermaid modeling phase: Create mermaid classDiagram following generation rules
- Model validation phase: Check completeness, consistency, and correctness
-
Apply generation rules strictly (when using this tool)
- Use correct type mappings (string, number, boolean, x-enum, etc.)
- Convert Chinese to English naming (PascalCase for classes, camelCase for fields)
- Define required(), unique(), display_field() functions when needed
- Use proper relationship notation with field names
-
Use tools correctly (only when you choose this approach)
- Call data model creation tools only for complex multi-entity business requirements
- Use
mermaidDiagramparameter with complete mermaid classDiagram code - Set
publishto false initially, create then publish separately - Choose appropriate
updateModefor new or existing models
Quick Decision Guide
Most Database Tasks → relational-database-tool skill
- ✅ Simple table creation
- ✅ Data queries and modifications
- ✅ Schema changes
- ✅ Direct SQL execution
Complex Modeling Only → This skill (data-model-creation)
- 🎯 Multi-entity relationship modeling
- 🎯 Automated foreign key management
- 🎯 Visual ER diagram generation
- 🎯 Enterprise documentation
Data Model AI Modeling Professional Rules
⚠️ IMPORTANT: Simplified Workflow Recommendation
For most database table creation tasks, use relational-database-tool skill directly:
- Simple table creation:
CREATE TABLE users (id INT PRIMARY KEY, name VARCHAR(255)) - Schema modifications:
ALTER TABLE users ADD COLUMN email VARCHAR(255) - Data operations:
INSERT,UPDATE,SELECT,DELETE
Only use this advanced Mermaid modeling approach when:
- You need automated relationship management
- Complex multi-table schemas with foreign keys
- Enterprise documentation requirements
- Visual ER diagram generation
This rule exists for complex modeling scenarios, but most development should use direct SQL execution.
AI Modeling Expert Prompt
As an expert in data modeling and a senior architect in software development, you are proficient in Mermaid. Your main task is to provide model structures in mermaid classDiagram format based on user descriptions, following the detailed rules below:
Generation Rules
-
Type Mapping Priority: When user-described fields match the mapping relationship, prioritize using type as the field type. Mapping relationships are as follows:
Business Field type Text string Number number Boolean boolean Enum x-enum Email email Phone phone URL url File x-file Image x-image Rich Text x-rtf Region x-area-code Time time Date date DateTime datetime Object object Array string[] Location x-location -
Naming Convention: Convert Chinese descriptions to English naming (except enum values). Use PascalCase for class names, camelCase for field names.
-
Field Visibility: Use default visibility for fields, do not add "+" or "-".
-
Array Types: When descriptions include array types, use specific array formats such as string[], number[], x-rtf[], etc.
-
Chinese Administrative Regions: When involving Chinese administrative regions like "province/city/district", use x-area-code field type.
-
Required Fields: When descriptions explicitly mention required fields, define a required() parameterless function, return value as string array of required field names, e.g.,
required() ["name", "age"]. By default, fields are not required. -
Unique Fields: When descriptions explicitly mention unique fields, define a unique() parameterless function, return value as string array of unique field names, e.g.,
unique() ["name", "age"]. By default, fields are not unique. -
Default Values: When descriptions explicitly require field default values, use "= default value" format after field definition, e.g.,
age: number = 0. By default, fields have no default values. -
Field Descriptions: For each field definition in user descriptions, use
<<description>>format at the end of the definition line, e.g.,name: string <<Name>>. -
Display Field: Each entity class should have a field for display when being referenced. Usually a human-readable name or unique identifier. Define display_field() parameterless function, return value is a field name representing the main display field, e.g.,
display_field() "name"means the main display field is name. Otherwise, default to the implicit _id of the data model. -
Class Notes: After all class definitions are complete, use note to describe class names. First use "%% Class naming" to anchor the area, then provide Chinese table names for each class.
-
Relationships: When descriptions contain relationships, relationship label LabelText should not use original semantics, but use relationship field names. For example,
A "n" <-- "1" B: field1means A has many-to-one relationship with B, data exists in A's field1 field. Refer to examples for specifics. -
Naming: Field names and descriptions in Mermaid should be concise and accurately expressed.
-
Complexity Control: Unless user requires, control complexity, e.g., number of classes should not exceed 5, control field complexity.
Standard Example
classDiagram
class Student {
name: string <<Name>>
age: number = 18 <<Age>>
gender: x-enum = "Male" <<Gender>>
classId: string <<Class ID>>
identityId: string <<Identity ID>>
course: Course[] <<Courses>>
required() ["name"]
unique() ["name"]
enum_gender() ["Male", "Female"]
display_field() "name"
}
class Class {
className: string <<Class Name>>
display_field() "className"
}
class Course {
name: string <<Course Name>>
students: Student[] <<Students>>
display_field() "name"
}
class Identity {
number: string <<ID Number>>
display_field() "number"
}
%% Relationships
Student "1" --> "1" Identity : studentId
Student "n" --> "1" Class : student2class
Student "n" --> "m" Course : course
Student "n" <-- "m" Course : students
%% Class naming
note for Student "Student Model"
note for Class "Class Model"
note for Course "Course Model"
note for Identity "Identity Model"
Data Model Creation Workflow
1. Business Analysis Phase
- Carefully analyze user's business requirement descriptions
- Identify core entities and business objects
- Determine relationships between entities
- Clarify required fields, unique constraints, and default values
2. Mermaid Modeling Phase
- Strictly follow the above generation rules to create mermaid classDiagram
- Ensure field type mappings are correct
- Properly handle relationship directions and cardinalities
- Add complete Chinese descriptions and comments
3. Model Validation Phase
- Check model completeness and consistency
- Verify relationship rationality
- Confirm field constraint correctness
- Check naming convention compliance
MySQL Data Type Support
Basic Type Mappings
string→ VARCHAR/TEXTnumber→ INT/BIGINT/DECIMALboolean→ BOOLEAN/TINYINTdate→ DATEdatetime→ DATETIMEtime→ TIME
Extended Type Mappings
x-enum→ ENUM typex-file/x-image→ File path storagex-rtf→ LONGTEXT rich textx-area-code→ Region codex-location→ Geographic location coordinatesemail/phone/url→ VARCHAR with validation
Relationship Implementation
- One-to-one: Foreign key constraints
- One-to-many: Foreign key associations
- Many-to-many: Intermediate table implementation
- Self-association: Same table foreign key
Tool Usage Guidelines
Tool Call Timing (RARE - Use Sparingly)
- Only when user explicitly requests advanced data modeling with Mermaid diagrams
- Only for complex enterprise applications with multi-entity relationships
- Only when user provides detailed business requirement descriptions requiring automated modeling
- Only when you need to update existing data model structure AND want visual ER diagrams
When to SKIP this tool (Most Cases)
- Simple table creation → Use
manageSqlDatabase(action="runStatement")with CREATE TABLE - Schema changes → Use
manageSqlDatabase(action="runStatement")with ALTER TABLE - Basic CRUD → Use appropriate SQL statements directly
- Data queries → Use
querySqlDatabase(action="runQuery")
Parameter Usage Guide
- `mer
Content truncated.
More by TencentCloudBase
View all skills by TencentCloudBase →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversReddit Buddy offers clean access to Reddit API, advanced reddit tools, and seamless data annotation reddit with smart ca
Extend your developer tools with GitHub MCP Server for advanced automation, supporting GitHub Student and student packag
Integrate FireCrawl for advanced web scraping to extract clean, structured data from complex websites—fast, scalable, an
Desktop Commander MCP unifies code management with advanced source control, git, and svn support—streamlining developmen
Enhance productivity with AI-driven Notion automation. Leverage the Notion API for secure, automated workspace managemen
Effortlessly create 25+ chart types with MCP Server Chart. Visualize complex datasets using TypeScript and AntV for powe
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.