G

Google Keep

Query Google Keep notes.

·No reviews yet
Repo
Share:

About

Auto-generated

Google Keep is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Google Keep.

What does the Google Keep MCP do?
The Google Keep MCP allows you to query your Google Keep notes through a standardized Model Context Protocol interface. It integrates with various MCP clients to provide programmatic access to your notes, enabling automation and custom application development.
How do I configure Google Keep MCP in a client like Cline?
To configure the Google Keep MCP in a client like Cline, install it using the command 'cline install google-keep'. You'll then need to follow the OAuth flow to authenticate your Google account, which will grant the MCP the necessary permissions to access your notes.
Does the Google Keep MCP require authentication?
Yes, the Google Keep MCP requires OAuth authentication. This process securely connects your Google account to the MCP, allowing it to access your Google Keep notes based on the permissions you grant during the OAuth flow.
What capabilities does the Google Keep MCP expose?
The Google Keep MCP primarily exposes capabilities related to querying your Google Keep notes. Specific tools and functions depend on the implementation, but typically include fetching, listing, and potentially filtering your notes based on various criteria.
Is there a cost associated with using the Google Keep MCP?
The Google Keep MCP itself is community-provided and hosted on GitHub, implying no direct cost for the MCP. However, standard Google Keep usage policies and any associated costs for the underlying Google services would still apply.
What is a known limitation of the Google Keep MCP?
A realistic limitation is that the MCP's functionality is restricted to querying notes. It may not support creation, modification, or deletion of notes, or advanced Google Keep features such as label management, without explicit tool exposure.

Install Google Keep

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "google-keep": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-keep"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "google-keep": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-keep"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "google-keep": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-keep"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.