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
- Create an OAuth application for Google Keep
- Configure your redirect URI
- 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
export interface GoogleKeepIntegrationConfig {
/** Google OAuth client ID (defaults to GOOGLE_KEEP_CLIENT_ID env var) */
clientId?: string;
Tools
google_keep_list_notes
Keep list notes
export interface GoogleKeepListNotesParams {
page_size?: number;
google_keep_get_note
Keep get note
export interface GoogleKeepGetNoteParams {
name: string;
google_keep_create_text_note
Keep create text note
export interface GoogleKeepCreateTextNoteParams {
title?: string;
google_keep_create_list_note
Keep create list note
export interface GoogleKeepCreateListNoteParams {
title?: string;
google_keep_delete_note
Keep delete note
export interface GoogleKeepDeleteNoteParams {
name: string;
google_keep_download_attachment
Keep download attachment
export interface GoogleKeepDownloadAttachmentParams {
name: string;
google_keep_batch_create_permissions
Keep batch create permissions
export interface GoogleKeepBatchCreatePermissionsParams {
parent: string;
google_keep_batch_delete_permissions
Keep batch delete permissions
export interface GoogleKeepBatchDeletePermissionsParams {
parent: string;
Notes
- Category: Productivity
- Authentication mode: OAuth