Skip to content

Agent Signup: Let Your Agent Open Your DiscoLike Account

Your agent can open your DiscoLike account without a browser. It sends one request to POST https://api.discolike.com/v1/public/signup with your work email and name. You get a confirmation email, log in at app.discolike.com, pick a plan, and issue API keys or authorize the MCP server. The agent never receives a credential.

Endpoint reference: Signup API. Free-mail and disposable domains are rejected; 409 means the account already exists.

No prompt needed: the CLI and the Python SDK both sign up directly, and neither needs a login first.

Terminal window
uvx --from discolike-cli discolike signup --email jane@acme.com --first-name Jane --last-name Doe
from discolike import signup
result = signup(email="jane@acme.com", first_name="Jane", last_name="Doe", agent="my-agent")
print(result.next_step)

Full options: discolike signup and signup().

  1. Open the confirmation email, or sign in with Google or Microsoft using the same address.
  2. Accept the terms and complete your profile.
  3. Pick a plan, then create an API key at app.discolike.com/account/management/keys or authorize the MCP server from your agent.