From c77dbda13c207fb67cce46f70bf03d33259f5539 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Tue, 30 Dec 2025 17:35:23 -0800 Subject: [PATCH] Add contacts tests to test.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- test.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index d770b05..775194e 100755 --- a/test.sh +++ b/test.sh @@ -65,9 +65,19 @@ SERVER_INFO=$(mcp_request 3 "tools/call" '{"name":"get_server_info","arguments": echo "$SERVER_INFO" # List mailboxes -echo -e "\n[5/5] Listing mailboxes..." +echo -e "\n[5/7] Listing mailboxes..." MAILBOXES=$(mcp_request 4 "tools/call" '{"name":"list_mailboxes","arguments":{}}') echo "$MAILBOXES" +# List address books +echo -e "\n[6/7] Listing address books..." +ADDRESSBOOKS=$(mcp_request 5 "tools/call" '{"name":"list_addressbooks","arguments":{}}') +echo "$ADDRESSBOOKS" + +# List contacts +echo -e "\n[7/7] Listing contacts..." +CONTACTS=$(mcp_request 6 "tools/call" '{"name":"list_contacts","arguments":{"limit":10}}') +echo "$CONTACTS" + echo -e "\n================================" echo "All tests completed!"