IntegrateIntegrate
Integrations

Looker Integration

Manage Looker me, search dashboards, get dashboard, run query, list looks

The Looker integration provides access to manage Looker me, search dashboards, get dashboard, run query, list looks through the Integrate MCP server.

Installation

The Looker integration is included with the SDK:

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

Setup

1. Create a Looker OAuth App

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

2. Configure the Integration on Your Server

Add the Looker integration to your server configuration. The integration automatically reads LOOKER_CLIENT_ID and LOOKER_CLIENT_SECRET from your environment variables:

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

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    lookerIntegration({
      scopes: ["read", "write"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

lookerIntegration({
  clientId: process.env.CUSTOM_LOOKER_ID,
  clientSecret: process.env.CUSTOM_LOOKER_SECRET,
      scopes: ["read", "write"], // Optional
});

3. Client-Side Usage

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

import { client } from "integrate-sdk";

await client.authorize("looker");
const result = await client.looker.me({
  looker_base_url: "value",
});

console.log(result);

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

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

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

Configuration Options

Prop

Type

Default Scopes

These defaults are applied unless you override scopes in the integration config:

  • read
  • write

Tools

looker_me

Me

Prop

Type

looker_search_dashboards

Search dashboards

Prop

Type

looker_get_dashboard

Get dashboard

Prop

Type

looker_run_query

Run query

Prop

Type

looker_list_looks

List looks

Prop

Type

looker_get_look

Get look

Prop

Type

Notes

  • Category: Data & BI
  • Authentication mode: OAuth

On this page