microsoft

Memory - User Bio MCP Server

Community microsoft
Updated

Allows saving of memories across conversations related to user interests, preferences, and ongoing projects.

Memory - User Bio MCP Server

Allows saving of memories across conversations related to user interests, preferences, and ongoing projects.

This is a Model Context Protocol (MCP) server project.

Setup and Installation

Simply run:

make

To create the virtual environment and install dependencies.

Running the Server

Use the VSCode launch configuration, or run manually:

Defaults to stdio transport:

uv run mcp-server-memory-user-bio

For SSE transport:

uv run mcp-server-memory-user-bio --transport sse --port 34737

The SSE URL is:

http://127.0.0.1:34737/sse

Client Configuration

To use this MCP server in your setup, consider the following configuration:

Stdio

{
  "mcpServers": {
    "mcp-server-memory-user-bio": {
      "command": "uv",
      "args": ["run", "-m", "mcp_server_memory_user_bio.start"]
    }
  }
}

SSE

{
  "mcpServers": {
    "mcp-server-memory-user-bio": {
      "command": "http://127.0.0.1:34737/sse",
      "args": []
    }
  }
}

Optional roots

For MCP clients that support specifying roots, such as the Codespace assistant, thefollowing roots are optional and can be used to customize the behavior of the server:

  • user-timezone: The user's timezone, which will be used to determine the date a memory was created. URI can be any schema. The host and path will be used as the timezone. For example, user-timezone://America/New_York will be used as America/New_York.
  • session-id: The session ID, which will be used to identify the session, for separation of memories by session. URI can be any schema. The host and path will be used as the session ID. For example, session-id://123456 will be used as 123456.

MCP Server · Populars

MCP Server · New

    googleads

    Google Ads MCP Server

    MCP Server

    Community googleads
    StefanMaron

    AL MCP Server

    MCP Server

    Community StefanMaron
    vintasoftware

    Django AI Boost

    A MCP server for Django applications, inspired by Laravel Boost.

    Community vintasoftware
    idleprocesscc

    Co-Reading MCP

    A local co-reading MCP server for chunked books, reading progress, search, and margin annotations.

    Community idleprocesscc
    JasonJarvan

    Export-Zhihu-Collections

    将知乎收藏夹(公开和私密)批量导出为 Markdown 格式文件. 支持配置收藏夹列表并批量下载, 支持基于URL自动去重, 支持下载专栏和图片, 支持自定义保存路径, 支持调试和错误日志. **同时提供 MCP Server**,可被 AI Agent (如 Claude Code) 直接调用,为大模型提供保存知乎收藏夹的能力。

    Community JasonJarvan