# Roblox — Pipedream Connect

> Open Cloud API from Roblox, the online game platform

- API slug: `roblox` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Entertainment
- Website: https://create.roblox.com
- This page (HTML): https://pipedream.com/apps/roblox
- Tools: 19 actions · 0 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: roblox`

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

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

const { tools } = await mcp.listTools()

// e.g. run Delete Data Store Entry:
const result = await mcp.callTool({
  name: "roblox-delete-data-store-entry",
  arguments: {
    universeId: "Universe ID",
    dataStoreId: "Data Store ID",
  },
})
```

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

## API proxy

For a Roblox 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://apis.roblox.com/api-keys/v1/introspect

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGlzLnJvYmxveC5jb20vYXBpLWtleXMvdjEvaW50cm9zcGVjdA?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: "roblox-delete-data-store-entry",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    roblox: { authProvisionId: "apn_xxxxxxx" },
    universeId: "Universe ID",
    dataStoreId: "Data Store ID",
  },
})
```

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

## Actions (19)

### `roblox-delete-data-store-entry` — Delete Data Store Entry (Write)

Delete an entry from a Roblox data store. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/delete-data-store-entry.md

### `roblox-generate-user-thumbnail` — Generate User Thumbnail (Read-only)

Generate a thumbnail image for a Roblox user's avatar. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/generate-user-thumbnail.md

### `roblox-get-data-store-entry` — Get Data Store Entry (Read-only)

Get the value and metadata of a Roblox data store entry. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/get-data-store-entry.md

### `roblox-get-group` — Get Group (Read-only)

Get information about a Roblox group by ID. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/get-group.md

### `roblox-get-place` — Get Place (Read-only)

Get information about a place within a Roblox universe. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/get-place.md

### `roblox-get-universe` — Get Universe (Read-only)

Get information about a Roblox universe (experience) by ID. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/get-universe.md

### `roblox-get-user` — Get User (Read-only)

Get information about a Roblox user by ID. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/get-user.md

### `roblox-increment-data-store-entry` — Increment Data Store Entry (Write)

Increment the numeric value of a Roblox data store entry by a given amount. The existing value and the increment must both be integers. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/increment-data-store-entry.md

### `roblox-list-data-store-entries` — List Data Store Entries (Read-only)

List the entries (keys) in a Roblox data store. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/list-data-store-entries.md

### `roblox-list-data-stores` — List Data Stores (Read-only)

List the data stores in a Roblox universe. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/list-data-stores.md

### `roblox-list-group-memberships` — List Group Memberships (Read-only)

List the memberships (members) of a Roblox group. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/list-group-memberships.md

### `roblox-list-group-roles` — List Group Roles (Read-only)

List the roles of a Roblox group. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/list-group-roles.md

### `roblox-list-inventory-items` — List Inventory Items (Read-only)

List the items in a Roblox user's inventory. The user's inventory must be public, or the API key owner must be the user. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/list-inventory-items.md

### `roblox-publish-message` — Publish Message (Write)

Publish a message to all servers of a Roblox universe. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/publish-message.md

### `roblox-restart-servers` — Restart Servers (Write)

Restart all running servers of a Roblox universe, typically to deploy a new place version without disrupting active players. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/restart-servers.md

### `roblox-send-user-notification` — Send User Notification (Write)

Send an experience notification to a Roblox user. Requires a notification string created in the Creator Dashboard. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/send-user-notification.md

### `roblox-set-data-store-entry` — Set Data Store Entry (Write)

Create or update the value of a Roblox data store entry. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/set-data-store-entry.md

### `roblox-update-place` — Update Place (Write)

Update the name, description, or server size of a place within a Roblox universe. See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/update-place.md

### `roblox-update-universe` — Update Universe (Write)

Update settings of a Roblox universe (experience). See the documentation

Full schema: https://pipedream.com/apps/roblox/actions/update-universe.md

---

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