M

Memorymesh

MemoryMesh is a knowledge graph server designed for AI models, focusing on text RPGs and interactive narratives, helping AI maintain structured memory across conversations.
3.5 points
212
Installation
Copy the following command to your Client for configuration
Note: Your key is sensitive information, do not share it with anyone.

🚀 Memory Mesh

MemoryMesh is an MCP server for managing knowledge graph data in the Claude desktop environment. It enables AI to perform reasoning through structured data and provides an in-memory data storage system.

🚀 Quick Start

Installation

  1. Clone the repository:

    git clone https://github.com/CheMiguel23/memorymesh.git
    cd memorymesh
    
  2. Install dependencies:

    npm install
    
  3. Compile the project:

    npm run build
    

    This command compiles the TypeScript code into JavaScript and stores it in the dist directory. It also copies the example schema and data files to this directory.

  4. Configure the Claude desktop environment:

    • Open your configuration file:

      • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
      • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Add the following content to the mcpServers section:

      "memorymesh": {
        "command": "node",
        "args": ["/ABSOLUTE/PATH/TO/YOUR/PROJECT/memorymesh/dist/index.js"]
      }
      

      Replace /ABSOLUTE/PATH/TO/YOUR/PROJECT/ with the actual path of your project.

Verify the Installation

  1. Launch the Claude desktop.
  2. Open a new chat window.
  3. Check the MCP plugin icon in the top - right corner. If you see the icon, the configuration is correct.
  4. Click the icon and view the list of connected servers. You should see "memorymesh".

✨ Features

  • Pluggable Knowledge Representation: Define entities and relationships through JSON Schema.
  • Persistent Storage: Data is saved in files to prevent data loss due to power outages or restarts.
  • AI Programmable Interface: Provide custom tools for Claude to interact with the knowledge graph.

đŸ’ģ Usage Examples

Basic Usage

// Create a user using the add_user tool
{
  "tool": "add_user",
  "args": {
    "username": "john_doe",
    "email": "john@example.com",
    "age": 30,
    "hobbies": ["reading", "music"]
  }
}

Advanced Usage

// Query a user using the query_user tool
{
  "tool": "query_user",
  "args": {
    "username": "john_doe"
  },
  "result": {
    "found": true,
    "user": {
      "username": "john_doe",
      "email": "john@example.com",
      "age": 30,
      "hobbies": ["reading", "music"]
    }
  }
}

📚 Documentation

Dependencies

  • express: Used to create an HTTP server.
  • yargs: Command - line argument parsing.
  • uuid: Generate unique identifiers.

Install via npm

npm install memorymesh --save

Directory Structure

memorymesh/
├── dist/                 # Compiled output directory
│   ├── index.js         # Entry file
│   └── data/            # Data storage directory
├── schemas/              # Schema files defining entities and relationships
└── src/                  # Source code directory
    ├── server.ts        # Server implementation
    └── tools/           # Custom tools

Tutorial

Create a New Entity Type

  1. Create a new JSON Schema file in the schemas directory.
  2. Define the attributes and relationships of the entity.
  3. Use AI tools for data operations.

🤝 Contribution

Any contributions, feedback, or ideas are welcome to further advance this project or inspire new explorations.

A
Apple Notes MCP
A server that provides local Apple Notes database access for the Claude desktop client, supporting reading and searching of note content.
Python
201
4.3 points
M
MCP Server Weread
The WeRead MCP Server is a lightweight service that bridges WeRead data and AI clients, enabling in - depth interaction between reading notes and AI.
TypeScript
371
4 points
M
MCP Obsidian
This project is an MCP server used to interact with the Obsidian note application through the Local REST API plugin of Obsidian. It provides various tools to operate and manage files in Obsidian, including listing files, retrieving file content, searching, modifying content, and deleting files.
Python
877
5 points
M
MCP Atlassian
MCP Atlassian is a Model Context Protocol server designed for Atlassian products (Confluence and Jira), supporting both cloud and on-premises deployments and providing AI assistant integration functions.
Python
1.2K
5 points
M
MCP Logseq Server
An MCP server for interacting with the LogSeq note-taking app, providing various API tools to operate on note content.
Python
276
4.1 points
S
Solana Docs MCP Server
A TypeScript-based MCP server that implements a simple note system and supports note creation and summarization functions
TypeScript
115
4.2 points
G
Godot MCP
Godot MCP is a Model Context Protocol server designed for the Godot game engine, providing functions such as editor control, project execution, and debug output capture, and supporting the interaction between AI assistants and the Godot engine.
JavaScript
368
4 points
M
MCP Unity
MCP Unity is a Unity Editor extension that implements the Model Context Protocol, allowing AI assistants to interact with Unity projects and providing a bridge between Unity and the Node.js server.
JavaScript
484
5 points
Featured MCP Services
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
1.7K
5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
823
4.3 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
79
4.3 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
130
4.5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
554
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
6.6K
4.5 points
C
Context7
Context7 MCP is a service that provides real-time, version-specific documentation and code examples for AI programming assistants. It is directly integrated into prompts through the Model Context Protocol to solve the problem of LLMs using outdated information.
TypeScript
5.2K
4.7 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
745
4.8 points
Š 2025AIbase