# Rememberizer MCP Servers

The [**Model Context Protocol**](https://modelcontextprotocol.io/introduction) (MCP) is a standardized protocol designed to integrate AI models with various data sources and tools. It supports a client-server architecture facilitating the building of complex workflows and agents with enhanced flexibility and security.

## Rememberizer MCP Server

The [**Rememberizer MCP Server**](https://github.com/skydeckai/mcp-server-rememberizer) is an MCP server tailored for interacting with Rememberizer's document and knowledge management API. It allows LLMs to efficiently search, retrieve, and manage documents and integrations. The server is available as a public package on [mseep.ai](https://mseep.ai/app/skydeckai-mcp-server-rememberizer) and as an open-source project on [GitHub](https://github.com/skydeckai/mcp-server-rememberizer).

### Integration Options

The Rememberizer MCP Server can be installed and integrated through multiple methods:

#### Via uvx

```bash
uvx mcp-server-rememberizer
```

#### Via MseeP AI Helper App

If you have MseeP AI Helper app installed, you can search for "Rememberizer" and install the mcp-server-rememberizer.

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-32c16c3fe8a8160615e0b4c2615a096cd07c717a%2FScreenshot%202025-07-29%20at%2014.43.12.png?alt=media" alt=""><figcaption><p>MseeP AI Helper</p></figcaption></figure>

### Tools Available

The Rememberizer MCP Server provides the following tools for interacting with your knowledge repository:

1. **retrieve\_semantically\_similar\_internal\_knowledge**
   * Finds semantically similar matches from your Rememberizer knowledge repository
   * Parameters:
     * `match_this` (string, required): The text to find matches for (up to 400 words)
     * `n_results` (integer, optional): Number of results to return (default: 5)
     * `from_datetime_ISO8601` (string, optional): Filter results from this date
     * `to_datetime_ISO8601` (string, optional): Filter results until this date
2. **smart\_search\_internal\_knowledge**
   * Performs an agentic search across your knowledge sources
   * Parameters:
     * `query` (string, required): Your search query (up to 400 words)
     * `user_context` (string, optional): Additional context for better results
     * `n_results` (integer, optional): Number of results to return (default: 5)
     * `from_datetime_ISO8601` (string, optional): Filter results from this date
     * `to_datetime_ISO8601` (string, optional): Filter results until this date
3. **list\_internal\_knowledge\_systems**
   * Lists all your connected knowledge sources
   * No parameters required
4. **rememberizer\_account\_information**
   * Retrieves your Rememberizer account details
   * No parameters required
5. **list\_personal\_team\_knowledge\_documents**
   * Returns a paginated list of all your documents
   * Parameters:
     * `page` (integer, optional): Page number for pagination (default: 1)
     * `page_size` (integer, optional): Documents per page (default: 100, max: 1000)
6. **remember\_this**
   * Saves new information to your Rememberizer knowledge system
   * Parameters:
     * `name` (string, required): Name to identify this information
     * `content` (string, required): The information to memorize

### Setup

**Step 1:** Sign up for a new Rememberizer account at [rememberizer.ai](https://rememberizer.ai/).

**Step 2:** Add your knowledge to the Rememberizer platform by connecting to Gmail, Dropbox, or Google Drive, etc...

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-6624093d0ac3715d03ccf05058284eb0d5910299%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>

**Step 3:** To selectively share your knowledge, set up a Mementos Filter. This allows you to choose which information is shared and which remains private. ([Guide here](https://docs.rememberizer.ai/personal/mementos-filter-access))

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-1f55d2111aa20d16ef36c6c2efd168d83651051f%2Fimage%20(3).png?alt=media" alt=""><figcaption></figcaption></figure>

**Step 4:** Share your knowledge by creating a "Common Knowledge" (Guide [here](https://docs.rememberizer.ai/personal/common-knowledge) and [here](https://docs.rememberizer.ai/developer/registering-and-using-api-keys))

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-89f113f0a874c310d0ef4658b82b32e3a3c15da4%2Fimage%20(4).png?alt=media" alt=""><figcaption></figcaption></figure>

**Step 5:** To access your knowledge via APIs, create an API key ([Guide here](https://docs.rememberizer.ai/developer/registering-and-using-api-keys))

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-1d8189ec2b572a4f5b1eb3a28b5034816690e35a%2Fimage%20(5).png?alt=media" alt=""><figcaption></figcaption></figure>

**Step 6:** If you're using Claude Desktop app, add this to your `claude_desktop_config.json` file.

```json
{
  "mcpServers": {
    "rememberizer": {
      "command": "uvx",
      "args": ["mcp-server-rememberizer"],
      "env": {
        "REMEMBERIZER_API_TOKEN": "your_rememberizer_api_token"
      }
    }
  }
}
```

**Step 7:** If you're using MseeP AI Helper app, add the env `REMEMBERIZER_API_TOKEN` to mcp-server-rememberizer.

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-f87faae63c6c243ebcdfd4544bb344f94ac10461%2FScreenshot%202025-07-29%20at%2014.45.42.png?alt=media" alt=""><figcaption></figcaption></figure>

Congratulations, you're done!

With support from the Rememberizer MCP server, you can now ask the following questions in your Claude Desktop app or SkyDeck AI GenStudio

* What is my Rememberizer account?
* List all documents that I have there.
* Give me a quick summary about "..."

## Rememberizer Vector Store MCP Server

The **Rememberizer VectorStore MCP Server** facilitates interaction between LLMs and the Rememberizer Vector Store, enhancing document management and retrieval through semantic similarity searches.

### Integration Options

The Rememberizer Vector Store MCP Server can be installed and integrated through similar methods as the Rememberizer MCP Server:

#### Via uvx

```bash
uvx mcp-rememberizer-vectordb
```

#### Via MseeP AI Helper App

If you have MseeP AI Helper app installed, you can search for "Rememberizer Vector Store" and install the mcp-rememberizer-vectordb.

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-44843f27834f818e9fa8e7e80628a5e7c9c1ac02%2FScreenshot%202025-07-29%20at%2015.14.07.png?alt=media" alt=""><figcaption><p>MseeP AI Helper</p></figcaption></figure>

### Installation

To install the Rememberizer Vector Store MCP Server, follow the [guide here](https://github.com/skydeckai/mcp-rememberizer-vectordb#installation).

### Setup

**Step 1:** Sign up for a new Rememberizer account at [rememberizer.ai](https://rememberizer.ai/).

**Step 2:** Create a new Vector Store ([Guide here](https://docs.rememberizer.ai/developer/vector-stores))

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-6ee28f37447d63b9cdee04a0acb285fe5e00896f%2Fimage%20(6).png?alt=media" alt=""><figcaption></figcaption></figure>

**Step 3:** To manage your Vector Store via APIs, you need to create an API key ([Guide here](https://docs.rememberizer.ai/developer/vector-stores#api-key-management))

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-a1e0915191b85a646dcb615b72bc9e01b6360264%2Fimage%20(7).png?alt=media" alt=""><figcaption></figcaption></figure>

**Step 4:** If you're using Claude Desktop app, add this to your `claude_desktop_config.json` file.

```json
{
  "mcpServers": {
    "rememberizer": {
      "command": "uvx",
      "args": ["mcp-rememberizer-vectordb"],
      "env": {
        "REMEMBERIZER_VECTOR_STORE_API_KEY": "your_rememberizer_api_token"
      }
    }
  }
}
```

**Step 5:** If you're using MseeP AI Helper app, add the env `REMEMBERIZER_VECTOR_STORE_API_KEY` to mcp-rememberizer-vectordb.

<figure><img src="https://2952947711-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyNqpTh7Mh66N0RnO0k24%2Fuploads%2Fgit-blob-f2cf16052607aa19ab98d30e19712bdf581c2986%2FScreenshot%202025-07-29%20at%2015.16.16.png?alt=media" alt=""><figcaption></figcaption></figure>

Congratulations, you're done!

With support from the Rememberizer Vector Store MCP server, you can now ask the following questions in your Claude Desktop app or SkyDeck AI GenStudio

* What is my current Rememberizer vector store?
* List all documents that I have there.
* Give me a quick summary about "..."

## Conclusion

The Rememberizer MCP Servers demonstrate the powerful capabilities of the Model Context Protocol by providing an efficient, standardized way to connect AI models with comprehensive data management tools. These servers enhance the ability to search, retrieve, and manage documents with precision, utilizing advanced semantic search methods and the augmentation of LLM Agents.
