SocialGO

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. 1
    search_services()

    Narrows thousands of services down to the few that match the request.

  2. 2
    get_service()

    Confirms the rate, min and max for one service, before any money moves.

  3. 3
    create_order()

    Places the order against your link, at the quantity you asked for.

  4. 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.

mcp client config
{
  "mcpServers": {
    "socialgo": {
      "command": "npx",
      "args": ["-y", "@socialgo/mcp"],
      "env": { "SOCIALGO_API_KEY": "your_api_key_here" }
    }
  }
}
add to Claude Code
claude mcp add socialgo -- npx @socialgo/mcp

Going 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

Quick start

Grab your API key from the dashboard, then place your first order, the same call the panel runs underneath:

curl -X POST https://api.socialgo.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1" \
  -d "link=https://instagram.com/example" \
  -d "quantity=1000"

Ship your first integration

Create an account, generate a key, and connect your agent or your code today.

Get your API key