list_toolsets
Discover available tool groups and their enabled status to explore capabilities before configuration.
Instructions
List all available tool groups and their enabled status. Call this to discover additional capabilities before asking the user to configure anything.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- Handler implementation for the 'list_toolsets' tool, which returns a list of all available toolsets and their status.
server.tool( 'list_toolsets', 'List all available tool groups and their enabled status. Call this to discover additional capabilities before asking the user to configure anything.', {}, async () => { const groups = Object.entries(TOOLSETS).map(([name, tools]) => ({ name, description: TOOLSET_DESCRIPTIONS[name] ?? '', tools: tools.length, enabled: _enabledSets.has(name), toolNames: tools, })) return { content: [{ type: 'text' as const, text: JSON.stringify(groups, null, 2) }] } }, )