Google Looker · Capability

Google Looker API — Authentication

Google Looker API — Authentication. 1 operations. Lead operation: Login. Self-contained Naftiko capability covering one Google Looker business surface.

Run with Naftiko Google LookerAuthentication

What You Can Do

POST
Login — Login
/v1/login

MCP Tools

login

Login

Capability Spec

openapi-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Google Looker API — Authentication
  description: 'Google Looker API — Authentication. 1 operations. Lead operation: Login. Self-contained Naftiko capability
    covering one Google Looker business surface.'
  tags:
  - Google Looker
  - Authentication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GOOGLE_LOOKER_API_KEY: GOOGLE_LOOKER_API_KEY
capability:
  consumes:
  - type: http
    namespace: openapi-authentication
    baseUri: https://your-instance.cloud.looker.com:19999/api/4.0
    description: Google Looker API — Authentication business capability. Self-contained, no shared references.
    resources:
    - name: login
      path: /login
      operations:
      - name: login
        method: POST
        description: Login
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: client_id
          in: query
          type: string
          description: Looker API client ID for the user account being authenticated.
          required: true
        - name: client_secret
          in: query
          type: string
          description: Looker API client secret paired with the client_id.
          required: true
    authentication:
      type: bearer
      token: '{{env.GOOGLE_LOOKER_API_KEY}}'
  exposes:
  - type: rest
    namespace: openapi-authentication-rest
    port: 8080
    description: REST adapter for Google Looker API — Authentication. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/login
      name: login
      description: REST surface for login.
      operations:
      - method: POST
        name: login
        description: Login
        call: openapi-authentication.login
        with:
          client_id: rest.client_id
          client_secret: rest.client_secret
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openapi-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Google Looker API — Authentication. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: login
      description: Login
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openapi-authentication.login
      with:
        client_id: tools.client_id
        client_secret: tools.client_secret
      outputParameters:
      - type: object
        mapping: $.