Help us improve
Share bugs, ideas, or general feedback.
From atlas
Reference for querying the Atlas knowledge graph through its MCP tools. Use when you need to look up nodes, edges, kinds, clusters, stats, or wiki pages in Atlas. (atlas graph, query atlas, atlas mcp, search the graph, graph neighbors, atlas record, atlas kinds)
npx claudepluginhub a5c-ai/atlas-claude --plugin atlasHow this skill is triggered — by the user, by Claude, or both
Slash command
/atlas:atlas-graph-queryThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
A thin reference for the Atlas knowledge-graph MCP tool surface so any agent
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
A thin reference for the Atlas knowledge-graph MCP tool surface so any agent
(including sub-agents) can query the graph without re-deriving conventions. The
server URL is wired natively by the atlas plugin and is overridable via
ATLAS_MCP_URL. Never invent node ids — only use ids returned by these tools.
mcp__atlas__atlas_public_searchFull-text/semantic search over the graph. Key params: q (query), optional
kind filter, limit. Prefer it to find seed/anchor nodes from need terms.
mcp__atlas__atlas_public_recordFetch one node's full record by id (fields + edges). Use expandNeighbors to
pull immediate relations in one call. Prefer it to read detail once you have ids.
mcp__atlas__atlas_public_neighborsTraverse the graph from a node. Key params: id, depth, edges (edge-kind
filter), kinds (node-kind filter). Prefer it to expand a subsystem from anchors.
mcp__atlas__atlas_public_kindsList all node kinds in the graph. Use to scope a domain to relevant kinds.
mcp__atlas__atlas_public_kindDescribe a single node kind (schema/fields). Use before relying on a kind's shape.
mcp__atlas__atlas_public_edge_kindsList all edge kinds. Use to understand how nodes relate.
mcp__atlas__atlas_public_edge_kindDescribe a single edge kind. Use to interpret a specific relation type.
mcp__atlas__atlas_public_clustersList graph clusters (thematic groupings). Use to scope a domain to cluster(s).
mcp__atlas__atlas_public_statsGraph-level counts/metrics. Use for sizing and sanity checks.
mcp__atlas__atlas_public_wiki_pageFetch a narrative wiki page for context. Use to capture human-readable nuance.
atlas_public_search(q=<need terms>) → take top ids.atlas_public_neighbors(id, depth=2, kinds=[...]).atlas_public_record(id, expandNeighbors=true).atlas_public_clusters → pick cluster → search/
neighbors scoped to it.