press_release_generate

Pack: press-release · Endpoint: https://gateway.pipeworx.io/press-release/mcp

Transform an announcement into a professional press release. Provide announcement text and receive a formatted release with headline, body, boilerplate, and media contact section.

Example call

Arguments

{
  "announcement": "We are launching a new AI-powered analytics platform that helps businesses make data-driven decisions in real-time.",
  "company": "TechVision Inc.",
  "tone": "disrupting",
  "location": "San Francisco, CA"
}

curl

curl -X POST https://gateway.pipeworx.io/press-release/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"press_release_generate","arguments":{"announcement":"We are launching a new AI-powered analytics platform that helps businesses make data-driven decisions in real-time.","company":"TechVision Inc.","tone":"disrupting","location":"San Francisco, CA"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('press_release_generate', {
  "announcement": "We are launching a new AI-powered analytics platform that helps businesses make data-driven decisions in real-time.",
  "company": "TechVision Inc.",
  "tone": "disrupting",
  "location": "San Francisco, CA"
});

More examples

{
  "announcement": "After careful reflection, we are shifting our focus to sustainable products and reducing our carbon footprint by 50% by 2025.",
  "tone": "transparent"
}

Response shape

FieldTypeDescription
headlinestringProfessional headline for the press release
bodystringMain body content of the press release
boilerplatestringCompany boilerplate section
media_contactstringMedia contact information section
Full JSON Schema
{
  "type": "object",
  "properties": {
    "headline": {
      "type": "string",
      "description": "Professional headline for the press release"
    },
    "body": {
      "type": "string",
      "description": "Main body content of the press release"
    },
    "boilerplate": {
      "type": "string",
      "description": "Company boilerplate section"
    },
    "media_contact": {
      "type": "string",
      "description": "Media contact information section"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "press-release": {
      "url": "https://gateway.pipeworx.io/press-release/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026