From 86d858fd71f12cb7e166ac15611c2cbf27b9db0b Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:36:22 +0000 Subject: [PATCH 1/2] Add Memory MCP server definition Reference Memory MCP server from modelcontextprotocol/servers. Persistent knowledge graph for storing entities, relations, and observations across sessions. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/community.memory.json | 46 +++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 servers/community.memory.json diff --git a/servers/community.memory.json b/servers/community.memory.json new file mode 100644 index 0000000..0fb487c --- /dev/null +++ b/servers/community.memory.json @@ -0,0 +1,46 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.memory", + "name": "Memory", + "alias": "memory", + "description": "Persistent memory using a local knowledge graph. Store entities, relations, and observations that persist across conversations.", + "icon": "https://avatars.githubusercontent.com/u/182288589?v=4", + "schema_version": "2.1", + "categories": ["ai-ml"], + "tags": ["memory", "knowledge-graph", "entities", "persistence", "context"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-memory"], + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "none", + "instructions": "No authentication required. Memory is stored locally in a JSON file." + }, + + "contributor": { + "name": "Model Context Protocol", + "github": "modelcontextprotocol", + "url": "https://modelcontextprotocol.io" + }, + + "links": { + "repository": "https://github.com/modelcontextprotocol/servers", + "homepage": "https://modelcontextprotocol.io", + "documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From cabd73e1dda3a482666e3500d8695aaa20954c22 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:03 +0800 Subject: [PATCH 2/2] fix: rename server files with transport suffix - community.memory.json -> community.memory-npx.json (id: community.memory-npx) Signed-off-by: Mohammod Al Amin Ashik --- ....memory.json => community.memory-npx.json} | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) rename servers/{community.memory.json => community.memory-npx.json} (77%) diff --git a/servers/community.memory.json b/servers/community.memory-npx.json similarity index 77% rename from servers/community.memory.json rename to servers/community.memory-npx.json index 0fb487c..30be776 100644 --- a/servers/community.memory.json +++ b/servers/community.memory-npx.json @@ -1,42 +1,49 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.memory", - "name": "Memory", + "id": "community.memory-npx", + "name": "Memory (npx)", "alias": "memory", "description": "Persistent memory using a local knowledge graph. Store entities, relations, and observations that persist across conversations.", "icon": "https://avatars.githubusercontent.com/u/182288589?v=4", "schema_version": "2.1", - "categories": ["ai-ml"], - "tags": ["memory", "knowledge-graph", "entities", "persistence", "context"], - + "categories": [ + "ai-ml" + ], + "tags": [ + "memory", + "knowledge-graph", + "entities", + "persistence", + "context" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-memory"], + "args": [ + "-y", + "@modelcontextprotocol/server-memory" + ], "metadata": { "inputs": [] } }, - "auth": { "type": "none", "instructions": "No authentication required. Memory is stored locally in a JSON file." }, - "contributor": { "name": "Model Context Protocol", "github": "modelcontextprotocol", "url": "https://modelcontextprotocol.io" }, - "links": { "repository": "https://github.com/modelcontextprotocol/servers", "homepage": "https://modelcontextprotocol.io", "documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory#readme" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false,