Browse documentation

MCP

MCP tool catalog

The complete Nexfiy MCP catalog for documents, blocks, templates, synced content, and databases.

The tools available to a client are grouped below. Names are stable identifiers the MCP client can call; the client may present them as natural-language capabilities.

Read documents

ToolPurpose
list_documentsList accessible workspace documents.
search_documentsSearch documents by query.
get_documentGet a document and its metadata.
list_page_blocksRead the ordered blocks for a page.
get_synced_blockResolve synchronized block content.
get_databaseRead a database definition, views, properties, and rows.

These tools are advertised to clients as read-only.

Create and organize pages

ToolPurpose
create_documentCreate a dynamic page-block document by default.
create_child_pageCreate a page below another page.
create_workspaceCreate a page hierarchy from an outline, up to 50 pages per call.
update_documentUpdate page title, icon, canonical cover, or publication state.
archive_documentArchive a document. This is a destructive operation.

create_document and every page in create_workspace use the normalized page_blocks model when contentModel is omitted. Agents can therefore follow creation immediately with block or image tools without knowing an internal compatibility flag.

Page blocks

ToolPurpose
create_page_blocksAdd up to 250 normalized blocks in one call.
update_page_blockChange an existing page block.
split_page_blockSplit a block at a requested position.
move_page_blockReorder or reparent a block.
upload_imageUpload an asset and optionally add an image block.

get_document returns the canonical page projection, including cover, database properties, and structured blocks. Links use label and href; images use src, alt, and caption. Raw editor JSON is not a public contract.

Supported block families include paragraphs, headings, lists, checklists, quotes, callouts, toggles, dividers, media, links, child pages, columns, database views, and synchronized references.

See Upload images with MCP for the complete binary upload and image-block workflow.

Templates

ToolPurpose
list_page_templatesList saved page templates.
save_page_as_templateSave an existing page as a reusable template.
instantiate_page_templateCreate a page from a saved template.

Synchronized blocks

ToolPurpose
create_synced_referenceAdd a reference to synchronized content.
unlink_synced_referenceDetach a reference from its source.

Databases

ToolPurpose
create_databaseCreate a database.
add_database_propertyAdd a typed property.
update_database_propertyChange a property definition.
create_database_viewAdd a database view.
configure_database_viewChange a view's layout, filters, sorts, or visible fields.
add_database_rowAdd a row to a database.
set_database_valueSet a typed property value on a row.
set_database_relationConnect rows through a relation property.

Working safely

MCP clients receive hints about read-only and destructive tools, but the client and user remain responsible for reviewing calls.

  • Start with list, search, and get tools to confirm IDs.
  • Read the current document or database before changing it.
  • Prefer small, reviewable write calls.
  • Treat archive_document as destructive.
  • Do not retry a failed write indefinitely; inspect the returned error first.
  • For large imports, split work across calls and verify each batch.

Limits and validation

Tool inputs are validated by the server. Current bulk limits include 50 pages for create_workspace and 250 blocks for create_page_blocks. A client should handle validation, authorization, not-found, and temporary service errors without assuming a write succeeded.