list-get
Retrieve details about a specific list in Microsoft 365, including its title, site URL, and optional permissions, using the MCP Server integration.
Instructions
Gets information about the specific list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title of the list. | |
webUrl | Yes | URL of the site where the list is located. | |
withPermissions | No | Set if you want to return associated roles and permissions of the list. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "Title of the list.",
"type": "string"
},
"webUrl": {
"description": "URL of the site where the list is located.",
"type": "string"
},
"withPermissions": {
"default": false,
"description": "Set if you want to return associated roles and permissions of the list.",
"type": "boolean"
}
},
"required": [
"title",
"webUrl"
],
"type": "object"
}