Csv To Vcf MCP tool
findutils:csv_to_vcf Convert a CSV of contacts into one multi-card .vcf file that iPhone, Android, Google Contacts and Outlook import. Columns are matched by name: full name or first and last name, email, phone or mobile, work and home phone, company, job title, website, notes, street, city, region, postal code, country and birthday, including the headers Google Contacts, Outlook and vcf_to_csv write; column_map overrides any match. One card per row with a name, email or phone; other rows are skipped and listed by row number. vCard 3.0 by default, 4.0 on request. Values are escaped and lines folded at 75 octets per RFC 6350. Photos are not written and nothing is uploaded or synced.
Arguments
application/json-
input
string required
CSV text with a header row.
-
delimiter
string optional
Field separator. Default: detected from the header (comma, semicolon, tab or pipe).
-
version
string optional
vCard version. Defaults to 3.0. One of
3.0 · 4.0. Default"3.0". -
column_map
object optional
Header name per field when the automatic match is wrong: full_name, given_name, family_name, email, emails, phone, work_phone, home_phone, phones, organization, title, url, note, street, city, region, postal_code, country, birthday, uid.
Example arguments
Verified{
"input": "Name,Email,Phone\nJane Doe,[email protected],+15551234\n"
} More Data tools
- Api Docs Generator Return API documentation generated from a list of endpoints, as Markdown (with table of contents, request/response examples) or as an OpenAP
- Bookmarks Html To Csv Convert a browser bookmarks.html export from Chrome, Firefox, Edge, Safari or any other browser that writes the Netscape bookmark format int
- Csv To Bookmarks Html Convert a CSV of links into a Netscape bookmarks.html file that Chrome, Firefox, Edge and Safari import.
- Csv To Json Parse CSV text into an array of objects keyed by the header row.
- Csv To Ndjson Convert CSV into newline-delimited JSON (NDJSON, JSON Lines, .jsonl): one JSON object per line, keyed by the header row.
- Csv To Sql Convert CSV text into SQL INSERT statements, optionally preceded by a CREATE TABLE.