MCP Server: IPFS Context
[!WARNING]
Information is stored publically on IPFS network. Do not store sensitive information.
An MCP that uses IPFS to store and retrieve context between sessions.
Features
- Easy-to-use tools for persisting and retrieving conversational context.
- Customizable prompts for efficient workflow integration.
- Support for structured content including Mermaid diagrams, code snippets, and tasks.
Tools
Usage:
Tools are automatcally called by the LLM prompts. You do not need to call them directly.
leave_off
Usage:
- Automatically called via MCP prompts with the required
contextparameter.
Stores the current conversation context and returns a unique identifier (id) for later retrieval.
pick_up
Retrieves previously stored context using the unique identifier obtained from leave_off.
Usage:
- Automatically called via MCP prompts with the required
idparameter.
Prompts
Customize your conversational workflows easily using prompts.
In Claude Desktop, activate by clicking "Attach to MCP", then select your desired prompt from the "Choose an integration" menu.
💾 Save
Summarizes the current conversation and utilizes the leave_off tool to store the context.
Optional Parameters:
projectType: Define the project type. Available options:general(default)technicalcreativeproblem-solving
includeMermaid: Include Mermaid diagrams (yesorno, default:no)includeCode: Include code snippets (yesorno, default:no)includeTasks: Include task lists (yesorno, default:no)
📂 Continue
Loads previously saved conversation context using the pick_up tool.
Required Parameter:
id: Unique identifier generated by theleave_offtool.
📂 Resume
Loads most recently saved convesation context.
Installation
Prerequisites
- Node.js
- MCP-compatible client (e.g., Claude Desktop)
Setup
Integrate into your MCP client configuration:
Using NPX:
{
"mcpServers": {
"vimble-mcp": {
"command": "npx",
"args": ["-y", "mcp-server-ipfs-context", "<path-to-context-storage>"]
}
}
}
Local Development:
{
"mcpServers": {
"vimble-mcp": {
"command": "<path-to-node>",
"args": [
"<this-directory>/stdio.mjs",
"<ipfs-gateway-url>",
"<ipfs-gateway-url>"
]
}
}
}
License
MIT
Recommend MCP Servers 💡
puremd-mcp
A Model Context Protocol (MCP) server that integrates with pure.md to provide web unblocking, scraping, and searching capabilities for LLM clients, enabling them to reliably access web content in markdown format.
algolia
An experimental Model Context Protocol (MCP) server developed by Algolia for interacting with Algolia APIs, enabling AI models to perform search, indexing, and other data operations.
Agentic_Longterm_Memory
Sophisticated AI chatbot with long-term memory capabilities, complete Notion workspace integration, and MCP (Model Context Protocol) implementation. Features semantic, episodic, and procedural memory systems.
things-mcp
A Model Context Protocol (MCP) server that provides seamless integration with the Things productivity app.
E2B
E2B provides a secure, open-source cloud sandbox runtime for executing AI-generated code, designed for agentic and AI use cases.
@aashari/mcp-server-atlassian-confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.