memory-mcp
Tools for interacting with the knowledge graph (memory).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Tools for interacting with the knowledge graph (memory).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | Memory MCP |
| description | Tools for interacting with the knowledge graph (memory). |
The Memory MCP server provides tools to manipulate a knowledge graph. This graph consists of entities (nodes), relations (edges), and observations (attributes/notes attached to entities).
name and an entityType.from, to, and relationType.create_entitiesCreate multiple new entities in the knowledge graph.
Parameters:
entities: List of objects, each containing:
name: Name of the entity (string).entityType: Type of the entity (string, e.g., "Person", "Project").observations: List of initial observations (list of strings).Example:
{
"entities": [
{
"name": "Project Alpha",
"entityType": "Project",
"observations": ["High priority", "Due next month"]
}
]
}
create_relationsCreate multiple new relations between entities. Relations should be in active voice.
Parameters:
relations: List of objects, each containing:
from: Name of the source entity.to: Name of the target entity.relationType: Type of the relation (e.g., "contains", "managed_by").Example:
{
"relations": [
{
"from": "Project Alpha",
"to": "Alice",
"relationType": "managed_by"
}
]
}
add_observationsAdd new observations to existing entities.
Parameters:
observations: List of objects, each containing:
entityName: Name of the entity.contents: List of observation strings.delete_entitiesDelete multiple entities and their associated relations.
Parameters:
entityNames: List of entity names to delete.delete_observationsDelete specific observations from entities.
Parameters:
deletions: List of objects specifying entityName and observations to delete.delete_relationsDelete multiple relations.
Parameters:
relations: List of relation objects (from, to, relationType) to delete.read_graphRead the entire knowledge graph. Returns all entities and relations.
search_nodesSearch for nodes in the knowledge graph based on a query.
Parameters:
query: The search query string.open_nodesOpen specific nodes by their names.
Parameters:
names: List of entity names to retrieve.search_nodes to check if relevant entities exist.create_entities to add new nodes or add_observations to add details. Use create_relations to link them.open_nodes or read_graph to inspect the graph structure.