View as Markdown
Giphy icon

Giphy ACTION

Upload a Gif

Uploads a Gif or video file up to 100MB programmatically on GIPHY.com See the docs here.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Giphy account once, then configure and run Upload a Gif 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: "giphy-upload-gif",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    giphy: { authProvisionId: "apn_xxxxxxx" },
    imgUrl: "URL",
    tags: "Tags",
  },
})

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.

Upload a Gif inputs
Property Type Description
imgUrl URL string
The URL for the image or video you wish to upload.
Required
tags Tags string
A comma delimited list of tags to be applied to the upload.
Optional
username Username string
Your assigned username (required for approved apps only).
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
giphy-upload-gif
Version
0.0.3
App
Giphy
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes