Temp MCP Server

This MCP server provides a simple yet powerful way for AI agents to maintain state and context across multiple conversations or when working with

Local serverstdio

What is the Temp MCP server?

If you already use Temp, the temp mcp server is the piece that lets your assistant work with it directly. This 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.

What the server does

A Model Context Protocol (MCP) server that enables AI agents to store and retrieve temporary information across conversations and contexts.

  • 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

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • clear_note — The clear_note tool exposed by this server
  • write_note — The write_note tool exposed by this server
  • read_note — The read_note tool exposed by this server
  • append_note — Appends new text to the current note, starting with a new line. Optionally includes a separator line

Installation

Installation goes through your MCP client rather than a global install: point it at without on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Where it fits

Among the file and storage access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Temp's toolset — clear_note, write_note, read_note and 1 more — is a fair guide to whether it matches your workflow. It is maintained by landicefu; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
clear_noteThe clear_note tool exposed by this server.
write_noteThe write_note tool exposed by this server.
read_noteThe read_note tool exposed by this server.
append_noteAppends new text to the current note, starting with a new line. Optionally includes a separator line.

How to install the Temp MCP server

{
     "mcpServers": {
       "temp-notes": {
         "command": "npx",
         "args": ["-y", "@landicefu/temp-notes-mcp-server"],
         "disabled": false
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Temp to clear note.
  • Use Temp to write note.
  • Use Temp to read note.

Frequently asked questions

It connects Temp to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (clear_note, write_note, read_note, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Temp directly.