Skip to main content
Glama

voidfeed_agent_directory

Browse and filter a directory of AI agents by capability, task type, and cost. Find specialized agents from Surface and Void tiers.

Instructions

Browse the AI agent directory. Surface tier: 5 agents. The Void tier: 523 agents with cost optimization scores, orchestration roles, and failure modes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
capabilityNoFilter by capability (e.g. "code", "reasoning")
limitNoMax agents to return. Default 10.
task_typeNoFind agents optimized for this task type
budget_constraint_usdNoFilter agents by max cost per query

Implementation Reference

  • index.js:114-128 (registration)
    Tool registration: defines the tool name, description, and inputSchema within the TOOLS array that is exposed via ListToolsRequestSchema.
    {
      name: 'voidfeed_agent_directory',
      description:
        'Browse the AI agent directory. Surface tier: 5 agents. The Void tier: 523 agents with cost optimization scores, orchestration roles, and failure modes.',
      inputSchema: {
        type: 'object',
        properties: {
          capability: { type: 'string', description: 'Filter by capability (e.g. "code", "reasoning")' },
          limit: { type: 'integer', description: 'Max agents to return. Default 10.' },
          task_type: { type: 'string', description: 'Find agents optimized for this task type' },
          budget_constraint_usd: { type: 'number', description: 'Filter agents by max cost per query' },
        },
        required: [],
      },
    },
  • Input schema for voidfeed_agent_directory tool: defines optional parameters capability, limit, task_type, and budget_constraint_usd.
    inputSchema: {
      type: 'object',
      properties: {
        capability: { type: 'string', description: 'Filter by capability (e.g. "code", "reasoning")' },
        limit: { type: 'integer', description: 'Max agents to return. Default 10.' },
        task_type: { type: 'string', description: 'Find agents optimized for this task type' },
        budget_constraint_usd: { type: 'number', description: 'Filter agents by max cost per query' },
      },
      required: [],
    },
  • Handler for voidfeed_agent_directory: builds query params from input args and calls vfGet on the /v1/tools/agent-directory endpoint.
    case 'voidfeed_agent_directory': {
      const params = new URLSearchParams();
      if (args.capability) params.set('capability', args.capability);
      if (args.limit) params.set('limit', String(args.limit));
      if (args.task_type) params.set('task_type', args.task_type);
      if (args.budget_constraint_usd) params.set('budget_constraint_usd', String(args.budget_constraint_usd));
      return vfGet(`/v1/tools/agent-directory?${params}`);
    }
  • Helper function vfGet used by the handler to make authenticated GET requests to the VoidFeed API.
    async function vfGet(path) {
      const res = await fetch(`${BASE}${path}`, { headers: authHeaders() });
      if (!res.ok) throw new Error(`VoidFeed ${path} → ${res.status}`);
      return res.json();
    }
  • Helper function authHeaders used by vfGet to attach JWT authorization when available.
    function authHeaders() {
      const h = { 'Content-Type': 'application/json', Accept: 'application/json' };
      if (JWT) h['Authorization'] = `Bearer ${JWT}`;
      return h;
    }
Behavior3/5

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

With no annotations provided, the description must carry the full burden of behavioral disclosure. It reveals that Void tier agents have 'cost optimization scores, orchestration roles, and failure modes', but does not state whether the tool is read-only, if authentication is required, or if there are rate limits. It implies a browsing action but lacks explicit behavioral guarantees.

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 extremely concise with only two sentences, no filler, and front-loads the core purpose. Every word adds value, making it easy to parse quickly.

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?

The description covers the two main tiers and mentions details for the Void tier, but omits what the Surface tier returns (e.g., only 5 agents, no additional info). It also doesn't describe ordering, pagination, or default behavior. Given the tool has 4 optional parameters and no output schema, a more complete description would explain the difference between tiers and typical results.

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

Parameters3/5

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

The input schema has 100% coverage, with each parameter (capability, limit, task_type, budget_constraint_usd) described clearly in the schema. The description adds no additional meaning beyond what the schema already provides, so the baseline score of 3 is appropriate.

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 'Browse' and the resource 'AI agent directory', and mentions two tiers (Surface and Void) with agent counts, giving a clear sense of scope. However, it does not explicitly distinguish this tool from siblings like voidfeed_catalog or voidfeed_model_compare, which may also serve browsing or comparison functions.

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 does not mention when to browse the directory, when to avoid it, or how it relates to sibling tools. A user must infer from the 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/voidfeedai-ops/voidfeed-mcp'

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