IntegrateIntegrate
Integrations

Google Keep Integration

Manage Google Keep notes, attachments, and sharing permissions

The Google Keep integration provides access to manage Google Keep notes, attachments, and sharing permissions through the Integrate MCP server.

Installation

The Google Keep integration is included with the SDK:

import { googleKeepIntegration } from "integrate-sdk/server";

Setup

1. Create a Google Keep OAuth App

  1. Create an OAuth application for Google Keep
  2. Configure your redirect URI
  3. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Google Keep integration to your server configuration. The integration automatically reads GOOGLE_KEEP_CLIENT_ID and GOOGLE_KEEP_CLIENT_SECRET from your environment variables:

import { createMCPServer, googleKeepIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    googleKeepIntegration({
    }),
  ],
});

You can override the environment variables by passing explicit values:

googleKeepIntegration({
  clientId: process.env.CUSTOM_GOOGLE_KEEP_ID,
  clientSecret: process.env.CUSTOM_GOOGLE_KEEP_SECRET,
});

3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

import { client } from "integrate-sdk";

await client.authorize("google_keep");
const result = await client.google_keep.listNotes({});

console.log(result);

If you're using a custom client, add the integration to the integrations array:

import { createMCPClient, googleKeepIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [googleKeepIntegration()],
});

Configuration Options

Prop

Type

Tools

google_keep_list_notes

Keep list notes

Prop

Type

google_keep_get_note

Keep get note

Prop

Type

google_keep_create_text_note

Keep create text note

Prop

Type

google_keep_create_list_note

Keep create list note

Prop

Type

google_keep_delete_note

Keep delete note

Prop

Type

google_keep_download_attachment

Keep download attachment

Prop

Type

google_keep_batch_create_permissions

Keep batch create permissions

Prop

Type

google_keep_batch_delete_permissions

Keep batch delete permissions

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page