export_mssql_knowledge
Generate Markdown documentation of MSSQL database schema including tables and columns for AI Q/A systems. Export structured knowledge files to support database understanding and query assistance.
Instructions
Export MSSQL schema (tables/columns) into a Markdown knowledge file for Q/A.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columnLimit | No | Max number of columns to document in total | |
outputPath | No | Output Markdown path (relative), e.g., docs/db-knowledge.md | docs/db-knowledge.md |
tableLimit | No | Max number of tables to document |
Input Schema (JSON Schema)
{
"properties": {
"columnLimit": {
"default": 2000,
"description": "Max number of columns to document in total",
"maximum": 5000,
"minimum": 100,
"type": "integer"
},
"outputPath": {
"default": "docs/db-knowledge.md",
"description": "Output Markdown path (relative), e.g., docs/db-knowledge.md",
"type": "string"
},
"tableLimit": {
"default": 200,
"description": "Max number of tables to document",
"maximum": 500,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}