Skip to main content
Glama

Memento

by iAchilles

create_relations

Establish directed connections between entities, skipping duplicates. Define source, target, and relation type. Enhances entity mapping and organization within a persistent, offline MCP server environment.

Instructions

Create directed relations between entities. Skips existing relations.

Input Schema

NameRequiredDescriptionDefault
relationsYesArray of relations to create.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "relations": { "description": "Array of relations to create.", "items": { "additionalProperties": false, "properties": { "from": { "description": "Source entity name.", "type": "string" }, "relationType": { "description": "Label or type of the relation.", "type": "string" }, "to": { "description": "Target entity name.", "type": "string" } }, "required": [ "from", "to", "relationType" ], "type": "object" }, "type": "array" } }, "required": [ "relations" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/iAchilles/memento'

If you have feedback or need assistance with the MCP directory API, please join our Discord server