Enjab Developers
Enjab Mind

Tools

The Enjab Mind MCP tools, read on any key, write on a read-write key.

Once connected, an agent has these tools. Read tools work on any key; write tools need a read-write key (see Authentication). A list argument accepts either the list's slug (e.g. tools) or its id.

Read

ToolArgumentsReturns
searchquery (string, optional), limit (number, default 30)Matching entries across every list, ranked. Empty query returns the most recent.
list_listsEvery list with its entry count.
get_listlist (slug or id)All entries in that list.

Write (read-write key)

ToolArguments
create_listname (string), description?, icon? (a Lucide icon name)
update_listlist (slug or id), name?, description?, icon?
delete_listlist (slug or id) — deletes the list and its entries
create_entrylist (slug or id), title?, url?, note?, tags? (string[]), metadata? (object)
update_entryid, title?, url?, note?, tags?, metadata?, pinned?
delete_entryid

Auto-enrich: on create_entry, if you pass a url, Enjab Mind fetches the page and fills in the title, description, and favicon for any field you left out. So create_entry({ list: "tools", url: "https://…" }) is enough.

Entries share a uniform core (title, url, note, tags) plus a flexible metadata object for per-list extras (e.g. stars/language for a GitHub entry, platform/handle for an influencer). metadata is searchable.

On this page