get_frequently_used
Identify frequently accessed entities by setting a minimum access count threshold, optionally filtering by entity type to optimize memory usage and retrieval efficiency in Memory MCP Server.
Instructions
Find entities that are accessed frequently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityType | No | Optional: filter by entity type | |
minAccessCount | Yes | Minimum access count threshold |
Input Schema (JSON Schema)
{
"properties": {
"entityType": {
"description": "Optional: filter by entity type",
"type": "string"
},
"minAccessCount": {
"description": "Minimum access count threshold",
"type": "number"
}
},
"required": [
"minAccessCount"
],
"type": "object"
}