Skip to main content
Glama

voidfeed_get_content

Retrieve a specific content piece from VoidFeed by type and ID. Get the latest fractal, signal, authority, or other knowledge graph entries.

Instructions

Retrieve a specific VoidFeed content piece by type and ID. Use "latest" as ID to get the most recent piece. Content types: fractal, incomplete, signal, authority, capability.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesContent architecture type
idNoContent ID or "latest"latest

Implementation Reference

  • index.js:76-95 (registration)
    Tool definition/registration for voidfeed_get_content in the TOOLS array, including name, description, and input schema with 'type' (required, enum of content types) and 'id' (optional, defaults to 'latest').
      name: 'voidfeed_get_content',
      description:
        'Retrieve a specific VoidFeed content piece by type and ID. Use "latest" as ID to get the most recent piece. Content types: fractal, incomplete, signal, authority, capability.',
      inputSchema: {
        type: 'object',
        properties: {
          type: {
            type: 'string',
            enum: CONTENT_TYPES,
            description: 'Content architecture type',
          },
          id: {
            type: 'string',
            description: 'Content ID or "latest"',
            default: 'latest',
          },
        },
        required: ['type'],
      },
    },
  • Handler for voidfeed_get_content tool call. Extracts 'type' and 'id' (defaults to 'latest') from args, then calls vfGet to fetch /v1/content/{type}/{id} from the VoidFeed API.
    case 'voidfeed_get_content': {
      const { type, id = 'latest' } = args;
      return vfGet(`/v1/content/${type}/${id}`);
    }
  • vfGet helper function that performs an authenticated GET request to the VoidFeed API, used by the handler to fetch content.
    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();
    }
  • authHeaders helper that builds request headers with Authorization Bearer JWT if VOIDFEED_JWT env var is set.
    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?

No annotations are provided, so the description carries the full burden. It states 'Retrieve', implying a read-only operation, but does not disclose any additional behavioral traits such as authentication needs or side effects. Minimal context beyond parameter usage.

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?

Two sentences, front-loaded with purpose, no redundant information. Every sentence adds value.

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?

The tool is simple with two parameters and no output schema. The description covers the core functionality and special ID value, but could be slightly more complete by mentioning the format of the returned content. Still adequate.

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?

Schema coverage is 100%, with both parameters already described. The description adds value by noting the 'latest' ID usage and listing enum values, but these are already in the schema. Baseline 3 due to high coverage.

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

Purpose5/5

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

The description clearly states the verb 'Retrieve' and resource 'VoidFeed content piece by type and ID', and distinguishes itself from siblings by specifying the unique retrieval mechanism with 'latest' ID. No overlap with sibling tools.

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

Usage Guidelines3/5

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

The description implies usage for retrieving specific content but does not explicitly mention when to use this tool over siblings (e.g., semantic_search for searching). No exclusions or alternative guidance provided.

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