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.
Project description
MCP Server Rememberizer
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.
Components
Resources
The server provides access to two types of resources: Documents or Slack discussions
Tools
-
rememberizer_search- Search for documents by semantic similarity
- Input:
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)
- Returns: Search results as text output
-
rememberizer_agentic_search- Search for documents by semantic similarity with LLM Agents augmentation
- Input:
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)
- Returns: Search results as text output
-
rememberizer_list_integrations- List available data source integrations
- Input: None required
- Returns: List of available integrations
-
rememberizer_account_information- Get account information
- Input: None required
- Returns: Account information details
-
rememberizer_list_documents- Retrieves a paginated list of all documents
- Input:
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)
- Returns: List of documents
Installation
Via mcp-get.com
npx @michaellatman/mcp-get@latest install mcp-server-rememberizer
Via Smithery
npx -y @smithery/cli install mcp-server-rememberizer --client claude
Via SkyDeck AI Helper App
If you have SkyDeck AI Helper app installed, you can search for "Rememberizer" and install the mcp-server-rememberizer.
Configuration
Environment Variables
The following environment variables are required:
REMEMBERIZER_API_TOKEN: Your Rememberizer API token
You can register an API key by creating your own Common Knowledge in Rememberizer.
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
"mcpServers": {
"rememberizer": {
"command": "uvx",
"args": ["mcp-server-rememberizer"],
"env": {
"REMEMBERIZER_API_TOKEN": "your_rememberizer_api_token"
}
},
}
Usage with SkyDeck AI Helper App
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...
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_server_rememberizer-0.1.3.tar.gz.
File metadata
- Download URL: mcp_server_rememberizer-0.1.3.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bdf8864efb674a38e43de98a2bc6b6391d24c5a11ac1266f915278c51283356
|
|
| MD5 |
e042af30a187586a22abde9c7e37273e
|
|
| BLAKE2b-256 |
db5aa9b33096ad4d8f1de91726eaac1c97ed3e844bc281f045f1470f0bbe7f28
|
File details
Details for the file mcp_server_rememberizer-0.1.3-py3-none-any.whl.
File metadata
- Download URL: mcp_server_rememberizer-0.1.3-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b94f6b7cb15045f57638fa230fad84442e56b2a3ba9b13775bcfc2f7673b9822
|
|
| MD5 |
b0fbe391acd94d91e6a6a03e08ec4b43
|
|
| BLAKE2b-256 |
b062a7eb86f5caf652564e0df4a12efcd5f00038089e740539fcb4004e81be71
|