# Google Business Profile — Pipedream Connect

> Show up when customers search for businesses on Google Search and Maps. Easily manage multiple locations. Leverage the latest engagement features to stay connected to customers.

- API slug: `google_my_business` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Business Management
- Website: https://developers.google.com/my-business
- Managed OAuth scopes: `https://www.googleapis.com/auth/business.manage`
- This page (HTML): https://pipedream.com/apps/google-my-business
- Tools: 8 actions · 3 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: google_my_business`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "google_my_business",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create or Update Reply to Review:
const result = await mcp.callTool({
  name: "google_my_business-create-update-reply-to-review",
  arguments: {
    account: "Account Name",
    location: "Location",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Google Business Profile endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://mybusinessaccountmanagement.googleapis.com/v1/accounts

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9teWJ1c2luZXNzYWNjb3VudG1hbmFnZW1lbnQuZ29vZ2xlYXBpcy5jb20vdjEvYWNjb3VudHM?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "google_my_business-create-update-reply-to-review",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    google_my_business: { authProvisionId: "apn_xxxxxxx" },
    account: "Account Name",
    location: "Location",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (8)

### `google_my_business-create-update-reply-to-review` — Create or Update Reply to Review (Write)

Create or update a reply to the specified review. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/create-update-reply-to-review.md

### `google_my_business-create-post` — Create Post (Write)

Create a new local post associated with a location. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/create-post.md

### `google_my_business-get-specific-review` — Get a Specific Review (Read-only)

Return a specific review by name. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/get-specific-review.md

### `google_my_business-get-reviews-multiple-locations` — Get Reviews from Multiple Locations (Read-only)

Get reviews from multiple locations at once. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/get-reviews-multiple-locations.md

### `google_my_business-list-accounts` — List Accounts (Read-only)

Lists all accounts accessible to the authenticated user. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/list-accounts.md

### `google_my_business-list-all-reviews` — List All Reviews (Read-only)

List all reviews of a location to audit reviews in bulk. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/list-all-reviews.md

### `google_my_business-list-locations` — List Locations (Read-only)

Lists the locations for the specified account. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/list-locations.md

### `google_my_business-list-posts` — List Posts (Read-only)

List local posts associated with a location. See the documentation

Full schema: https://pipedream.com/apps/google-my-business/actions/list-posts.md

## Triggers (3)

### `google_my_business-new-post-created` — New Post Created (Polling)

Emit new event for each new local post on a location See the documentation

Full schema: https://pipedream.com/apps/google-my-business/triggers/new-post-created.md

### `google_my_business-new-review-created` — New Review Created (Polling)

Emit new event for each new review on a location See the documentation

Full schema: https://pipedream.com/apps/google-my-business/triggers/new-review-created.md

### `google_my_business-new-review-created-multiple-locations` — New Review Created (Multiple Locations) (Polling)

Emit new event for each new review on any of the selected locations See the documentation

Full schema: https://pipedream.com/apps/google-my-business/triggers/new-review-created-multiple-locations.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
