List all available shaders in the project assets and packages. Returns their names. Use this to find a shader name for 'assets-material-create' tool.
List all available shaders in the project assets and packages. Returns their names. Use this to find a shader name for 'assets-material-create' tool.
Execute this tool directly via the MCP Plugin HTTP API:
curl -X POST http://localhost:54688/api/tools/assets-shader-list-all \
-H "Content-Type: application/json" \
-d '{}'
curl -X POST http://localhost:54688/api/tools/assets-shader-list-all \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{}'
The token is stored in the file: UserSettings/AI-Game-Developer-Config.json
Using the format: "token": "YOUR_TOKEN"
This tool takes no input parameters.
{
"type": "object"
}
{
"type": "object",
"properties": {
"result": {
"$ref": "#/$defs/System.String[]"
}
},
"$defs": {
"System.String[]": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"result"
]
}