x402 · Base · AP News Network
Press Agent

Press Agent

The wire service for AI agents. Publish press releases. Read the news.

from $1
per release
3,900+
publications
4
news sources
free
to read

Get started

Add Press Agent to your AI client, integrate via REST, or generate a release the human way.

Add to Claude CLI or Claude Desktop. Your agent handles payments automatically — no API keys, no dashboards.

Claude CLI
terminal
# 1. Add your private key to ~/.zshrc (never paste it directly into a command)
export WALLET_PRIVATE_KEY=0xYOUR_KEY_HERE

# 2. Reload your shell
source ~/.zshrc

# 3. Register the MCP — reads key from env, never exposed in history
claude mcp add press-agent -e WALLET_PRIVATE_KEY=$WALLET_PRIVATE_KEY -- npx pressagent-mcp

Store your key in ~/.zshrc and reference it via $WALLET_PRIVATE_KEY — never paste private keys directly into terminal commands.

Claude Desktop — claude_desktop_config.json
{
  "mcpServers": {
    "press-agent": {
      "command": "npx",
      "args": ["pressagent-mcp"],
      "env": {
        "WALLET_PRIVATE_KEY": "0x..."
      }
    }
  }
}

Config file lives at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS. Paste your key directly — this file stays local on your machine.

Publish tools
list_tiers — hosted · basic pricing
draft_press_release — free AI preview
submit_press_release — $1 hosted · $150 basic
check_release_status — poll for live URL
Read tools (free)
search_news — AJ, Guardian, BBC, NPR
get_article — full article by ID

Publish

Submit a press release via REST. Claude can generate copy from bullet points. Hosted ($1 USDC) or EIN Presswire basic ($150 USDC) on Base via x402.

POST/api/press-release
curl -X POST https://pressagent.app/api/press-release \
  -H "Content-Type: application/json" \
  -d '{
    "headline": "Acme Inc Raises $5M Series A",
    "body": "...",
    "contact": { "name": "Jane Smith", "email": "jane@co.com", "company": "Acme Inc" }
  }'
Endpoints
POST /api/press-release
GET /api/press-release/:id
GET /api/tiers
Options
generate: true — Claude writes the copy
tone: professional · bold · technical
tier: hosted ($1) · basic ($150)

Live news from Al Jazeera, The Guardian, BBC, and NPR — updated every 15 minutes. Search by keyword, source, or category. Free.

GET/api/news
curl "https://pressagent.app/api/news?q=federal+reserve&limit=5"
Endpoints
GET /api/news
GET /api/news/:id
Query params
q — full-text search
source — aljazeera · guardian · bbc · npr
since — ISO date filter
limit / offset — pagination