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
whoami | Verify the connection — returns your authenticated email and the key label in use. |
Collections
list_collections | List your collections with their document counts. |
create_collection | Create a collection. Idempotent — re-creating an existing one is harmless. |
delete_collection | Delete a collection and the documents inside it. |
Documents
put_doc | Create or update one document by key. Bumps the version on each write. |
put_docs | Write many documents in a single call. |
get_doc | Fetch one document by collection and key. |
list_docs | List documents in a collection, ordered by key, with prefix filter and pagination. |
move_doc | Move a document to a different collection. |
delete_doc | Delete one document. |
Search
search_docs | Full-text search across every collection. |
query_docs | Structured JSONB containment query over document data. |
Tasks & activity
toggle_task | Tick or untick a - [ ] checkbox inside a markdown document. |
recent_activity | Recent 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.