Skip to main content
Glama

list_categories

Browse available skill categories to discover and explore agent skills with descriptions and counts for informed selection.

Instructions

List all available skill categories on SkillFlow with descriptions and skill counts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The implementation of the `list_categories` tool handler, which formats and returns the list of categories defined in the `CATEGORIES` constant.
    case "list_categories": {
      const formatted = CATEGORIES.map((c) =>
        `**${c.name}** (${c.count} skills)\n  ${c.description}`
      ).join("\n\n");
    
      return {
        content: [{
          type: "text",
          text: `# SkillFlow Categories\n\n${formatted}\n\n---\nBrowse all: ${SKILLFLOW_BASE_URL}/explore`,
        }],
      };
    }
  • src/index.ts:215-221 (registration)
    The registration of the `list_categories` tool within the `ListToolsRequestSchema` handler.
      name: "list_categories",
      description: "List all available skill categories on SkillFlow with descriptions and skill counts.",
      inputSchema: {
        type: "object" as const,
        properties: {},
      },
    },
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of disclosure. It partially compensates by describing the return payload ('descriptions and skill counts'), but lacks information on caching, rate limits, authorization requirements, or pagination behavior for the 'all' scope.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the action verb. Every clause earns its place by specifying scope ('all'), domain ('on SkillFlow'), and return structure ('with descriptions and skill counts').

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (no parameters, simple list operation) and lack of output schema, the description adequately covers the functional scope by clarifying the return data includes descriptions and counts. It appropriately conveys what the agent will receive without an explicit output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, which per the rubric establishes a baseline score of 4. The description does not need to compensate for missing schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description provides a clear verb ('List') and specific resource ('skill categories on SkillFlow'), and clarifies what data is returned ('descriptions and skill counts'). However, it does not explicitly differentiate from siblings like search_skills or get_skill_details via comparison, only implicitly through the resource name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description contains no guidance on when to use this tool versus alternatives such as search_skills, nor does it mention prerequisites or exclusions. It states what the tool does but not when it should be selected.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/rafsilva85/skillflow-mcp-server'

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