Connection
- Authentication: API key (Personal access token).
Sign in at app.netlify.com → User settings → Applications → Personal access tokens → New access token. Give it a name, copy the token (starts with nfp_).See Netlify’s documentation.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect Netlify to your Atako agents — 10 read and 6 write actions.
| Action | Description |
|---|---|
get_current_user | Get the authenticated user profile. Probe action — no arguments required. |
get_deploy | Retrieve a single deploy by ID. |
get_site | Retrieve a single site by ID or name. |
list_accounts | List accounts the authenticated user belongs to. |
list_build_hooks | List build hooks for a site. |
list_dns_zones | List DNS zones for the account. |
list_form_submissions | List submissions for a form. Pagination: page (integer, 1-based) and per_page (integer, default 100). |
list_site_deploys | List deploys for a site. Optionally filter by state. Pagination: page (integer, 1-based) and per_page (integer, default 100). |
list_site_forms | List forms for a site. |
list_sites | List sites. Optionally filter by name and ownership. Pagination: page (integer, 1-based) and per_page (integer, default 100). |
| Action | Description |
|---|---|
create_build_hook | Create a build hook for a site. Arguments: site_id (string, path) — the site; title (string, body) — hook name; branch (string, optional, body) — branch to build (defaults to the production branch). |
lock_deploy | Lock a deploy to prevent it from being published over. Arguments: deploy_id (string, path) — the deploy to lock. |
restore_deploy | Restore a previous deploy, making it the current published deploy. Arguments: site_id (string, path) — the site; deploy_id (string, path) — the deploy to restore. |
trigger_build | Trigger a new build for a site. Arguments: site_id (string, path) — the site to build; clear_cache (boolean, optional, body) — clear the build cache before building. |
unlock_deploy | Unlock a previously locked deploy. Arguments: deploy_id (string, path) — the deploy to unlock. |
update_site | Update a site’s settings. Arguments: site_id (string, path) — the site; name (string, optional, body) — new site name; custom_domain (string, optional, body) — custom domain. |