# Create Post — WordPressOrg

> Create a new WordPress post using the REST API directly. See the documentation

- Key: `wordpress_org-create-post`
- Type: Action (Write)
- Version: 0.0.6
- App: WordPressOrg (`wordpress_org`) — https://pipedream.com/apps/wordpress-org.md
- This page (HTML): https://pipedream.com/apps/wordpress-org/actions/create-post
- Hints: open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/wordpress_org/actions/create-post/create-post.mjs

## Description

Create a new WordPress post using the REST API directly. [See the documentation](https://developer.wordpress.org/rest-api/reference/posts/#create-a-post)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `title` | `string` | Yes | Title of the post |
| `content` | `string` | Yes | The content of the post |
| `excerpt` | `string` | No | The excerpt of the post |
| `status` | `string` | No | Status of the post Options are loaded from the connected account. |
| `commentStatus` | `string` | No | Whether or not comments are allowed on the post |
| `author` | `string` | No | Limit result set to posts assigned to a specific author Options are loaded from the connected account. |
| `categories` | `string[]` | No | Categories assigned to the post Options are loaded from the connected account. |
| `tags` | `string[]` | No | Tags assigned to the post Options are loaded from the connected account. |
| `featuredMedia` | `string` | No | Identifier of an uploaded media item Options are loaded from the connected account. |
| `meta` | `object` | No | Metafields for the post. Note: Metafield keys must be registered in your Wordpress instance. |

## Run it

**MCP**

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

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

const { tools } = await mcp.listTools()

// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
  name: "wordpress_org-create-post",
  arguments: {
    title: "Title",
    content: "Content",
  },
})
```

**TypeScript**

```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: "wordpress_org-create-post",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    wordpress_org: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    content: "Content",
  },
})

console.log(result)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "wordpress_org-create-post",
    "configured_props": {
      "wordpress_org": { "authProvisionId": "apn_xxxxxxx" },
      "title": "Title",
      "content": "Content"
    }
  }'
```

---

- App: https://pipedream.com/apps/wordpress-org.md · All apps: https://pipedream.com/apps
