Files
goose/documentation/docs/tutorials/memory-mcp.md
2025-02-19 13:26:17 -05:00

5.5 KiB
Raw Blame History

title, description
title description
Memory Extension Use Memory MCP Server as a Goose Extension

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import YouTubeShortEmbed from '@site/src/components/YouTubeShortEmbed';

The Memory extension turns Goose into a knowledgeable assistant by allowing you to teach it personalized key information (e.g. commands, code snippets, preferences and configurations) that it can recall and apply later. Whether its project-specific (local) or universal (global) knowledge, Goose learns and remembers what matters most to you.

This tutorial covers enabling and using the Memory MCP Server, which is a built-in Goose extension.

Configuration

  1. Ensure extension is enabled:
  1. Run the configure command:
goose configure
  1. Choose to add a Built-in Extension
┌   goose-configure 
│
◇  What would you like to configure?
│  Add Extension 
│
◆  What type of extension would you like to add?
// highlight-start    
│  ● Built-in Extension (Use an extension that comes with Goose)
// highlight-end  
│  ○ Command-line Extension 
│  ○ Remote Extension 
└  
  1. Arrow down to the Memory extension and press Enter
┌   goose-configure 
│
◇  What would you like to configure?
│  Add Extension 
│
◇  What type of extension would you like to add?
│  Built-in Extension 
│
◆  Which built-in extension would you like to enable?
│  ○ Developer Tools 
│  ○ Computer Controller 
// highlight-start
│  ● Memory 
// highlight-end
|  ○ JetBrains
└  Enabled Memory extension
1. Click `...` in the upper right corner 2. Click `Settings` 3. Under `Extensions`, toggle `Memory` to on.

Why Use Memory?

With the Memory extension, youre not just storing static notes, youre teaching Goose how to assist you better. Imagine telling Goose:

learn everything about MCP servers and save it to memory.

Later, you can ask:

utilizing our MCP server knowledge help me build an MCP server.

Goose will recall everything youve saved as long as you instruct it to remember. This makes it easier to have consistent results when working with Goose.

Example Usage

In this example, Ill show you how to make Goose a knowledgeable development assistant by teaching it about your projects API standards. With the Memory extension, Goose can store structured information and retrieve it later to help with your tasks.

This means you no longer have to repeat yourself. Goose will remember your projects requirements and automatically apply them to new tasks.

  1. Open a terminal and start a new Goose session:
goose session
1. Open a new session in Goose Desktop

Step 1: Teach Goose Your API Standards

#### Goose Prompt #1
```
Goose, learn our API development standards:

- All endpoints must use TypeScript interfaces
- Error responses follow RFC 7807 Problem Details spec
- Rate limiting headers are required
- Authentication uses JWT in Authorization header
- All endpoints need OpenAPI documentation

Remember this so you can help me follow these practices.
```

#### Goose Output

```
I've learned your API standards. I'll help enforce these requirements when working on API endpoints.

Storing in:
    - Category: development_standards
    - Tags: #api #typescript #security #documentation
    - Scope: global (these are general standards)

I can now help with:
    - API endpoint implementation
    - Error handling patterns
    - Authentication flows
    - Documentation requirements
```

Step 2: Use Stored Knowledge to Create a New API Endpoint

#### Goose Prompt # 2

```
Help me create a new endpoint for user preferences
```
#### Goose Output
```
I see you need a new endpoint. Based on our API development standards that I have stored in memory, I'll ensure it meets all our requirements.

[.. Checking stored API standards ...]

I've included all our required elements:

✅ TypeScript interfaces
✅ RFC 7807 error response format
✅ Rate limiting
✅ JWT auth header
✅ OpenAPI documentation

Here's your compliant endpoint:

interface UserPreferences {
    userId: string;
    theme: 'light' | 'dark';
    notifications: boolean;
    timezone: string;
}

interface ErrorResponse { 
    type: string;
    title: string;
    status: number;
    detail: string;
    instance: string;
}

@Route('/api/users/:userId/preferences')
class UserPreferencesController {
    @Get()
    @RateLimit(100)  // Adding required rate limiting
    @OpenAPI({ ... }) // Including mandatory OpenAPI docs
    async getUserPreferences(
        @Header('Authorization') token: string,  // JWT auth as per our standard
        @Param('userId') userId: string
    ): Promise<UserPreferences | ErrorResponse> {
        // Implementation following our error handling pattern
    }
}

Would you like me to implement the full endpoint logic?
```