MCP Cheat Sheet
MCP Tools — Hubs
Tools for managing hubs via MCP.
get-hub
- Input:
id(slug or MongoId) - Output: hub object (JSON text)
list-hubs
- Input:
hubType?,status?,source?,private?,ownerId?,memberId?,search?,sort?,order?,fields?(string),limit?,page?,cursor? - Output:
{ data: Hub[], meta: { pagination } }(JSON text)
related-hubs
- Input:
id,withMarkers?,limit?,page?,cursor? - Output:
{ data: RelatedHub[], meta: { pagination } }(JSON text)
create-hub
- Input: CreateHubBody (requires
name+ uniqueslug;slugmaps to DBhubname; owner inferred from auth;sourceforced to MCP) - Output: created hub (JSON text)
update-hub
- Input:
id,data(UpdateHubBody; partial) - Output: updated hub (JSON text)
delete-hub
- Input:
id - Output:
{ message }(JSON text)