get_contacts_from_list
Retrieve contacts from a specific address book using its unique URL. Integrates with the DAV MCP Server for seamless access to CardDAV services like Fastmail and iCloud.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addressBookUrl | Yes | The unique identifier (URL) of the contact list from which to fetch contacts. You can get this from 'get_my_contact_lists'. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addressBookUrl": {
"description": "The unique identifier (URL) of the contact list from which to fetch contacts. You can get this from 'get_my_contact_lists'.",
"type": "string"
}
},
"required": [
"addressBookUrl"
],
"type": "object"
}