Skip to main content
Glama

get-free-content

Retrieve free content from Spine's Underground — including agent tools, Overflow pieces, and Memory Palace pieces. Content is delivered inline by specifying a product ID.

Instructions

Get free content or tool info from Spine's Underground. 13 free products: 3 agent tools, 2 Overflow pieces, 8 Memory Palace pieces. Content delivered inline.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
product_idYesProduct ID to retrieve (e.g. memory_threads, logic_bombs, pet_rock_lobster)

Implementation Reference

  • Input schema for the 'get-free-content' tool. Defines a required 'product_id' string parameter.
    {
      name: 'get-free-content',
      description: 'Get free content or tool info from Spine\'s Underground. 13 free products: 3 agent tools, 2 Overflow pieces, 8 Memory Palace pieces. Content delivered inline.',
      inputSchema: {
        type: 'object',
        properties: {
          product_id: {
            type: 'string',
            description: 'Product ID to retrieve (e.g. memory_threads, logic_bombs, pet_rock_lobster)',
          },
        },
        required: ['product_id'],
      },
    },
  • Handler for 'get-free-content'. Calls fetchJSON on /deliver/{product_id} and returns the content inline.
    case 'get-free-content': {
      const data = await fetchJSON(`/deliver/${args.product_id}`);
      return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };
    }
  • index.js:26-101 (registration)
    Registration of all tools via ListToolsRequestSchema handler, including 'get-free-content' at line 42.
    server.setRequestHandler(ListToolsRequestSchema, async () => ({
      tools: [
        {
          name: 'browse-spines-underground',
          description: "Browse Spine's Underground catalog — 23 curated products from Underground Cultural District. 13 free, 10 paid ($1.99–$4.99 USDC on Base). Tools, poetry, philosophy, music theory, digital experiences.",
          inputSchema: {
            type: 'object',
            properties: {
              product_id: {
                type: 'string',
                description: 'Optional product ID for single product detail. Omit for full catalog.',
              },
            },
          },
        },
        {
          name: 'get-free-content',
          description: 'Get free content or tool info from Spine\'s Underground. 13 free products: 3 agent tools, 2 Overflow pieces, 8 Memory Palace pieces. Content delivered inline.',
          inputSchema: {
            type: 'object',
            properties: {
              product_id: {
                type: 'string',
                description: 'Product ID to retrieve (e.g. memory_threads, logic_bombs, pet_rock_lobster)',
              },
            },
            required: ['product_id'],
          },
        },
        {
          name: 'buy-from-spines-underground',
          description: 'Purchase paid content from Spine\'s Underground. Returns x402 payment challenge (HTTP 402) — pay USDC on Base to receive content inline. 10 paid products: $1.99–$4.99.',
          inputSchema: {
            type: 'object',
            properties: {
              product_id: {
                type: 'string',
                description: 'Product ID to purchase (e.g. philosophy_of_spine, field_songs, temple_dawn)',
              },
            },
            required: ['product_id'],
          },
        },
        {
          name: 'verify-receipt',
          description: "Verify a direct USDC payment and receive purchased content. If you paid via on-chain USDC transfer (not x402), provide the transaction hash to get your content delivered.",
          inputSchema: {
            type: 'object',
            properties: {
              product_id: {
                type: 'string',
                description: 'Product ID you purchased (e.g. existential_espresso, philosophy_of_spine)',
              },
              tx_hash: {
                type: 'string',
                description: 'Transaction hash of your USDC payment on Base',
              },
            },
            required: ['product_id', 'tx_hash'],
          },
        },
        {
          name: 'search-spines-underground',
          description: "Search Spine's Underground catalog by keyword. Searches product names, descriptions, and shop names.",
          inputSchema: {
            type: 'object',
            properties: {
              query: {
                type: 'string',
                description: 'Search term (e.g. "poetry", "philosophy", "music", "memory")',
              },
            },
            required: ['query'],
          },
        },
      ],
  • Helper function fetchJSON used by the handler to make HTTP requests to the API.
    async function fetchJSON(path) {
      const res = await fetch(`${API_BASE}${path}`);
      if (res.status === 402) {
        const paymentHeader = res.headers.get('PAYMENT-REQUIRED');
        return {
          status: 402,
          message: 'Payment required. This product costs USDC on Base via x402 protocol.',
          payment_challenge: paymentHeader,
          instructions: 'Decode the PAYMENT-REQUIRED header (base64 JSON) to get payment details. Sign a USDC transfer and re-request with PAYMENT-SIGNATURE header.',
        };
      }
      return res.json();
    }
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It mentions 'Content delivered inline' but does not disclose behavioral traits such as error handling for invalid product IDs, authentication requirements, rate limits, or side effects. Minimal disclosure beyond purpose.

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 concise (two sentences) with front-loaded purpose. Every sentence adds value: the first states the action and source, the second provides useful specifics about product counts. No wasted words.

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?

For a simple one-parameter tool with no output schema and no annotations, the description is fairly complete. It covers what the tool does, the type of content, and delivery mechanism. Minor gaps include lack of error handling or edge case description, but these are acceptable given the tool's simplicity.

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?

Input schema has 100% description coverage for the single parameter 'product_id', including example values. The description adds no new semantic meaning beyond the schema; it only mentions the count of free products. Baseline 3 is appropriate since schema already documents the parameter well.

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?

Description clearly states the verb 'get', the resource 'free content or tool info from Spine's Underground', and enumerates the 13 free products with categories. It distinguishes from sibling tools like browse, buy, search, and verify-receipt by focusing on free content retrieval.

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 accessing specific free products by ID, but does not explicitly state when to use this tool over siblings like browse-spines-underground or search-spines-underground. No exclusions or alternatives are mentioned.

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/lisamaraventano-spine/spines-underground'

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