Anter MCP Server

Skills & toolsets

These are read-only discovery tools — use them to see what's available before referencing a skill or toolset by id in an AgentSpec.

Skills

ToolWhat it returns
list_skillsThe skill catalog — id, name, and description for each skill, without the full instruction body
get_skillOne skill's full detail, including its instruction body and the list of tools it grants access to

Use list_skills to browse, then get_skill on a specific id once you know which skill you want to attach — the same split as Skills in the dashboard.

Some skills are shared across every organization

Anter ships a set of built-in skills available to every organization, alongside any skills your own organization has authored. Both appear in the same catalog.

Builtin toolsets

list_builtin_toolsets{ version?, query?, includeInputSchema? }

Returns Anter's versioned catalog of builtin tools — the same ones described in Tools → Builtin toolsets. A few notes:

  • Toolset versions are immutable — a published version's tool set never changes, so you can safely reference a specific version if you need to pin behavior.
  • Without a version argument, you get every published version. Pass query (a plain-text search, e.g. "generate a document") to narrow to matching tools — this also implicitly scopes to the latest version only, since searching for "what can I use right now" rarely means an older, superseded version.
  • Set includeInputSchema: false for a compact listing when you don't need each tool's full JSON input schema.