pressbeat
npx skills add https://github.com/pressbeat/skills --skill pressbeat
Agent 安装分布
Skill 文档
PressBeat – Guaranteed Press Articles
Order guaranteed published articles for your brand directly from your AI agent.
Pricing
| Plan | Price | Publication | Delivery | Guarantee |
|---|---|---|---|---|
| Standard | $500 | DR30+ | ~30 days | 90-day money-back |
| Premium | $2,000 | DR50+ | ~30 days | 90-day money-back |
Both plans include a do-follow backlink.
Setup
Option 1: MCP Server (Recommended)
Add to your MCP configuration (Cursor, Claude Desktop, etc.):
{
"mcpServers": {
"pressbeat": {
"url": "https://mcp.pressbeat.io/mcp"
}
}
}
Option 2: REST API
Base URL: https://api.pressbeat.io
Get an API key from https://app.pressbeat.io/settings/api
See references/API.md for full API documentation.
Available Tools
| Tool | Description |
|---|---|
order_article |
Order a guaranteed article |
get_pricing |
View pricing details |
list_organizations |
List your organizations |
get_organization_details |
Get org info including website |
set_organization_url |
Set website URL for an org |
create_organization |
Create a new organization |
check_credit_balance |
Check your credit balance |
get_topup_link |
Get payment link to add credits |
configure_auto_reload |
Setup automatic credit reload |
How to Order an Article
Step 1: Show pricing (optional)
If the user asks about pricing, call get_pricing.
Step 2: Place the order
Call order_article with:
plan: "standard" or "premium"
organization: (optional) org name if user has multiple
topic: (optional) article angle/subject
country: (optional) target country for publication
confirmed: false (first call shows preview)
Step 3: Handle the response
If preview shown â Ask user to confirm, then call again with confirmed: true
If insufficient credits â Call get_topup_link with the amount needed, show the payment link
If no website configured â Ask user for their website, call set_organization_url
If multiple organizations â Ask user which one, pass organization parameter
Example Conversations
Simple order
User: “Order a press article for my company”
- Call
order_articlewithplan: "standard" - Tool returns preview with cost and balance
- User confirms
- Call
order_articlewithconfirmed: true - Order placed, show confirmation
With topic
User: “Get me a premium article about our new AI product launch”
- Call
order_articlewithplan: "premium",topic: "AI product launch" - User confirms
- Call
order_articlewithconfirmed: true
Insufficient credits
User: “Order an article”
- Call
order_articlewithplan: "standard" - Response shows “insufficient credits, need $300 more”
- Call
get_topup_linkwithamount: 300 - Show payment link to user
- After payment, user asks to retry
- Call
order_articleagain
Authentication
The MCP server uses OAuth 2.0. Users authenticate once via browser and the session persists.
For REST API, use:
- Bearer token:
Authorization: Bearer <token> - Or API key:
X-API-Key: <key>
Support
- Documentation: https://pressbeat.io/developers
- Email: support@pressbeat.io