Tags: shaneholloman/mcp-knowledge-graph
Tags
docs: update README with new tool names and config examples (v1.3.2) - Update all tool names from aim_* to aim_memory_* pattern - Update Available Tools section with clearer descriptions - Add two config examples: default .aim and Dropbox for portability - Note that author uses Dropbox for cross-machine sync - Simplify Configuration Examples section - Update aim_ prefix references to aim_memory_ Co-Authored-By: Claude <[email protected]>
fix: correct tool name references and improve descriptions (v1.3.1) - Fix aim_memory_search and aim_memory_get descriptions referencing old tool names - Update descriptions to use memory-friendly language instead of graph jargon - "Store new memories" instead of "Create multiple new entities" - "Search memories by keyword" instead of "Fuzzy search for entities" - "Forget memories" instead of "Delete multiple entities" Co-Authored-By: Claude <[email protected]>
feat: rename tools for better AI discoverability (v1.3.0) All tools now use aim_memory_* naming pattern for clearer semantics: - aim_memory_store (was aim_create_entities) - aim_memory_add_facts (was aim_add_observations) - aim_memory_link (was aim_create_relations) - aim_memory_search (was aim_search_nodes) - aim_memory_get (was aim_open_nodes) - aim_memory_read_all (was aim_read_graph) - aim_memory_forget (was aim_delete_entities) - aim_memory_remove_facts (was aim_delete_observations) - aim_memory_unlink (was aim_delete_relations) - aim_memory_list_stores (was aim_list_databases) No data format changes - existing .aim databases remain compatible. Co-Authored-By: Claude <[email protected]>
feat: add pretty output format for query tools (v1.2.3) - Add format parameter to aim_read_graph, aim_search_nodes, aim_open_nodes - "json" (default): structured JSON for programmatic use - "pretty": human-readable text format with clear sections - New formatGraphPretty() helper function Co-Authored-By: Claude <[email protected]>
fix: improve tool descriptions and project detection (v1.2.1) - Add AIM (AI Memory) acronym expansion to documentation - Clarify search_nodes vs open_nodes distinction - Document what search_nodes matches (name, type, observations) - Explain active voice convention for relations - Add RETURNS sections to tool descriptions - Fix context/database terminology consistency - Add .aim as project marker for detection (fixes #17) - Read version from package.json instead of hardcoding Co-Authored-By: Claude <[email protected]>