Skip to content
Back to search
100
MCP live v1.0.0 streamable-http

CoreModels

io.github.aramai-schematica/coremodels

CoreModels schema editor: nodes, mixins, relations, JSON Schema import/export. Sign-in required.

Uptime
5.3%
19 probes
Response
1571ms
last probe
Tools
14
callable

Tools · 14

bulk_create

Create multiple nodes, relations, and mixin values in one atomic operation. When to use: - Creating more than one node. - Any creation that includes relations and/or mixins. - For a single node …

create_mixin_type

Create a new mixin type. Check existing mixins first with get_mixins_and_relation_groups to avoid duplicates. Mixins are reusable property sets applicable to any node.

export_jsonschema

Export project data as a JSON Schema string.

get_mixins_and_relation_groups

Get the project schema: all mixin definitions and all relation-group definitions. Use this once at the start of a session to discover the IDs needed by other tools (mixinId, columnId, relationGroup…

get_project_summary

Labels and IDs of types, elements, and taxonomies in the project. A category is omitted when it has more than 1000 nodes - use search_nodes with the matching nodeType filter to enumerate it.

import_jsonschema

Imports a JSON Schema into a space

create_mixin_value

Create a mixin value for a node. mixinId and column ids come from get_mixins_and_relation_groups. A node can have multiple mixins; each mixin can have multiple columns.

remove_mixin_value

Remove one or more mixin column values from a node. mixinId and column ids come from get_mixins_and_relation_groups. This does not delete the mixin definition itself.

create_node

Create a new node. Empty/omitted spaceIds = default space; MUST be empty when nodeType is 'Space'.

update_node

Update an existing node's label and/or its space assignments. Omitted fields are unchanged. spaceIds replaces (not merges) existing assignments; empty array = default space. At least one of label or s…

remove_node

Suspend a node.

create_relation

Create a directed relation fromNodeId → toNodeId. relationGroupId is the relation template; list templates with get_mixins_and_relation_groups.

remove_relation

Remove a relation between two nodes.

search_nodes

Search nodes in a CoreModels project. Returns compact positional arrays; the response "format" field describes the layout. Filters (provide at least one; they combine with AND): - nodeIds: exact i…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "coremodels": {
      "url": "https://go.coremodels.io/mcp-admin",
      "transport": "streamable-http"
    }
  }
}