MCPAgent workflows for Postqued

Connect your AI agent to the publishing workflow.

Postqued exposes a remote MCP server so Claude, Cursor, Windsurf, and compatible agents can upload media, create publish requests, and check status without leaving your workflow.

Remote server

https://mcp.postqued.com

Auth

Bearer API key

Uploads

Presigned media flow

Publishing

Dry-run support

Setup

One endpoint, several agent clients.

Generate a Postqued API key, add the MCP server URL to your client, then let the agent discover the available tools.

Get API key

Claude Desktop

Add Postqued as a remote MCP server and pass your API key in the Authorization header.

{
  "mcpServers": {
    "postqued": {
      "type": "http",
      "url": "https://mcp.postqued.com",
      "headers": {
        "Authorization": "Bearer pq_your_api_key"
      }
    }
  }
}

Claude Code

Register the remote server from your terminal.

claude mcp add --transport http postqued https://mcp.postqued.com \
  -H "Authorization: Bearer pq_your_api_key"

Cursor

Add the same HTTP server configuration to your project MCP config.

{
  "mcpServers": {
    "postqued": {
      "type": "http",
      "url": "https://mcp.postqued.com",
      "headers": {
        "Authorization": "Bearer pq_your_api_key"
      }
    }
  }
}
Available tools

The agent gets practical publishing actions.

ToolDescription
list_accountsList connected platform accounts
upload_contentStart an upload and receive a presigned URL
complete_uploadFinalize uploaded content for publishing
list_contentBrowse reusable content assets
publish_contentCreate publish requests with dry-run validation
check_publish_statusCheck the status of a publish request
batch_publish_statusCheck multiple publish requests at once
cancel_publishCancel a pending or scheduled request
Example prompt

Ask in plain language.

Your agent can list connected accounts, upload a media file, complete the upload, and create a publish request through the MCP tools.

You

Upload this launch video, publish it to our Instagram account, and check the status after submission.

Agent

I’ll use list_accounts, upload_content, complete_upload, and publish_content.