The Knowledge Graph Memory Server is a Swift implementation of a Model Context Protocol (MCP) server designed to manage knowledge graphs for AI assistants. It enables large language models (LLMs) to create, read, update, and delete entities and relationships in a persistent knowledge graph, allowing AI assistants to maintain memory across conversations.
create_entities
: Create multiple new entities in the knowledge graph.create_relations
: Create multiple new relations between entities.add_observations
: Add new observations to existing entities.delete_entities
: Delete multiple entities and their associated relations.delete_observations
: Delete specific observations from entities.delete_relations
: Delete multiple relations from the knowledge graph.read_graph
: Read the entire knowledge graph.search_nodes
: Search for nodes in the knowledge graph based on a query.open_nodes
: Open specific nodes in the knowledge graph by their names.curl -fsSL https://raw.githubusercontent.com/okooo5km/memory-mcp-server/main/install.sh | bash
shell
git clone https://github.com/okooo5km/memory-mcp-server.git
cd memory-mcp-server
shell
swift build -c release
shell
mkdir -p ~/.local/bin
cp $(swift build -c release --show-bin-path)/memory-mcp-server ~/.local/bin/
MEMORY_FILE_PATH
: Custom path for storing the knowledge graph (defaults to memory.json
in the current working directory)."mcpServers": {
"memory": {
"command": "memory-mcp-server",
"env": {
"MEMORY_FILE_PATH": "/path/to/your/memory.json"
}
}
}
{
"mcpServers": {
"memory": {
"command": "memory-mcp-server",
"env": {
"MEMORY_FILE_PATH": "/path/to/your/memory.json"
}
}
}
}
You have access to a Knowledge Graph memory system, which can store and retrieve information across conversations. Use it to remember important details about the user, their preferences, and any facts they've shared.
{
"entities": [
{
"name": "John Smith",
"entityType": "Person",
"observations": ["Software engineer", "Lives in San Francisco", "Enjoys hiking"]
}
]
}
{
"relations": [
{
"from": "John Smith",
"to": "Acme Corp",
"relationType": "works at"
}
]
}
{
"observations": [
{
"entityName": "John Smith",
"contents": ["Recently promoted to Senior Engineer", "Working on AI projects"]
}
]
}
See GitHub Releases for version history and changelog.
Licensed under the MIT License.
A Swift implementation of a knowledge graph memory server for Model Context Protocol (MCP), based on the official TypeScript implementation.