The MCP server exposes 9 tools that map directly to Kremis HTTP API endpoints.Documentation Index
Fetch the complete documentation index at: https://kremis.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
| Tool | HTTP Equivalent | Description |
|---|---|---|
kremis_ingest | POST /signal | Ingest a signal (entity, attribute, value) |
kremis_lookup | POST /query (lookup) | Look up an entity by ID |
kremis_traverse | POST /query (traverse_filtered) | Traverse graph from a node; optional top_k limit |
kremis_path | POST /query (strongest_path) | Find the strongest path between two nodes |
kremis_intersect | POST /query (intersect) | Find nodes connected to all input nodes |
kremis_status | GET /status | Get graph statistics |
kremis_properties | POST /query (properties) | Get properties of a node |
kremis_retract | POST /signal/retract | Decrement edge weight between two entities |
kremis_hash | GET /hash | Get the canonical BLAKE3 hash of the graph |
Tool Details
kremis_ingest
Add an entity or record a relationship.kremis_lookup
Look up a node by entity ID.kremis_traverse
Traverse the graph from a starting node. Optionally limit results to the K highest-weight edges.top_k is optional. When provided and greater than 0, only the K highest-weight edges are returned (sorted by weight descending). Omit for no limit.