Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions servers/community.memory-npx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"$schema": "../schemas/server-definition.schema.json",
"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"
],
"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
}
}