by skydeckai
Enables Large Language Models to search, retrieve, and manage documents and integrations through Rememberizer’s API.
Provides a Model Context Protocol (MCP) server that exposes Rememberizer’s document and knowledge‑management capabilities to LLMs, allowing semantic retrieval, smart search, listing of integrations, account info access, and saving of new knowledge.
uvx mcp-server-rememberizer
(or install via the MseeP AI Helper app).REMEMBERIZER_API_TOKEN
with your Rememberizer API token.claude_desktop_config.json
or configure the same env var in the MseeP AI Helper.retrieve_semantically_similar_internal_knowledge
, smart_search_internal_knowledge
, list_internal_knowledge_systems
, etc.) from any MCP‑compatible client.Q: Do I need a Rememberizer account? A: Yes, an active account and an API token are required.
Q: Can I limit the date range of searches?
A: Yes, optional from_datetime_ISO8601
and to_datetime_ISO8601
parameters filter results.
Q: How many results can I request?
A: Use the n_results
parameter; typical values are 3 (up to 5 results) or 10 for more detail.
Q: Is the server cross‑platform?
A: The server runs wherever Python (via uvx
) or the MseeP helper is available.
Q: How do I paginate document listings?
A: Use page
and page_size
parameters on the list_personal_team_knowledge_documents
tool.
A Model Context Protocol server for interacting with Rememberizer's document and knowledge management API. This server enables Large Language Models to search, retrieve, and manage documents and integrations through Rememberizer.
Please note that mcp-server-rememberizer
is currently in development and the functionality may be subject to change.
The server provides access to two types of resources: Documents or Slack discussions
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 memorizeuvx mcp-server-rememberizer
If you have MseeP AI Helper app installed, you can search for "Rememberizer" and install the mcp-server-rememberizer.
The following environment variables are required:
REMEMBERIZER_API_TOKEN
: Your Rememberizer API tokenYou can register an API key by creating your own Common Knowledge in Rememberizer.
Add this to your claude_desktop_config.json
:
"mcpServers": {
"rememberizer": {
"command": "uvx",
"args": ["mcp-server-rememberizer"],
"env": {
"REMEMBERIZER_API_TOKEN": "your_rememberizer_api_token"
}
},
}
Add the env REMEMBERIZER_API_TOKEN to mcp-server-rememberizer.
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 "..."
and so on...
To learn more about Rememberizer MCP Server: https://docs.rememberizer.ai/personal-use/integrations/rememberizer-mcp-servers
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A basic implementation of persistent memory using a local knowledge graph. This lets Claude remember information about the user across chats.
by topoteretes
Provides dynamic memory for AI agents through modular ECL (Extract, Cognify, Load) pipelines, enabling seamless integration with graph and vector stores using minimal code.
by basicmachines-co
Enables persistent, local‑first knowledge management by allowing LLMs to read and write Markdown files during natural conversations, building a traversable knowledge graph that stays under the user’s control.
by smithery-ai
Provides read and search capabilities for Markdown notes in an Obsidian vault for Claude Desktop and other MCP clients.
by chatmcp
Summarize chat messages by querying a local chat database and returning concise overviews.
by dmayboroda
Provides on‑premises conversational retrieval‑augmented generation (RAG) with configurable Docker containers, supporting fully local execution, ChatGPT‑based custom GPTs, and Anthropic Claude integration.
by GreatScottyMac
Provides a project‑specific memory bank that stores decisions, progress, architecture, and custom data, exposing a structured knowledge graph via MCP for AI assistants and IDE tools.
by andrea9293
Provides document management and AI-powered semantic search for storing, retrieving, and querying text, markdown, and PDF files locally without external databases.
by scorzeth
Provides a local MCP server that interfaces with a running Anki instance to retrieve, create, and update flashcards through standard MCP calls.