View as Markdown
DropInBlog icon

DropInBlog ACTION

Create Post

Allows you to create a new blog post in your DropInBlog account. Requires a private API key. See the documentation.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's DropInBlog account once, then configure and run Create Post 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: "dropinblog-create-post",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    dropinblog: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    content: "Body",
  },
})

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.

Create Post inputs
Property Type Description
title Title string
Title for your blog post.
Required
content Body string
The body content of your blog post in HTML.
Required
seoTitle SEO Title string
SEO title for your post. If not set it will default to the title.
Optional
seoDescription SEO Description string
SEO description for your post.
Optional
keyword Keyword string
SEO keyword for your post.
Optional
publishedAt Published At string
Published date and time for your post. If set the post will be published. If not set the post will be put in draft. Eg: 2021-01-01T00:00:00Z
Optional
featuredImage Featured Image string
Featured image URL for your post.
Optional
categoryIds Category ID integer[]
Category IDs to attach to your post.
Optional Dynamic
authorId Author ID string
Author ID to attach to your post.
Optional Dynamic

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
dropinblog-create-post
Version
0.0.3
App
DropInBlog
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes