Developers
Connect your agent
Everything in the panel, the catalog, pricing and order lifecycle, is reachable by machine. Run the MCP server in Claude or Cursor, or call the API, CLI and SDKs from your code.
Start here
Whatever you place through the dashboard, you place by machine, same catalog, same pricing, same order lifecycle. Authenticate with your API key, send an action, then poll or subscribe for status. Every surface confirms the rate before it spends.
MCP server
Run the panel inside your agent
Point Claude, Cursor or any MCP client at the SocialGO server and your agent gets the catalog and order tools directly. Tell it what to grow in plain language; it calls the tools, confirms the price, and places the order.
- 1
search_services()Narrows thousands of services down to the few that match the request.
- 2
get_service()Confirms the rate, min and max for one service, before any money moves.
- 3
create_order()Places the order against your link, at the quantity you asked for.
- 4
order_status()Tracks progress until the order completes.
get_service confirms rate, min and max before create_order spends a cent. The agent never buys on its own.
{
"mcpServers": {
"socialgo": {
"command": "npx",
"args": ["-y", "@socialgo/mcp"],
"env": { "SOCIALGO_API_KEY": "your_api_key_here" }
}
}
}claude mcp add socialgo -- npx @socialgo/mcpThe other doors
Not running an agent? The same catalog and orders are reachable over HTTP, from your terminal and from a typed client.
REST API
One endpoint, form-encoded actions: list services, add orders, drip-feed, check status, refill, cancel and read balance.
Read the API docsCommand line
Place and track orders from your terminal or scripts, built for cron jobs, CI pipelines and bulk operations.
Open the CLI guideSDK
Typed clients that wrap the API, so you build orders and automations into your own app in minutes.
Browse the SDKsGoing further
Webhooks
Subscribe to order events instead of polling. We POST a signed payload to your endpoint whenever an order changes state, pending, processing, completed, partial or canceled.
Every delivery carries an HMAC signature header, so you can verify it came from us.
SDKs
Thin official wrappers around the REST API for the most common runtimes, so you integrate in minutes instead of hand-rolling HTTP calls.
- Node.js / TypeScript
- Python
- PHP
Ship your first integration
Create an account, generate a key, and connect your agent or your code today.
Get your API key