# Resource Guru — Pipedream Connect

> Blissfully simple resource management software.

- API slug: `resource_guru` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Business Management
- Website: https://resourceguruapp.com/
- This page (HTML): https://pipedream.com/apps/resource-guru
- 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: resource_guru`

```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": "resource_guru",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Create Booking:
const result = await mcp.callTool({
  name: "resource_guru-create-booking",
  arguments: {
    resourceIds: ["Resource Ids"],
    startDate: "Start Date",
  },
})
```

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

## API proxy

For a Resource Guru 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://api.resourceguruapp.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkucmVzb3VyY2VndXJ1YXBwLmNvbS92MS9tZQ?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: "resource_guru-create-booking",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    resource_guru: { authProvisionId: "apn_xxxxxxx" },
    resourceIds: ["Resource Ids"],
    startDate: "Start Date",
  },
})
```

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

## Actions (8)

### `resource_guru-create-booking` — Create Booking (Write)

Create a new booking for an account. See the documentation

Full schema: https://pipedream.com/apps/resource-guru/actions/create-booking.md

### `resource_guru-delete-booking` — Delete Booking (Write)

Delete a specific booking identified by Id. See the documentation

Full schema: https://pipedream.com/apps/resource-guru/actions/delete-booking.md

### `resource_guru-list-booker-id-options` — List Booker Id Options (Read-only)

Retrieves available options for the Booker Id field.

Full schema: https://pipedream.com/apps/resource-guru/actions/list-booker-id-options.md

### `resource_guru-list-booking-id-options` — List Booking Id Options (Read-only)

Retrieves available options for the Booking Id field.

Full schema: https://pipedream.com/apps/resource-guru/actions/list-booking-id-options.md

### `resource_guru-list-client-id-options` — List Client Id Options (Read-only)

Retrieves available options for the Client Id field.

Full schema: https://pipedream.com/apps/resource-guru/actions/list-client-id-options.md

### `resource_guru-list-project-id-options` — List Project Id Options (Read-only)

Retrieves available options for the Project Id field.

Full schema: https://pipedream.com/apps/resource-guru/actions/list-project-id-options.md

### `resource_guru-list-resource-ids-options` — List Resource Ids Options (Read-only)

Retrieves available options for the Resource Ids field.

Full schema: https://pipedream.com/apps/resource-guru/actions/list-resource-ids-options.md

### `resource_guru-update-booking` — Update Booking (Write)

Update a specific booking identified by Id. See the documentation

Full schema: https://pipedream.com/apps/resource-guru/actions/update-booking.md

## Triggers (3)

### `resource_guru-new-booking-event-instant` — New Booking Event (Instant) (Instant)

Emit new event when a booking is created, updated or deleted.

Full schema: https://pipedream.com/apps/resource-guru/triggers/new-booking-event-instant.md

### `resource_guru-new-project-event-instant` — New Project Event (Instant) (Instant)

Emit new event when a project is created, updated or deleted.

Full schema: https://pipedream.com/apps/resource-guru/triggers/new-project-event-instant.md

### `resource_guru-new-resource-event-instant` — New Resource Event (Instant) (Instant)

Emit new event when a resource is created, updated or deleted.

Full schema: https://pipedream.com/apps/resource-guru/triggers/new-resource-event-instant.md

---

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