get_entity_embedding
Retrieve vector embeddings for specific entities from the memento-mcp knowledge graph memory to enable semantic search and relation management.
Instructions
Get the vector embedding for a specific entity from your Memento MCP knowledge graph memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_name | Yes | The name of the entity to get the embedding for |
Input Schema (JSON Schema)
{
"properties": {
"entity_name": {
"description": "The name of the entity to get the embedding for",
"type": "string"
}
},
"required": [
"entity_name"
],
"type": "object"
}