Skip to main content
Glama
rad-security

RAD Security

Official
by rad-security

list_cve_vendors

Retrieve all vendor names from the CVE database to identify potential security vulnerabilities in software and hardware components.

Instructions

Get a list of all vendors in the CVE database. Source: cve-search.org

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function that executes the tool logic by fetching the list of CVE vendors from the cve-search API.
    export async function listCveVendors(): Promise<any> {
      const response = await fetch(`${BASE_URL}/browse`);
      if (!response.ok) {
        throw new Error(`Failed to list vendors: ${response.statusText}`);
      }
      return response.json();
    }
  • src/index.ts:442-446 (registration)
    Tool registration in the ListToolsRequest handler, defining the tool name, description, and input schema (empty object).
      name: "list_cve_vendors",
      description:
        "Get a list of all vendors in the CVE database. Source: cve-search.org",
      inputSchema: zodToJsonSchema(z.object({})),
    },
  • src/index.ts:1292-1297 (registration)
    Tool execution handler in the CallToolRequest switch statement, which calls the listCveVendors function and formats the response.
    const response = await cves.listCveVendors();
    return {
      content: [
        { type: "text", text: JSON.stringify(response, null, 2) },
      ],
    };
  • Inline input schema definition for the tool (empty object since no parameters are required).
    inputSchema: zodToJsonSchema(z.object({})),
  • Base URL constant used by the listCveVendors handler and other CVE functions.
    const BASE_URL = "https://cve.circl.lu/api";
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the data source ('cve-search.org') but doesn't describe the return format (e.g., list structure, pagination), potential rate limits, authentication needs, or error conditions. For a read-only tool with zero annotation coverage, this leaves significant gaps in understanding how it behaves.

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 core purpose ('Get a list of all vendors in the CVE database') and adds useful context about the data source. There is no wasted verbiage or redundancy, making it highly concise and well-structured.

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

Completeness3/5

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

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate but not fully complete. It covers the purpose and source, but lacks details on return values, behavioral traits, or usage context. For a basic list tool, this is minimally viable but leaves room for improvement in guiding the agent effectively.

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 0 parameters, and schema description coverage is 100% (as there are no parameters to describe). The description doesn't need to add parameter semantics, so it meets the baseline expectation. It appropriately avoids discussing parameters that don't exist.

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 clearly states the verb ('Get') and resource ('list of all vendors in the CVE database'), making the purpose specific and understandable. It distinguishes from some siblings like 'get_cve' or 'search_cves' by focusing on vendors rather than vulnerabilities. However, it doesn't explicitly differentiate from 'list_cve_products', which is a closely related sibling tool.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'list_cve_products' or 'search_cves', nor does it specify use cases, prerequisites, or exclusions. The agent must infer usage from the tool name and description alone.

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/rad-security/mcp-server'

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