Overview
What is Resilient MCP?
Resilient MCP is a Model Context Protocol (MCP) server for interacting with ResilientDB, a high‑performance blockchain platform. It enables Large Language Models (LLMs) to read from and write to ResilientDB through the standard MCP interface.
How to use Resilient MCP?
Build the Docker image with docker build -t mcp/resilientdb -f Dockerfile ., then configure it in Claude Desktop by adding the server entry to claude_desktop.json using the docker command with run -i --rm mcp/resilientdb. The server listens on stdio and offers two tools: set and get.
Key features of Resilient MCP
- Provides a
settool to store a key‑value pair in ResilientDB - Provides a
gettool to retrieve a value by its key - Runs on stdio for seamless MCP communication
- Deployed via Docker for easy setup
Use cases of Resilient MCP
- An LLM storing structured data (e.g., user preferences) into a blockchain
- An AI agent querying ResilientDB by key to retrieve previous records
- Integrating blockchain‑based data persistence into conversational AI workflows
FAQ from Resilient MCP
How do I install Resilient MCP?
Build the Docker image with docker build -t mcp/resilientdb -f Dockerfile ., then add the server configuration to claude_desktop.json using the docker run command.
What tools does Resilient MCP provide?
Two tools: set (stores a key‑value pair; parameters: key and value, both strings) and get (retrieves a value by key).
Does Resilient MCP require any dependencies?
Docker runtime is required to build and run the container.
How does Resilient MCP communicate?
It uses the Model Context Protocol over stdio.
Where is data stored?
All data is stored in ResilientDB, a high‑performance blockchain platform.