View as Markdown
Roblox icon

Roblox ACTION

Set Data Store Entry

Create or update the value of a Roblox data store entry. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Roblox account once, then configure and run Set Data Store Entry from your backend or agent.

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-set-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",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Set Data Store Entry inputs
Property Type Description
universeId Universe ID string
The ID of the universe (experience). Find it in the Creator Dashboard under your experience's settings, or via the three-dot menu > Copy Universe ID.
Required
dataStoreId Data Store ID string
The name/ID of the data store. Run List Data Stores to find available data stores in a universe.
Required
entryId Entry ID string
The ID (key) of the data store entry. Run List Data Store Entries to find available entries.
Required
value Value string
The value to store. JSON is parsed automatically, so you can pass a string ("hello"), a number (42), a boolean, an array, or a JSON object ({"coins":100}).
Required
users Users string[]
User IDs associated with the entry (for GDPR tracking). Format: users/{user_id}.
Optional
attributes Attributes object
An arbitrary set of attributes (metadata) to associate with the entry.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
roblox-set-data-store-entry
Version
0.0.2
App
Roblox
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes