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.