Skip to main content
Glama
QuixiAI

AGI MCP Server

by QuixiAI

create_working_memory

Create temporary working memory with expiration for AI systems to maintain conversation continuity through episodic and semantic storage.

Instructions

Create a temporary working memory with expiration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesContent of the working memory
embeddingYesVector embedding for the content
contextNo

Implementation Reference

  • Core implementation of createWorkingMemory: inserts a new working memory record into the database with computed expiration time based on TTL.
    async createWorkingMemory(content, embedding, context = {}) {
      try {
        const ttl = context.ttl || 3600; // Default 1 hour
        const expirationTime = new Date(Date.now() + ttl * 1000);
    
        const [workingMemory] = await this.db
          .insert(schema.workingMemory)
          .values({
            content,
            embedding: embedding,
            expiry: expirationTime
          })
          .returning();
    
        return workingMemory;
      } catch (error) {
        console.error('Error creating working memory:', error);
        throw error;
      }
  • mcp.js:656-662 (handler)
    MCP CallToolRequestSchema handler for 'create_working_memory': extracts arguments and delegates to memoryManager.createWorkingMemory, returns JSON response.
    case "create_working_memory":
      const workingMemory = await memoryManager.createWorkingMemory(
        args.content,
        args.embedding,
        args.context || {}
      );
      return { content: [{ type: "text", text: JSON.stringify(workingMemory, null, 2) }] };
  • Input schema and tool metadata definition returned by ListToolsRequestSchema handler.
    name: "create_working_memory",
    description: "Create a temporary working memory with expiration",
    inputSchema: {
      type: "object",
      properties: {
        content: {
          type: "string",
          description: "Content of the working memory"
        },
        embedding: {
          type: "array",
          items: { type: "number" },
          description: "Vector embedding for the content"
        },
        context: {
          type: "object",
          properties: {
            ttl: {
              type: "integer",
              description: "Time to live in seconds",
              default: 3600
            }
          },
          default: {}
        }
      },
      required: ["content", "embedding"]
    }
  • Tool schema definition exported from memory-tools.js (matches mcp.js version, possibly source template).
    name: "create_working_memory",
    description: "Create a temporary working memory with expiration",
    inputSchema: {
      type: "object",
      properties: {
        content: {
          type: "string",
          description: "Content of the working memory"
        },
        embedding: {
          type: "array",
          items: { type: "number" },
          description: "Vector embedding for the content"
        },
        context: {
          type: "object",
          properties: {
            ttl: {
              type: "integer",
              description: "Time to live in seconds",
              default: 3600
            }
          },
          default: {}
        }
      },
      required: ["content", "embedding"]
    }

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/QuixiAI/agi-mcp-server'

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