Adding Rememberizer AI to Community Servers #45
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
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.
Server Details
mcp-server-rememberizer
rememberizer_search
q
(string): Up to a 400-word sentence to find semantically similar chunks of knowledgen
(integer, optional): Number of similar documents to return (default: 5)from
(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 date (default: None)to
(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 date (default: None)rememberizer_agentic_search
query
(string): Up to a 400-word sentence to find semantically similar chunks of knowledge. This query can be augmented by our LLM Agents for better results.n_chunks
(integer, optional): Number of similar documents to return (default: 5)user_context
(string, optional): The additional context for the query. You might need to summarize the conversation up to this point for better context-awared results (default: None)from
(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 date (default: None)to
(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 date (default: None)rememberizer_list_integrations
rememberizer_account_information
rememberizer_list_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)Motivation and Context
The integration of Rememberizer with the MCP server is designed to enhance document and knowledge management for LLMs. By connecting Rememberizer's robust semantic search and document retrieval capabilities with MCP, we aim to provide LLMs with seamless access to relevant information and context-aware interactions. This integration supports the development of intelligent applications that require real-time data access and dynamic user context incorporation, thus expanding the potential use cases and effectiveness of LLMs within the MCP ecosystem.