Serveravatar integration
ServerAvatar is a server management system that helps you manage servers,…
- Provider
- serveravatar
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 17 available
Quick start
Call Serveravatar from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Serveravatar's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"SERVERAVATAR_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Serveravatar API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
17 actions exposed via the
Serveravatar integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SERVERAVATAR_DESTROY_BACKUPS -
SERVERAVATAR_GET_ORGANIZATION -
SERVERAVATAR_LIST_APPLICATIONS -
SERVERAVATAR_LIST_BACKUPS -
SERVERAVATAR_LIST_BACKUPS_ARCHIVE -
SERVERAVATAR_LIST_BACKUPS_DELETED_SERVER -
SERVERAVATAR_LIST_BACKUPS_PRESETS -
SERVERAVATAR_LIST_CLOUD_SERVER_PROVIDERS -
SERVERAVATAR_LIST_CLOUD_STORAGE_PROVIDERS -
SERVERAVATAR_LIST_CRONJOBS_PRESETS -
SERVERAVATAR_LIST_DATABASES -
SERVERAVATAR_LIST_GIT_PROVIDERS
Show all 17 actions
-
SERVERAVATAR_LIST_MEMBERS -
SERVERAVATAR_LIST_ORGANIZATIONS -
SERVERAVATAR_LIST_SERVERS -
SERVERAVATAR_LIST_TIMEZONES -
SERVERAVATAR_LIST_WORDPRESS_LANGUAGES
Build with Serveravatar
Open OverSkill, describe what you want to build, and reference Serveravatar in your prompt — the AI will wire up the integration automatically.