create_contact
Generate and manage new contacts by inputting essential details like account ID, name, email, and phone numbers using Microsoft MCP's integration with Microsoft Graph API.
Instructions
Create a new contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
email_addresses | No | ||
given_name | Yes | ||
phone_numbers | No | ||
surname | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"email_addresses": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Email Addresses"
},
"given_name": {
"title": "Given Name",
"type": "string"
},
"phone_numbers": {
"anyOf": [
{
"additionalProperties": {
"type": "string"
},
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone Numbers"
},
"surname": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Surname"
}
},
"required": [
"account_id",
"given_name"
],
"type": "object"
}