mcp__getMeta
Retrieve high-level site configuration and design rules by providing a MasterGo design file ID and layer ID. Use the returned markdown rules and results to analyze and build websites.
Instructions
Use this tool when the user intends to build a complete website or needs to obtain high-level site configuration information. You must provide a fileld and layerld to identify the specific design element. This tool returns the rules and results of the site and page. The rules is a markdown file, you must follow the rules and use the results to analyze the site and page.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileId | Yes | MasterGo design file ID (format: file/<fileId> in MasterGo URL) | |
layerId | Yes | Layer ID of the specific component or element to retrieve (format: ?layer_id=<layerId> / file=<fileId> in MasterGo URL) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fileId": {
"description": "MasterGo design file ID (format: file/<fileId> in MasterGo URL)",
"type": "string"
},
"layerId": {
"description": "Layer ID of the specific component or element to retrieve (format: ?layer_id=<layerId> / file=<fileId> in MasterGo URL)",
"type": "string"
}
},
"required": [
"fileId",
"layerId"
],
"type": "object"
}