temp-notes-mcp-server
A Model Context Protocol (MCP) server that enables AI agents to store and retrieve temporary information across conversations and contexts.
The Temp Notes MCP Server provides a simple yet powerful way for AI agents to maintain state and context across multiple conversations or when working with complex tasks that exceed the context window limitations. It serves as a temporary memory system that allows agents to store notes, checklists, code snippets, and other information that can be retrieved later. This server is designed to be lightweight and easy to integrate with existing workflows, enabling complex multi-step tasks to be broken down into manageable pieces. It offers persistent temporary storage across conversations and a simple API for reading, writing, and appending notes.
Features
- Persistent temporary storage across conversations
- Simple API for reading, writing, and appending notes
- Lightweight and easy to integrate with existing workflows
- Enables complex multi-step tasks to be broken down into manageable pieces
MCP Tools
- clear_note: Clears the current note, making it empty.
- write_note: Replaces the current note with a new string.
- read_note: Returns the current content of the note.
- append_note: Appends new text to the current note, starting with a new line. Optionally includes a separator line.
Usage with Different Platforms
npx
{
"mcpServers": {
"temp-notes": {
"command": "npx",
"args": ["-y", "@landicefu/temp-notes-mcp-server"],
"disabled": false
}
}
}
npm
bash
npm install -g @landicefu/temp-notes-mcp-server
{
"mcpServers": {
"temp-notes": {
"command": "temp-notes-mcp-server",
"disabled": false
}
}
}
source
bash
git clone https://github.com/landicefu/temp-notes-mcp-server.git
cd temp-notes-mcp-server
npm install
npm run build
{
"mcpServers": {
"temp-notes": {
"command": "node",
"args": ["/path/to/temp-notes-mcp-server/build/index.js"],
"disabled": false
}
}
}
Related MCP Servers
View all knowledge_and_memory servers →git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Knowledge Graph Memory Server
by modelcontextprotocol
A basic implementation of persistent memory using a local knowledge graph, allowing Claude to remember information about the user across chats.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.
rust-docs-mcp-server
by Govcraft
The Rust Docs MCP Server provides an up-to-date knowledge source for specific Rust crates, enhancing the accuracy of AI coding assistants by allowing them to query current documentation.
algorand-mcp
by GoPlausible
This is a Model Context Protocol (MCP) implementation for Algorand blockchain interactions, providing a server package for blockchain interactions and a client package for wallet management and transaction signing.
mindmap-mcp-server
by YuChenSSR
A Model Context Protocol (MCP) server for converting Markdown content to interactive mindmaps.
basic-memory
by basicmachines-co
Basic Memory is a tool that allows users to build a persistent knowledge base through natural conversations with LLMs, storing information in Markdown files.