list_contacts
Retrieve and manage Outlook contacts by fetching a specified number of entries linked to an account ID using Microsoft MCP server integration.
Instructions
List contacts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
}
},
"required": [
"account_id"
],
"type": "object"
}