ToremLabs/heuresis-mcp (ToremLabs/heuresis-mcp) is an MCP server listed on the M8ven Trust Index. It scores 58 out of 100, grade D. It declares 44 tools. No publisher has claimed this listing.
Exposes a Heuresis workspace to MCP clients, enabling concept mapping, ideation, and workspace management through natural language.
Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.
How we verified
Verified is a snapshot. Live keeps it current, and builds your track record.
⚡ Connect GitHub → continuous verification on every pushwhy connect →Who stands behind it
ToremLabs
Source: Glama
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →
Install from
The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.
These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.
get_workspace_summary(Legacy snapshot mode) Counts of nodes/edges/projects/ideas + a one-line overview of each project and idea. Always start here when you don't know what's in the workspace.
list_projects(Legacy snapshot mode) Every project in the snapshot with brief, direction, lifecycle, and member count.
search_concepts(Legacy snapshot mode) Substring search across concept labels, descriptions, tags, and partition attributes.
get_concept(Legacy snapshot mode) One concept by id, optionally with ancestry, children, and idea memberships.
get_subtree(Legacy snapshot mode) A node and its descendants up to a given depth.
get_project_graph(Legacy snapshot mode) Every node + edge inside one project. Returns a graph the agent can reason over end-to-end.
list_recent_decisions(Legacy snapshot mode) Nodes the user has explicitly resolved (validated, starred, or archived) recently.
list_conceptsList concepts in the workspace or one project. Returns id / label / status / parentId / tags up to `limit` entries (default 500). Use BEFORE making changes to learn what already exists.
list_edgesList every edge in the workspace (or restricted to a project). Filter by kind: partition / k-ref / semantic-adjacency / derived-from / imported-from.
find_conceptsFind concepts by label/substring match. Returns up to k hits, each with id, label, status.
add_conceptCreate a new concept (Node). If parentId is given, the concept becomes a CHILD of that concept and a partition edge is auto-created. If parentId is omitted, the concept attaches to the project root.
update_conceptUpdate an existing concept's label, description, tags, partitionAttribute, rationale, or status. Only the fields provided are changed.
link_conceptsCreate an edge between two concepts. kind is one of: 'k-ref' (knowledge reference), 'derived-from' (provenance link), 'semantic-adjacency' (sibling kinship). Partition (parent/child) edges are managed via add_concept / set_parent.
add_krefConvenience: create a k-ref (knowledge reference) edge from fromId → toId. Equivalent to link_concepts with kind=k-ref.
validate_conceptMark a concept as validated (status=validated). Optionally also overwrite `rationale`. Idempotent on already-validated nodes.
set_standingSet a concept's STANDING — how known / proven the idea is in the wider world. `standing` ∈ 'novel' | 'emerging' | 'established' | 'unknown'. `rationale` is a one-sentence justification (saved as `standing_rationale`). Use this when classifying / judging novelty.
archive_conceptArchive a concept (status=archived). Reversible via unarchive_concept.
unarchive_conceptRevive a previously-archived concept (status=open). Idempotent on already-open nodes.
star_conceptToggle the starred flag on a concept (user-favorite marker).
remove_conceptHard-delete a concept and its descendants (walks the subtree via parent_id AND partition edges). Edges and project/idea memberships cascade via FK. Refuses to delete a project root node. For many at once, use remove_concepts.
remove_conceptsBulk hard-delete: delete many concepts in one call (each cascades its own subtree). Returns per-id results. Ids already swept up in another id's cascade come back ok:false (not-found) — expected, not fatal. Pair with find_orphans for cleanup.
find_orphansSurface concepts no normal traversal reaches, scoped to your workspace: 'projectless' (in no project — typically left behind by delete_project) and 'danglingParent' (parent_id points at a deleted node). Read-only. Clean up with remove_concepts (delete) or set_parent (re-home).
bulk_add_conceptsCreate many concepts in a single atomic transaction. `items` is an array; each item carries label / description? / parentId? / projectId? / tags?. project_id is resolved per-item (explicit > inherited from parent > workspace solo project). Returns the created ids in input order.
set_parentRe-parent an existing concept: nodeId's parent becomes newParentId (or detached when null). Updates BOTH node.parent_id AND the partition edge so the canvas tree stays in sync.
create_ideaCreate a new Idea (a named grouping of concepts) with an optional color and optional starting node membership.
rename_ideaRename an Idea.
recolor_ideaChange an Idea's color (any CSS color string).
set_idea_membersReplace an Idea's full membership with `nodeIds`. Reconciles the junction table: inserts missing pairs, deletes pairs no longer in the set. Returns added / removed counts.
add_to_ideaAdd a single concept to an existing Idea (idempotent).
delete_ideaDelete an Idea. Membership rows cascade via FK; the underlying concepts are untouched.
create_projectCreate a new Project (problem-with-direction) with a name and brief. Optional `direction`.
update_projectUpdate a project's name / brief / direction / lifecycle. Only fields provided are changed.
delete_projectDelete a project. By default its concepts are LEFT behind as orphans (find them later with find_orphans). Pass deleteNodes:true to also hard-delete every concept in the project (each cascades its subtree) so no orphans are created.
run_operatorRun an ASIT / TRIZ / Contradiction / Free / Combine / Explore operator against one concept (the anchor). Returns CANDIDATE concepts WITHOUT committing them — call `bulk_add_concepts` (or `run_operator_and_commit`) to persist. Use this when you want the agent to vet the candidates before writing. The…
run_operator_and_commitSame as `run_operator`, but immediately writes every top-level candidate as a child of the anchor with a partition edge and a provenance row stamped origin='mcp'. Use when the agent is confident the candidates should land directly on the canvas (e.g. inside an autonomous expand loop). Children-of-ch…
expand_conceptRecursive Branch — expand a concept by `breadth` children at each of `depth` levels (depth*breadth ≤ 60). Commits each level immediately so the webapp shows partial results as the run progresses. Optionally takes an `angle` hint that biases the underlying EXPLORE operator. Best when the anchor has f…
get_runFetch an async operator run by its runId. Returns { status: "running" | "done" | "error" }; when "done", the `result` field holds the operator output (candidates / committedIds). Waits up to ~8s for completion before returning, so a simple poll loop converges fast. run_operator / run_operator_and_co…
Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.
Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default
undici WebSocket client vulnerable to denial of service via fragment count bypass
ws: Memory exhaustion DoS from tiny fragments and data chunks
undici vulnerable to HTTP response queue poisoning via keep-alive socket reuse
undici vulnerable to downstream response desynchronization via retry interceptor
HEURESIS_ANON_KEYsb_publishable_... # project anon/publishable key (public, not a secret)HEURESIS_DEVICE_BASE_URLHEURESIS_EMAILyou@example.com # your Heuresis account emailHEURESIS_PASSWORDyour-account-password # secret — store it in a secrets managerHEURESIS_SNAPSHOTand the env var set, the server reads a JSONHEURESIS_SUPABASE_URLoptional: =... # defaults to the production projectHTTPS_PROXYHTTP_PROXYhttp_proxyhttps_proxyTool annotations
No tools have read-only/destructive annotations
Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.
All four hints declared on every tool
44/44 tools missing one or more hints — get_workspace_summary (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); list_projects (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); search_concepts (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +41 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.
For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.
Tests exist
No test files found
Add tests that exercise each declared tool.
Production dependencies are patched
0 critical, 3 high severity in production deps — @modelcontextprotocol/sdk@1.0.0 (high), undici@6.25.0 (high)
Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.
Domain consistency
npm scope @heuresis doesn't match GitHub owner toremlabs
Use the same org name across GitHub, npm, and your homepage so users can verify the publisher.
Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.
[](https://m8ven.ai/mcp/toremlabs/heuresis-mcp)?variant=verified from the URL.Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.
https://m8ven.ai/api/mcp/tool-check