nolyo docs

Reference

MCP tools

Once connected, your AI can call these tools in your workspace. You rarely name them directly — you ask in plain language and the client picks the right one. They're namespaced under nolyo.

Connection

whoamiVerify the connection — returns your authenticated email and the key label in use.

Collections

list_collectionsList your collections with their document counts.
create_collectionCreate a collection. Idempotent — re-creating an existing one is harmless.
delete_collectionDelete a collection and the documents inside it.

Documents

put_docCreate or update one document by key. Bumps the version on each write.
put_docsWrite many documents in a single call.
get_docFetch one document by collection and key.
list_docsList documents in a collection, ordered by key, with prefix filter and pagination.
move_docMove a document to a different collection.
delete_docDelete one document.

Search

search_docsFull-text search across every collection.
query_docsStructured JSONB containment query over document data.

Tasks & activity

toggle_taskTick or untick a - [ ] checkbox inside a markdown document.
recent_activityRecent writes across the whole workspace — owner plus every team member.
Trash is off-limits

Deleted items go to Trash, which is reachable only from the web UI — never over MCP. An AI can't read or purge anything you've thrown away.

Next