Skip to main content
Glama

list_memories

Retrieve saved memories from the Code-MCP server, with optional filtering by project scope to organize development context.

Instructions

List all saved memories, optionally filtered by project scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectNoFilter by project scope

Implementation Reference

  • The handler function that reads memories from the persistent JSON file, filters by optional project, formats a markdown list, and returns it.
    export async function listMemoriesHandler(args: any) {
        await ensureMemoryFile();
        const data = JSON.parse(await fs.readFile(MEMORY_FILE, "utf-8"));
        const entries = Object.entries(data);
    
        let filtered = entries;
        if (args.project) {
            filtered = entries.filter(([_, v]: [string, any]) => v.project === args.project);
        }
    
        if (filtered.length === 0) {
            return { content: [{ type: "text", text: "No memories found." }] };
        }
    
        const list = filtered.map(([key, v]: [string, any]) =>
            `- **${key}**: ${v.value.substring(0, 50)}${v.value.length > 50 ? '...' : ''} (${v.project || 'global'})`
        ).join("\n");
    
        return { content: [{ type: "text", text: `# Saved Memories\n\n${list}` }] };
    }
  • Zod-based input schema defining the optional 'project' parameter for filtering memories.
    export const listMemoriesSchema = {
        name: "list_memories",
        description: "List all saved memories, optionally filtered by project scope.",
        inputSchema: z.object({
            project: z.string().optional().describe("Filter by project scope")
        })
    };
  • src/server.ts:100-100 (registration)
    Registration of the list_memories tool in the HTTP server's toolRegistry Map.
    ["list_memories", { schema: listMemoriesSchema, handler: listMemoriesHandler }],
  • src/index.ts:91-91 (registration)
    Registration of the list_memories tool in the MCP server's toolRegistry Map.
    ["list_memories", { schema: listMemoriesSchema, handler: listMemoriesHandler }],
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 this is a list operation but doesn't describe what a 'memory' is, whether results are paginated, what format they're returned in, or any permissions required. For a tool with zero annotation coverage, this leaves significant behavioral gaps.

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 ('List all saved memories') and adds the optional filtering capability. Every word earns its place with no redundancy or unnecessary elaboration.

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 has no annotations, no output schema, and a simple single parameter with full schema coverage, the description provides the minimum viable information about purpose and basic filtering. However, it doesn't explain what constitutes a 'memory' or what the return format looks like, leaving the agent with incomplete context for proper usage.

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 description coverage is 100%, so the schema already fully documents the single optional parameter. The description adds marginal value by mentioning the filtering capability but doesn't provide additional context about project scope meaning or examples. Baseline 3 is appropriate when schema does the heavy lifting.

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 ('List') and resource ('saved memories'), and specifies the scope ('all'). However, it doesn't differentiate this tool from potential sibling tools like 'read_memory' or 'clear_memory' that also interact with memories, which prevents a perfect score.

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 context by mentioning optional filtering by project scope, but it doesn't explicitly state when to use this tool versus alternatives like 'read_memory' (which might retrieve a specific memory) or 'clear_memory' (which deletes memories). No explicit when-not-to-use guidance is 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/millsydotdev/Code-MCP'

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