എംസിപി സെർവർ

നിങ്ങളുടെ ഹോസ്റ്റിംഗ് നിയന്ത്രിക്കാൻ നിങ്ങളുടെ AI അസിസ്റ്റന്റിനെ അനുവദിക്കുക

നിങ്ങളുടെ പൂർണ്ണമായ അക്കൗണ്ടിനായി ഒരു MCP സെർവർ. Claude Code, Claude Desktop അല്ലെങ്കിൽ Cursor എന്നിവ ഒരു തവണ കണക്റ്റ് ചെയ്യുക, നിങ്ങളുടെ അസിസ്റ്റന്റിന് നിങ്ങളുടെ സൈറ്റുകൾ ലിസ്റ്റ് ചെയ്യാനും അവയുടെ ലോഗുകൾ വായിക്കാനും ഫയലുകൾ നിങ്ങളുടെ റെപ്പോസിറ്ററിയുമായി സിങ്ക് ചെയ്യാനും ഡിപ്ലോയ് ചെയ്യാനും സാധിക്കും — നിങ്ങൾ നൽകുന്ന അനുമതികളോടെ മാത്രം പ്രവർത്തിക്കുന്നു.

ഇന്ന് 65 ടൂളുകൾ, സെർവർ അവ നൽകുന്നതുപോലെ താഴെ നൽകിയിരിക്കുന്നു.

ബന്ധിപ്പിക്കുക

രണ്ട് ഘട്ടങ്ങൾ. ടോക്കൺ മുഴുവൻ ക്രെഡൻഷ്യലും ആയതിനാൽ, ഒരു പാസ്‌വേഡ് പോലെ അതിനെ പരിഗണിക്കുക: ഇത് ഒരിക്കൽ മാത്രമേ കാണിക്കൂ, മറ്റുള്ളവയെ ബാധിക്കാതെ നിങ്ങൾക്ക് ഒരു കണക്ഷൻ റദ്ദാക്കാനും കഴിയും.

  1. കണക്ഷൻ സൃഷ്ടിക്കുക

    നിങ്ങളുടെ ഡാഷ്‌ബോർഡിൽ, AI ടൂളുകൾ തുറക്കുക, കണക്ഷന് പേര് നൽകുക, നിങ്ങളുടെ ക്ലയന്റിനെ തിരഞ്ഞെടുത്ത് അതിന് എന്ത് ചെയ്യാം എന്ന് ടിക്ക് ചെയ്യുക. നിങ്ങൾക്ക് സ്വന്തമായി ചെയ്യാൻ അനുവാദമുള്ള കാര്യങ്ങൾ മാത്രമേ മറ്റുള്ളവർക്ക് അനുവദിക്കാൻ കഴിയൂ.

  2. നിങ്ങളുടെ ക്ലയന്റ് റീഡ് ചെയ്യുന്ന കോൺഫിഗറേഷൻ ഇവിടെ പേസ്റ്റ് ചെയ്യുക

    ഡാഷ്‌ബോർഡ് നിങ്ങൾ തിരഞ്ഞെടുത്ത ക്ലയൻ്റിനായുള്ള കോൺഫിഗറേഷൻ കാണിക്കുന്നു, നിങ്ങളുടെ ടോക്കൺ ഇതിനകം അതിൽ ഉൾപ്പെടുത്തിയിട്ടുണ്ട്. ഓരോ ക്ലയന്റും ഒരേ സെർവർ വിലാസത്തിലേക്കാണ് കണക്റ്റുചെയ്യുന്നത്:

    https://api.zinndigital.com/v1/mcp

Claude Code

ഒരു കമാൻഡ് റൺ ചെയ്യുക, അല്ലെങ്കിൽ നിങ്ങളുടെ പ്രോജക്റ്റിന്റെ റൂട്ടിലുള്ള .mcp.json-ൽ ബ്ലോക്ക് ചേർക്കുക. "type": "http" എന്ന വരി നിർബന്ധമാണ് — ഇതുകൂടാതെ Claude Code സെർവർ ഒഴിവാക്കുന്നു.

claude mcp add --transport http zinn https://api.zinndigital.com/v1/mcp \
  --header "Authorization: Bearer zmcp_live_…"
// .mcp.json
{
  "mcpServers": {
    "zinn": {
      "type": "http",
      "url": "https://api.zinndigital.com/v1/mcp",
      "headers": {
        "Authorization": "Bearer zmcp_live_…"
      }
    }
  }
}

Claude Desktop

Claude Desktop ലോക്കൽ സെർവറുകൾ ആരംഭിക്കുന്നു, അതിനാൽ ഹോസ്റ്റ് ചെയ്‌ത സെർവറിലേക്കുള്ള ഒരു ബ്രിഡ്ജായി ഇത് ഞങ്ങളുടെ സൗജന്യ Zinnector® CLI പ്രവർത്തിപ്പിക്കുന്നു. ഇതിന് Node 24 അല്ലെങ്കിൽ അതിലും പുതിയത് ആവശ്യമാണ്. ടോക്കൺ env-ൽ നൽകേണ്ടതാണ്, ആർഗ്യുമെന്റുകളിൽ ഒരിക്കലും നൽകരുത്.

// claude_desktop_config.json
{
  "mcpServers": {
    "zinn": {
      "command": "npx",
      "args": [
        "-y",
        "zinnector@0.1.4",
        "mcp"
      ],
      "env": {
        "ZINN_MCP_TOKEN": "zmcp_live_…"
      }
    }
  }
}

കർസർ

വിലാസവും ഓതറൈസേഷൻ ഹെഡറും സഹിതം സെർവർ ~/.cursor/mcp.json-ൽ (അല്ലെങ്കിൽ ഒരു പ്രോജക്റ്റിലെ .cursor/mcp.json-ൽ) ചേർക്കുക.

// ~/.cursor/mcp.json
{
  "mcpServers": {
    "zinn": {
      "url": "https://api.zinndigital.com/v1/mcp",
      "headers": {
        "Authorization": "Bearer zmcp_live_…"
      }
    }
  }
}

മറ്റേതെങ്കിലും MCP ക്ലൈന്റ്

റിമോട്ട് Streamable HTTP സെർവറുകളെ കസ്റ്റം ഹെഡറോടെ പിന്തുണയ്ക്കുന്ന ഏത് ക്ലയന്റും പ്രവർത്തിക്കും: അതിനെ മുകളിലുള്ള വിലാസത്തിലേക്ക് പോയിന്റ് ചെയ്യുകയും നിങ്ങളുടെ ടോക്കണിനൊപ്പം Authorization: Bearer അയക്കുകയും ചെയ്യുക. ലോക്കൽ സെർവറുകൾ മാത്രം സ്റ്റാർട്ട് ചെയ്യുന്ന ഒരു ക്ലയന്റിന് Claude Desktop ബ്രിഡ്ജ് ഉപയോഗിക്കാം.

ChatGPT ഒതന്റിക്കേഷൻ വഴി മാത്രം MCP സെർവറുകളിലേക്ക് കണക്റ്റുചെയ്യുന്നു, അതിനാൽ ഇതിന് ഇതുവരെ ഒരു ടോക്കൺ ഉപയോഗിക്കാൻ കഴിയില്ല. Claude Code, Claude Desktop അല്ലെങ്കിൽ Cursor എന്നിവയ്‌ക്കൊപ്പം അതേ കണക്ഷൻ ഉപയോഗിക്കുക.

ഇത് പ്രവർത്തിക്കുന്നുണ്ടോ എന്ന് പരിശോധിക്കുക - നാല് ചോദ്യങ്ങൾ

ഇവ ലളിതമായ ഭാഷയിൽ ചോദിക്കുക. ഓരോന്നിനും താഴെയായി നിങ്ങളുടെ അസിസ്റ്റന്റ് വിളിക്കേണ്ട ടൂളും നല്ലൊരു ഉത്തരം എങ്ങനെയിരിക്കുമെന്നും നൽകിയിരിക്കുന്നു.

  1. > List my sites.
      ↳ sites_list

    നിങ്ങളുടെ സൈറ്റുകളും അവയുടെ സ്റ്റാറ്റസും പ്ലാനും. സൈറ്റുകളുള്ള ഒരു അക്കൗണ്ടിലെ ശൂന്യമായ ലിസ്റ്റിന്റെ അർത്ഥം, സൈറ്റുകൾ കാണുന്നതിനുള്ള അനുമതി കണക്ഷന് നഷ്ടപ്പെട്ടിരിക്കുന്നു എന്നാണ്.

  2. > Show me the error log for example.com.
      ↳ site_logs

    സമീപകാലത്തെ എറർ ലോഗും ആക്‌സസ് ലോഗും. ഒരെണ്ണം വായിക്കാൻ കഴിഞ്ഞില്ലെങ്കിൽ, മറുപടിയിൽ അത് വ്യക്തമാക്കും — അത് ശൂന്യമായ ഒരു ലോഗിൽ നിന്ന് വ്യത്യസ്തമാണ്.

  3. > Sync example.com to its repository.
      ↳ site_repo_sync_run

    ലൈവ് സൈറ്റിൽ വരുത്തിയ മാറ്റങ്ങൾ സഹിതം നിങ്ങളുടെ ശേഖരത്തിലുള്ള ഒരു കമ്മിറ്റ്, അല്ലെങ്കിൽ ശേഖരം ഇതിനകം പൊരുത്തപ്പെടുന്നു എന്നൊരു കുറിപ്പ്. ശേഖരം മാറ്റിസ്ഥാപിച്ചിട്ടുണ്ടെങ്കിൽ, സിങ്ക് ചെയ്യപ്പെടുന്നത് തടയപ്പെടുകയും ഒന്നും തിരുത്തി എഴുതപ്പെടുകയും ഇല്ല.

  4. > I pushed a commit — deploy example.com and tell me when it is live.
      ↳ site_deploy → site_deploy_status

    ഡെപ്ലോയ് ക്യൂവിൽ ചേർക്കപ്പെടുന്നു, തുടർന്ന് അത് അപ്ലൈ ചെയ്ത കമ്മിറ്റോടുകൂടി ലൈവ് ആകുന്നു. റൈറ്റ് ടൂളുകൾ റൺ ചെയ്യുന്നതിന് മുൻപ് ക്ലയന്റിൽ നിങ്ങളുടെ അനുമതി തേടുന്നു.

ഇരുവശങ്ങളിലേക്കും, രണ്ട് വഴികളിലേക്കും ഉള്ള സിങ്ക്

ബന്ധിപ്പിച്ച ശേഖരമുള്ള ഒരു സൈറ്റ് രണ്ടു വശത്തേക്കും അതിനു തുല്യമായി നിലനിൽക്കുന്നു, ഒപ്പം നിങ്ങളുടെ അസിസ്റ്റന്റിന് ഏത് ദിശയിലേക്കും പ്രവർത്തിക്കാനും കഴിയും.

സൈറ്റ് → റെപ്പോസിറ്ററി

ലൈവ് ഫയലുകളിൽ വരുത്തിയ മാറ്റങ്ങൾ കമ്മ്യൂട്ട് ചെയ്യുകയും (ഫയൽ മാനേജറിലെ എഡിറ്റ്, പ്ലഗിൻ അപ്‌ഡേറ്റ്, അപ്‌ലോഡ് എന്നിവ) നിങ്ങളുടെ അടുത്ത git pull-ൽ അത് ലഭ്യമാകുന്നതിനായി നിങ്ങളുടെ ബ്രാഞ്ചിലേക്ക് പുഷ് ചെയ്യുകയും ചെയ്യുന്നു.

site_repo_sync_run   ·   zinnector sync run

റിപ്പോസിറ്ററി → സൈറ്റ്

ഒരു ഡിപ്ലോയ് നിങ്ങളുടെ ബ്രാഞ്ച് സൈറ്റിലേക്ക് അപ്ലൈ ചെയ്യുന്നു. നിങ്ങളുടെ കമ്മിറ്റ് പുഷ് ചെയ്യുക, തുടർന്ന് ഡിപ്ലോയ് ചെയ്യുക; ഞങ്ങളുടെ സ്വന്തം സെർവറുകളിൽ ഇതിന് സൗജന്യമായ ടു-വേ സിങ്ക് ഓൺ ചെയ്തിരിക്കേണ്ടതുണ്ട്.

site_deploy   ·   zinnector push

രണ്ടുവശങ്ങളും മാറിയപ്പോൾ

ഒരിക്കലും നിശബ്ദമായി ലയിപ്പിക്കുകയോ ഓവർറൈറ്റ് ചെയ്യുകയോ ഇല്ല. സിങ്ക് നിലയ്ക്കുകയും കമ്മറ്റിന്റെ പേര് നൽകുകയും, സൈറ്റ് സൂക്ഷിക്കണമോ അതോ റെപ്പോസിറ്ററി സൂക്ഷിക്കണമോ എന്ന് നിങ്ങൾ തീരുമാനിക്കുന്നതുവരെ കാത്തിരിക്കുകയും ചെയ്യുന്നു. റെപ്പോസിറ്ററി സൂക്ഷിക്കുന്നത് സൈറ്റിലെ സിങ്ക് ചെയ്യാത്ത മാറ്റങ്ങളെ ഒഴിവാക്കുന്നു, അതിനാൽ ഇതിന് സ്ഥിരീകരണം ആവശ്യമാണ്.

site_repo_sync_resolve keep=site|repository confirm=true

ഇതിനെ സുരക്ഷിതമായി സൂക്ഷിക്കുന്നത് എന്താണ്

നിങ്ങൾ അനുമതി നൽകിയവ മാത്രം

ഓരോ ടൂളിനും അനുമതി ആവശ്യമാണ്, നിങ്ങൾ ടിക്ക് ചെയ്തവ മാത്രമേ കണക്ഷനിൽ ഉണ്ടായിരിക്കുകയുള്ളൂ. നിങ്ങളുടെ കണക്ഷനെ സംബന്ധിച്ചിടത്തോളം മറ്റൊരു ഉപഭോക്താവിന്റെ സൈറ്റുകൾ നിലവിലില്ല.

എല്ലാ വിനാശകരമായ കാര്യങ്ങൾക്കുമുള്ള സ്ഥിരീകരണം

റോൾ ബാക്ക് ചെയ്യുക, പുനഃസ്ഥാപിക്കുക, ഹോൾഡ് ചെയ്ത സിങ്ക് പരിഹരിക്കുക, പണം നൽകി വാങ്ങുക എന്നിവയ്‌ക്കെല്ലാം വ്യക്തമായ സ്ഥിരീകരണം ആവശ്യമാണ്, കൂടാതെ പണം ഈടാക്കുന്ന ഏത് കാര്യത്തിനും കൃത്യമായ തുക ആദ്യം കാണിക്കുകയും ചെയ്യും.

നിങ്ങളുടെ ഓഡിറ്റ് ലോഗിലെ എല്ലാ പ്രവർത്തനങ്ങളും

ഓരോ കോളും അത് നടത്തിയ കണക്ഷനുമായി ബന്ധപ്പെടുത്തി റെക്കോർഡുചെയ്യുന്നു. AI ടൂൾസ് പേജിൽ ഒരു കണക്ഷൻ റദ്ദാക്കുക, അത് ഉടൻ തന്നെ പ്രവർത്തിക്കുന്നത് നിർത്തും.

എല്ലാ ടൂളുകളും

സർവറിന്റെ സ്വന്തം രജിസ്ട്രിയിൽ നിന്ന് ജനറേറ്റുചെയ്‌ത എല്ലാ 65 ടൂളുകളും — ഇത് ഇവിടെ പട്ടികപ്പെടുത്തിയിട്ടുണ്ടെങ്കിൽ, നിങ്ങളുടെ അസിസ്റ്റന്റിന് അതിനെ വിളിക്കാം.

സൈറ്റുകളും ഡെപ്ലോയ്മെന്റുകളും

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
sites_listList the organization's sites, with each site's primary domain, status, product line, stack and the plan it is on. Optionally filter by status, product line or a search over domain and name.sites.viewവായിക്കാൻ മാത്രം
site_getGet one site's full record — domain, status, product line, stack, runtime, PHP version, region, plan and whether it is scheduled for deletion.sites.viewവായിക്കാൻ മാത്രം
site_createCreate a site and start provisioning it. Give a primary domain and a product line; optionally a blueprint to build it from, a stack type, a PHP version or a region. Returns the new site, which begins in 'provisioning' — poll site_get for status.sites.createമാറ്റങ്ങൾ വരുത്തുന്നു
site_deployDeploy a site — build and publish its current source to our servers. Returns the deploy state immediately; the build runs as a durable workflow. Poll site_deploy_status to follow it.hosting.deploy.manageമാറ്റങ്ങൾ വരുത്തുന്നു
site_deploy_statusThe site's current deploy state — status, target, the live URL, the deployed commit and when it last went live.sites.viewവായിക്കാൻ മാത്രം
site_deployments_listList a site's recent deployments — id, status, commit, branch and timings. Use this to choose the deployment_id to roll back to.sites.viewവായിക്കാൻ മാത്രം
site_rollbackRoll a site back to an earlier deployment by re-deploying its commit. Destructive: pass confirm=true. Use site_deployments_list to choose which one.hosting.deploy.manageമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു

ദ്വിമുഖ സിങ്ക്

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
site_repo_sync_getShow a site's two-way sync with its repository: whether it is available and on, the repository and branch, the current state (idle, synced, conflict, adopt, error) and the last runs with the commits they made.sites.viewവായിക്കാൻ മാത്രം
site_repo_sync_setTurn two-way sync on or off for a site, optionally limited to a subdirectory of the site. Needs the customer's own GitHub account connected. Turning it on pushes nothing by itself — call site_repo_sync_run for that.hosting.deploy.manageമാറ്റങ്ങൾ വരുത്തുന്നു
site_repo_sync_runSync a site to its repository now: commit whatever changed in the site's live files and push it to the connected branch, so a local git pull receives it. If the repository moved since the last sync the run is HELD and nothing is overwritten — the result says so. The other direction (repository to site) is site_deploy.hosting.deploy.manageമാറ്റങ്ങൾ വരുത്തുന്നു
site_repo_sync_resolveResolve a HELD two-way sync. keep=site commits the site's files on top of the repository (their commits stay in history); keep=repository applies the repository to the site and DISCARDS the site's unsynced changes. Destructive: pass confirm=true.hosting.deploy.manageമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു

ലോഗുകളും മെട്രിക്സുകളും

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
site_metricsCurrent metrics for one site — visits, bandwidth, error rate, disk and resource use. Each section reports whether it is available, so 'no data' is distinguishable from 'zero'.sites.viewവായിക്കാൻ മാത്രം
site_usageOne site's metered visit usage for the current billing period, with the plan's allowance and what any overage costs.sites.viewവായിക്കാൻ മാത്രം
site_logsRead the recent tail of one site's web-server access log and error log. Each log reports whether it could be read, so an unreadable log is never mistaken for an empty one. Use this before proposing a fix for errors or slowness.sites.panel_accessവായിക്കാൻ മാത്രം
site_build_logRead the build log of one deployment — the latest when deployment_id is omitted. Pass after=<total from the previous call> to fetch only new lines while complete is false.sites.viewവായിക്കാൻ മാത്രം

കോൺഫിഗറേഷനും WordPress-ഉം

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
site_php_version_getThe site's current PHP version and every version it is allowed to switch to on its product line.sites.viewവായിക്കാൻ മാത്രം
site_php_version_setSwitch a site to a different PHP version. The version must be one that site_php_version_get lists as available. Reports whether the change reached the machine or was only recorded for provisioning to apply.hosting.php.manageമാറ്റങ്ങൾ വരുത്തുന്നു
wordpress_stateA WordPress site's core version, whether an update is available, and which management operations its hosting permits.sites.viewവായിക്കാൻ മാത്രം
wordpress_plugins_listList a WordPress site's plugins — name, version, whether active and whether an update is available.sites.viewവായിക്കാൻ മാത്രം
wp_plugin_updateUpdate one WordPress plugin to its latest version. Returns the plugin list as it reads after the update.sites.panel_accessമാറ്റങ്ങൾ വരുത്തുന്നു
wordpress_update_coreUpdate WordPress core to the latest version on a site. This cannot be undone by another call — take a backup first with backup_create if you may need to go back. Requires confirmation.sites.panel_accessമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു
wordpress_set_pluginActivate or deactivate one plugin on a WordPress site. Takes effect on the live site immediately. Requires confirmation.sites.panel_accessമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു

ബാക്കപ്പുകൾ

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
backups_listA site's backups — each one's id, when it was taken, its size and status — plus whether a backup is currently running and how many on-demand backups remain in the rolling 24-hour allowance.sites.viewവായിക്കാൻ മാത്രം
backup_createTake an on-demand backup of a site and return the updated backup state. Bounded to 3 per rolling 24 hours per site; the backup runs in the background.hosting.backup.manageമാറ്റങ്ങൾ വരുത്തുന്നു
backup_restoreRestore a site from one of its backups. This OVERWRITES the site's live database and files, and everything changed since that backup was taken is lost. Requires confirmation, and the confirmation names how old the backup is.hosting.backup.manageമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു

ഡൊമെയ്‌നുകളും ഡി.എൻ.എസും

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
dns_records_listList a page of DNS records for a domain whose DNS we host, in name/type/value order. Returns a next_cursor for the following page.sites.viewവായിക്കാൻ മാത്രം
dns_record_createCreate a DNS record for a domain whose DNS we host.domains.dns.manageമാറ്റങ്ങൾ വരുത്തുന്നു
dns_record_updateUpdate an existing DNS record for a domain whose DNS we host.domains.dns.manageമാറ്റങ്ങൾ വരുത്തുന്നു
dns_record_deleteDelete a DNS record for a domain whose DNS we host.domains.dns.manageമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു
domains_listList the organization's domains — id, hostname, status, product line and whether we registered it or the customer pointed it at us. The ids returned here are what the DNS, cache-purge and index-check tools take.sites.viewവായിക്കാൻ മാത്രം

ക്യാഷും ക്രോളറുകളും

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
cache_purgePurge the CDN cache for a domain. Omit 'urls' to purge everything, or pass a bounded list of absolute URLs to purge only those.sites.cache.purgeവായിക്കാൻ മാത്രം
crawler_policy_getGet a site's SEO-crawler-blocking (PBN footprint) policy: which crawlers are blocked, the available crawlers, and the rendered robots.txt/server rules.sites.viewവായിക്കാൻ മാത്രം
crawler_policy_setSet a site's SEO-crawler-blocking policy. 'blocked' is a list of crawler keys (from crawler_policy_get's available_crawlers). Search engines can never be blocked. Publishes the change so the server rules are re-written.sites.crawler.manageമാറ്റങ്ങൾ വരുത്തുന്നു

ഇമെയിൽ

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
mail_services_listList the organization's email services — every domain it has mailboxes on, with the plan's mailbox allowance, how many are used, and whether the mail DNS is published.mail.viewവായിക്കാൻ മാത്രം
mailboxes_listList the mailboxes on one email service, with each mailbox's size, how full it is, and whether it can send and receive.mail.viewവായിക്കാൻ മാത്രം
mailbox_createCreate a mailbox on an email service. Returns the new mailbox's password, which is shown once and cannot be retrieved later.mail.manageമാറ്റങ്ങൾ വരുത്തുന്നു
mail_forwarders_listList the mail forwarders on one email service — which address goes where.mail.viewവായിക്കാൻ മാത്രം
mail_forwarder_createCreate a mail forwarder on an email service, sending everything for one address on to one or more destinations.mail.manageമാറ്റങ്ങൾ വരുത്തുന്നു

എസ്.ഇ.ഒ

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
site_seo_metricsThe cached SEO authority metrics for a hosted site — domain rank, backlinks, referring domains and organic keywords. Read-only and free; the figures are refreshed by the platform's own sweep, so they may be up to a month old.sites.viewവായിക്കാൻ മാത്രം
domain_index_checkThe cached search-index status for a domain — whether it is indexed, how many pages, and when the reading was taken. Read-only and free.sites.viewവായിക്കാൻ മാത്രം

AI ചിത്രങ്ങൾ

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
image_models_listThe image models this account can generate with — provider, model, and the price per image in USD. Read-only and free. A model that is not listed cannot be used, either because it is retired or because nobody has priced it.sites.viewവായിക്കാൻ മാത്രം
image_generateGenerate an image from a prompt and put it in this account's image library. Costs money — the price per image is what image_models_list reports for the model used. Returns the image ids; the customer sees them in their library immediately.links.editമാറ്റങ്ങൾ വരുത്തുന്നു · പണം ചെലവഴിക്കാം

ബോർഡുകൾ

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
board_listList this organisation's project boards, newest first.agency.board.viewവായിക്കാൻ മാത്രം
board_getRead one board in full: its columns and every card on them.agency.board.viewവായിക്കാൻ മാത്രം
board_createCreate a project board, optionally for one of your client organisations.agency.board.manageമാറ്റങ്ങൾ വരുത്തുന്നു
board_card_createAdd a card to a column. Cards are agency-only unless you pass visibility 'client'.agency.board.manageമാറ്റങ്ങൾ വരുത്തുന്നു
board_card_moveMove a card to another column, or to another position in its column.agency.board.manageമാറ്റങ്ങൾ വരുത്തുന്നു
board_card_commentComment on a card. Agency-only unless you pass visibility 'client', in which case the client sees it attributed to your agency.agency.board.commentമാറ്റങ്ങൾ വരുത്തുന്നു

ബില്ലിംഗും അപ്‌ഗ്രേഡുകളും

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
subscriptions_listList the organization's subscriptions — the plan each one is on, its status, renewal date and whether it auto-renews.billing.viewവായിക്കാൻ മാത്രം
invoices_listList the organization's invoices and credit notes — number, status, total, currency and issue date. Optionally filter by status.billing.viewവായിക്കാൻ മാത്രം
upgrade_optionsWhat can be bought to lift a limit you have hit — bigger plans, priced with tax, in your own currency. Pass the entitlement from a refusal (e.g. 'max_sites'), or a site_id to see what that site's own plan could move to. Read-only: nothing is bought, and calling this costs nothing.billing.viewവായിക്കാൻ മാത്രം
purchase_quotePrice a plan exactly, with tax, in the customer's own currency — and nothing is bought or charged. Returns a quote_id to pass to purchase_authorize together with the total, which is what stops an agent committing someone to a figure they never saw. Quotes expire: re-quote rather than reusing an old id.billing.payment.manageമാറ്റങ്ങൾ വരുത്തുന്നു
purchase_authorizeComplete a purchase from a quote: places the order and charges the payment method on file. You must pass the exact total and currency purchase_quote returned — if the price has moved since, this refuses rather than charging a different amount. Retrying with the same quote_id returns the same order and never charges twice.billing.payment.manageമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു · പണം ചെലവഴിക്കാം

സഹായം

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
tickets_listList the organization's support tickets — subject, status, priority and when they were last updated. Optionally filter by status or site.tickets.viewവായിക്കാൻ മാത്രം
ticket_createOpen a support ticket. Include what you already checked — an agent that has read the KB and run diagnostics should say so in the body, so a human does not repeat it.tickets.replyമാറ്റങ്ങൾ വരുത്തുന്നു

റീസെല്ലർ

ഉപകരണംഇത് എന്താണ് ചെയ്യുന്നത്അനുമതികുറിപ്പുകൾ
reseller_overviewThe reseller programme in one read: status, whether you can sell, billing day, default markup, your panel hostname and nameservers, mail sending domain, support routing, commerce readiness and the languages your clients' panel offers.reseller.viewവായിക്കാൻ മാത്രം · റീസെല്ലർമാർക്ക് മാത്രം
reseller_services_listList the sites you have provisioned for your clients — one row per service, with the client organisation, status, any hold you placed, what it costs you wholesale and what you sell it for. Your own sites are not here; use sites_list for those.reseller.viewവായിക്കാൻ മാത്രം · റീസെല്ലർമാർക്ക് മാത്രം
reseller_service_getOne client service in full — status, plan, any hold, wholesale cost, your sell price, and its disk and bandwidth usage.reseller.viewവായിക്കാൻ മാത്രം · റീസെല്ലർമാർക്ക് മാത്രം
reseller_service_suspendPut one of your client's services on a non-payment hold. The site stops serving until you release it. Requires confirm: true.reseller.provisionമാറ്റങ്ങൾ വരുത്തുന്നു · സ്ഥിരീകരണം ചോദിക്കുന്നു · റീസെല്ലർമാർക്ക് മാത്രം
reseller_service_unsuspendRelease a non-payment hold you placed on a client's service. The site starts serving again.reseller.provisionമാറ്റങ്ങൾ വരുത്തുന്നു · റീസെല്ലർമാർക്ക് മാത്രം
reseller_prices_listYour price list: every plan you can sell, with the Zinn® list price, your wholesale cost, and the retail price you have set (if any).reseller.viewവായിക്കാൻ മാത്രം · റീസെല്ലർമാർക്ക് മാത്രം
reseller_client_wallets_listEvery client wallet you hold a float in, with the balance per client and the total held per currency. This is money you have taken and not yet delivered service for.reseller.viewവായിക്കാൻ മാത്രം · റീസെല്ലർമാർക്ക് മാത്രം

തുടർന്നു വായിക്കുക

ഒരു ടെർമിനൽ വേണോ?

Zinnector® CLI റഫറൻസ്

പബ്ലിക് API-യിൽ നിർമ്മിച്ചതാണ്

എപിഐ റഫറൻസ്

ഒരു AI അസിസ്റ്റന്റിന് നിങ്ങൾക്കായി എന്ത് ചെയ്യാൻ കഴിയും

AI ടൂളുകളും MCP-യും

രണ്ട് മിനിറ്റിനുള്ളിൽ നിങ്ങളുടെ അസിസ്റ്റന്റിനെ കണക്റ്റ് ചെയ്യുക

നിങ്ങളുടെ ഡാഷ്‌ബോർഡിൽ AI ടൂളുകൾ തുറന്ന്, ഒരു കണക്ഷൻ സൃഷ്ടിച്ച്, നിങ്ങളുടെ ക്ലയന്റ് വായിക്കുന്ന കോൺഫിഗറേഷൻ ഒട്ടിക്കുക.