📇 MCP Google Contacts Server
A Google Contacts server using MCP
Overview
MCP Google Contacts Server is a Machine Conversation Protocol (MCP) server that provides Google Contacts functionality, allowing AI assistants to manage contacts, search your organization's directory, and interact with Google Workspace.
To use the server, clone the repository, install the required dependencies, and set up Google API credentials. Start the server using Python or the recommended uv command.
- List and search Google Contacts - Create, update, and delete contacts - Search Google Workspace directory - Access "Other Contacts" and Google Workspace users
- Managing personal and organizational contacts through AI assistants.
- Integrating contact management into applications using MCP.
- Automating contact-related tasks in Google Workspace.
Add to your AI client
Use these steps to connect 📇 MCP Google Contacts Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-google-contacts-server-rayanzaki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-contacts-server-rayanzaki"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-google-contacts-server-rayanzaki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-contacts-server-rayanzaki"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-google-contacts-server-rayanzaki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-contacts-server-rayanzaki"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-google-contacts-server-rayanzaki": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-contacts-server-rayanzaki"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-google-contacts-server-rayanzaki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-contacts-server-rayanzaki"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-google-contacts-server-rayanzaki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-contacts-server-rayanzaki"
]
}
}
}