install_from_library
Install chatmodes or instructions directly from the Mode Manager MCP Library by specifying the item name for quick integration into workflows.
Instructions
Install a chatmode or instruction from the Mode Manager MCP Library.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | ||
name | Yes | The name of the item to install from the library |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filename"
},
"name": {
"description": "The name of the item to install from the library",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}