Skip to main content
Glama

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
NameRequiredDescriptionDefault

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) }] }
      },
    )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gaopengbin/cesium-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server