Skip to main content
Glama

localnest_memory_events

List recent memory events and track their promotion status to durable memory for local AI agent projects.

Instructions

List recently captured memory events and whether they were promoted into durable memory.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_pathNo
limitNo
offsetNo
response_formatNojson

Implementation Reference

  • The handler function for the localnest_memory_events tool, which calls memory.listEvents and normalizes the result.
    async ({ project_path, limit, offset }) => normalizeMemoryEventsResult(
      await memory.listEvents({
        projectPath: project_path,
        limit,
        offset
      })
    )
  • Registration of the localnest_memory_events tool.
    registerJsonTool(
      ['localnest_memory_events'],
      {
        title: 'Memory Events',
        description: 'List recently captured memory events and whether they were promoted into durable memory.',
        inputSchema: {
          project_path: z.string().optional(),
          limit: z.number().int().min(1).max(200).default(20),
          offset: z.number().int().min(0).default(0)
        },
        annotations: {
          readOnlyHint: true,
          destructiveHint: false,
          idempotentHint: true,
          openWorldHint: false
        }
      },
      async ({ project_path, limit, offset }) => normalizeMemoryEventsResult(
        await memory.listEvents({
          projectPath: project_path,
          limit,
          offset
        })
      )
    );

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/wmt-mobile/localnest'

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