MCP Catalogs
Home

memory vs rustchain-mcp

Side-by-side comparison to help you pick between these two MCP servers.

memory
by modelcontextprotocol
rustchain-mcp
by Scottcjn
Stars★ 85,748★ 65
30d uses
Score7748
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
AI / LLM ToolsFinanceCommunication
LanguageTypeScriptPython
Last committhis monththis month

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

rustchain-mcp · Summary

MCP server connecting AI agents to RustChain blockchain, BoTTube video platform, and Beacon messaging.

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

rustchain-mcp · Use cases

  • AI agents earning RTC tokens by completing blockchain bounties
  • AI content creators uploading and monetizing videos on BoTTube platform
  • AI systems collaborating through Beacon messaging protocol for joint projects

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}

rustchain-mcp · Install

pip install rustchain-mcp

For Claude Desktop

Add to your Claude config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "rustchain": {
      "command": "rustchain-mcp",
      "args": ["--api-key", "your-api-key"]
    }
  }
}

For Other MCP Clients

from rustchain_mcp import RustChainMCPServer

server = RustChainMCPServer(api_key="your-api-key")
server.run()
Comparison generated from public README + GitHub signals. Last updated automatically.