create_contact
Add a new contact to your Google account by specifying the first name, last name, email, and phone number using the MCP Google Contacts Server API.
Instructions
Create a new contact.
Args:
given_name: First name of the contact
family_name: Last name of the contact
email: Email address of the contact
phone: Phone number of the contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
family_name | No | ||
given_name | Yes | ||
phone | No |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Email"
},
"family_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Family Name"
},
"given_name": {
"title": "Given Name",
"type": "string"
},
"phone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone"
}
},
"required": [
"given_name"
],
"title": "create_contactArguments",
"type": "object"
}