一个用于与Rememberizer的文档和知识管理API交互的模型上下文协议服务器。该服务器使大型语言模型能够通过Rememberizer搜索、检索和管理文档及集成。
请注意,mcp-server-rememberizer
目前正在开发中,其功能可能会发生变化。
服务器提供了两种类型的资源访问:文档或Slack讨论
retrieve_semantically_similar_internal_knowledge
match_this
(string): Up to a 400-word sentence for which you wish to find semantically similar chunks of knowledgen_results
(integer, optional): Number of semantically similar chunks of text to return. Use 'n_results=3' for up to 5, and 'n_results=10' for more informationfrom_datetime_ISO8601
(string, optional): Start date in ISO 8601 format with timezone (e.g., 2023-01-01T00:00:00Z). Use this to filter results from a specific dateto_datetime_ISO8601
(string, optional): End date in ISO 8601 format with timezone (e.g., 2024-01-01T00:00:00Z). Use this to filter results until a specific datesmart_search_internal_knowledge
query
(string): Up to a 400-word sentence for which you wish to find semantically similar chunks of knowledgeuser_context
(string, optional): The additional context for the query. You might need to summarize the conversation up to this point for better context-awared resultsn_results
(integer, optional): Number of semantically similar chunks of text to return. Use 'n_results=3' for up to 5, and 'n_results=10' for more informationfrom_datetime_ISO8601
(string, optional): Start date in ISO 8601 format with timezone (e.g., 2023-01-01T00:00:00Z). Use this to filter results from a specific dateto_datetime_ISO8601
(string, optional): End date in ISO 8601 format with timezone (e.g., 2024-01-01T00:00:00Z). Use this to filter results until a specific datelist_internal_knowledge_systems
rememberizer_account_information
list_personal_team_knowledge_documents
page
(integer, optional): Page number for pagination, starts at 1 (default: 1)page_size
(integer, optional): Number of documents per page, range 1-1000 (default: 100)remember_this
name
(string): Name of the information. This is used to identify the information in the futurecontent
(string): The information you wish to memorizenpx @michaellatman/mcp-get@latest install mcp-server-rememberizer
npx -y @smithery/cli install mcp-server-rememberizer --client claude
如果你已安装了 SkyDeck AI Helper 应用程序,你可以搜索 "Rememberizer" 并安装 mcp-server-rememberizer。
需要以下环境变量:
REMEMBERIZER_API_TOKEN
: 你的 Rememberizer API 令牌你可以在 Rememberizer 中创建自己的通用知识 来注册一个 API 密钥。
将以下内容添加到你的 claude_desktop_config.json
文件中:
"mcpServers": {
"rememberizer": {
"command": "uvx",
"args": ["mcp-server-rememberizer"],
"env": {
"REMEMBERIZER_API_TOKEN": "your_rememberizer_api_token"
}
},
}

将环境变量 REMEMBERIZER_API_TOKEN 添加到 mcp-server-rememberizer 中。
在 Rememberizer MCP 服务器的支持下,你现在可以在你的 Claude Desktop 应用或 SkyDeck AI GenStudio 中询问以下问题:
我的 Rememberizer 账号是什么?
列出我所有的文档。
给我关于“...”的快速摘要
等等...
本项目根据 Apache License 2.0 许可 - 详情请参阅 LICENSE 文件。