← All posts

How to update your link in bio automatically

September 14, 2026 · 8 min read

You can automate your link in bio by pointing an AI agent or a scheduled script at the isall.me developer tools. The isall.me API, CLI, and MCP server let you add, reorder, or update links from code, so your page changes itself instead of waiting for you to log in.

This post is for people who ship things: musicians dropping singles, makers launching products, anyone tired of editing their page by hand every time something new goes live.

What "automatic" actually means here

Let me be straight about this, because a lot of tools oversell it.

isall.me does not have a magic one-click button that watches the internet and posts your new release for you. What it has is better for builders: real developer tools you wire up yourself.

The pattern is simple. You connect an AI agent or a scheduled script to one of these:

  • The MCP server, so an AI assistant can manage your page in plain language.
  • The CLI, so a script or a cron job can run commands.
  • The REST API, so any code you write can call it directly.

Once that connection exists, "automatic" is whatever you build on top of it. When your new single hits the store, a small script adds it to the top of your page. That is the honest version, and it is more flexible than a fixed auto-poster would ever be.

Step 1: get a token

Everything starts with an API token.

  1. Upgrade to Pro if you have not already. Developer access is a Pro feature, and Pro is 24 dollars a year, about 2 dollars a month.
  2. Open your dashboard and go to the Developer tab.
  3. Mint a token. It starts with isam_ so it is easy to spot in your config.
  4. Store it somewhere safe, like an environment variable, not pasted into a public repo.

If a script only needs to read data, like pulling click counts, create a read-only token instead. Smaller blast radius if it ever leaks.

Full setup lives in the developer docs.

Step 2: pick your tool

You have three ways in. They all talk to the same page.

The MCP server (talk to your page)

The MCP server lets an AI assistant like Claude manage your page in plain language. You say "add my new single to the top" or "what got the most clicks last week?" and it does it.

Run it with npx -y isallme-mcp and point your assistant at it. This is the easiest path if you already work inside an AI assistant every day. More on this in use Claude to run your link in bio with MCP.

The CLI (scripts and cron)

The CLI is published on npm as isallme. Run it with npx isallme. It is built for scripts and scheduled jobs, so it is the natural fit for a cron job or a GitHub Action.

The REST API (your own code)

The REST API lives at https://isall.me/api/v1. If you would rather write the calls yourself in whatever language you like, this is the direct route. See the isall.me link in bio API for the full rundown.

Step 3: wire up the automation

Here is where it becomes hands-off. The idea is to trigger a page update from an event you already have.

A few concrete setups:

  • New music drops: a scheduled job checks your distributor or a feed, and when a new track appears, it calls the CLI or API to add the release to the top of your page.
  • New product goes live: your store fires a webhook, a small script catches it, and it adds the product link automatically.
  • Weekly cleanup: a cron job runs every Monday and reorders your links based on last week's clicks.

The moving parts are always the same three: a trigger, a script, and a developer token. The trigger is your event. The script is a few lines calling the CLI or API. The token is the isam_ key from step one.

A basic scheduled version looks like this in plain terms:

  1. A GitHub Action runs on a schedule, say every hour.
  2. It checks whether you have something new to add.
  3. If yes, it runs an isall.me CLI command to add the link.
  4. Your page is updated before you even think about it.

No dashboard. No copy-paste. The page keeps itself current.

Which trigger fits you

  • If you release music, an auto-add-on-drop setup is the obvious win.
  • If you sell products, syncing your shop automatically saves the most repetitive work.
  • If you just want fewer manual edits in general, a weekly reorder script is a small, satisfying start.

Start with one trigger. Get it working. Add more once you trust it.

A note on doing this safely

Automation is great until a script goes rogue and rewrites your whole page. A few habits keep it calm:

  • Use a read-only token for anything that only reports, like analytics.
  • Test your script against one link before you let it touch the whole page.
  • Log what your automation does, so when something looks off you can see why.
  • Keep your token in an environment variable, never in the code you commit.

None of this is heavy. It is the same care you would give any small script that touches something you care about.

FAQ

Can I really update my link in bio without logging in?

Yes. Once you have a token and a script or agent wired to the CLI, API, or MCP, your page updates from code. You never have to open the dashboard for a routine change again.

Do I need to be a developer to automate my page?

For the scripted, cron-based path, some comfort with code helps. If you would rather skip that, the MCP route lets an AI assistant do it in plain language, which is a much lower bar. You describe what you want and it makes the change.

Is there a built-in auto-poster?

No, and I would rather be honest about it than pretend. isall.me gives you the developer tools to build automation, not a fixed one-click poster. You wire your agent or a scheduled script to the MCP, CLI, or API, and the automation does exactly what you tell it to.

Does automation cost extra?

No extra fee beyond Pro. Developer access, including the API, CLI, MCP, and tokens, is part of the 24 dollar a year Pro plan. Once you are on Pro, all three tools are yours.

Get started

Claim your link, upgrade to Pro, then open the Developer tab to create a token. From there, point the CLI, API, or MCP at your page and let it run.

Create yours at https://isall.me/signup and read the developer docs when you are ready to wire it up.

Everything you are. One little link.

Everything you are, in one link.

Free to start. Pro is $24 a year, not $24 a month.

Claim your link, free