list-remove
Remove a specific list from a Microsoft 365 site by providing the list title and site URL, using the Microsoft 365 MCP Server.
Instructions
Removes the specified list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title of the list to remove. | |
webUrl | Yes | URL of the site where the list to remove is located. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "Title of the list to remove.",
"type": "string"
},
"webUrl": {
"description": "URL of the site where the list to remove is located.",
"type": "string"
}
},
"required": [
"title",
"webUrl"
],
"type": "object"
}