Skip to main content
This page lists tools by category with short descriptions. For parameters, value formats, and examples, see the MCP tool reference.

Tools by category

Explore your workspace

ToolDescription
schemaLists every space and database in the workspace. The AI calls this first to know what exists.
schema_detailedZooms into a specific database and shows all its fields, types, and possible values (e.g. workflow states).
get_meReturns the currently logged-in user’s name, email, and ID.
search_guideSearches the official Fibery documentation to answer questions about how Fibery works.

Search and query

ToolDescription
queryThe main read tool. Fetches entities from any database with filtering, sorting, and pagination. Supports sub-queries.
searchFull-text keyword search across the entire workspace — entity names, document content, and comments.
search_historyLooks up the activity log: what was created, updated, or deleted, by whom, and when.
query_viewsLists saved views (boards, timelines, grids, documents, etc.) and their configuration.
fetch_view_dataExecutes a saved view and returns the actual entities it would show, with the view’s own filters applied.

Create and update entities

ToolDescription
create_entitiesCreates one or more new entities in a database.
update_entitiesUpdates fields on existing entities. Only the fields you specify are changed.
delete_entitiesPermanently deletes entities. Cannot be undone.
set_stateMoves an entity to a different workflow state.
get_entity_linksReturns direct Fibery web links to entities by their public IDs.
add_collection_itemsAdds items to a collection field: assign a person, attach a tag, link a related entity.
remove_collection_itemsRemoves items from a collection field.

Documents and files

ToolDescription
get_documents_contentReads the rich-text document content of an entity field and returns it as readable text.
set_document_contentWrites or replaces the document content of an entity field.
append_document_contentAdds content to the end of an existing document without replacing what’s already there.
add_file_from_urlDownloads a file from a URL and attaches it to an entity’s file field.

Structure (spaces, databases, fields)

ToolDescription
create_space / delete_spaceCreates or removes a top-level space.
create_databases / rename_databases / delete_databasesManages databases within a space.
create_primitive_fieldsAdds simple fields: text, number, date, date range, checkbox, URL, email, phone, location, or rich-text document.
create_relation_fieldsCreates a link between two databases with a chosen cardinality.
create_single_select_fields / update_single_select_fieldsCreates or modifies a single-choice dropdown field.
create_multi_select_fields / update_multi_select_fieldsCreates or modifies a multi-choice tag-style field.
create_workflow_field / update_workflow_field / delete_workflow_fieldManages the workflow (state) field: defines stages and their types.
create_formula_field / update_formula_fieldCreates or updates a calculated field. Describe what it should compute in plain English.
rename_fields / delete_fieldsRenames or removes fields from a database.
create_comments_fields / delete_comments_fieldsEnables or disables comments on entities.
create_avatars_fields / delete_avatars_fieldsEnables or disables avatar images on entities.
create_icon_fields / delete_icon_fieldsEnables or disables emoji icons on entities.
create_files_fieldsAdds a file attachment field to a database.

Views

ToolDescription
create_viewCreates a new view: board, grid, timeline, calendar, gantt, gallery, map, feed, form, or standalone document.
update_viewEdits an existing view’s name, config, or content.
delete_viewsRemoves views (entity data is not affected).

Import

ToolDescription
get_connectors_listLists all available built-in integrations (Trello, Notion, Jira, CSV, etc.).
get_import_linkGenerates a URL to the Fibery import wizard for a specific connector and target database.

Use cases

Each use case shows a natural prompt, the tools called behind the scenes, and what comes back.

Find things

PromptToolsResult
”Show me all urgent bugs that aren’t done yet”schema_detailedqueryTable of urgent bugs with name, state, and assignee
”What did the team work on this week?”search_historyChronological feed of every entity created or updated in the last 7 days
”Find everything related to inline comments”searchRanked list of matching bugs, features, customer requests, and documents
”Give me a full picture of the history migration feature”queryget_documents_contentqueryFeature state, owner, planned dates, linked open bugs, and the full description
”Who has the most open bugs assigned to them?”schema_detailedqueryTeam members ranked by open bug count
”Which Icebox features have the highest customer demand?”schema_detailedqueryget_entity_linksFeatures sorted by Highlights Score descending, with direct links

Create and update things

PromptToolsResult
”Create a bug: form fields lose their value when switching tabs. Assign it to Nastya and mark urgent.”schema_detailedcreate_entitiesadd_collection_itemsupdate_entitiesBug created, assigned, and marked urgent with a confirmation link
”Move all Implemented features to Done”schema_detailedqueryset_stateAll matching features transitioned
”Write a structured description for the inline comment icons bug”searchqueryset_document_contentDescription written with Summary, Steps to Reproduce, Expected vs. Actual sections
”Add a Severity field to bugs — Critical, High, Medium, Low”schemacreate_single_select_fieldsSeverity field created with four color-coded options
”Link this customer request to the Figma plugin feature”searchqueryadd_collection_itemsRequest linked to feature; both entities now reference each other
”Set up a new Design space with task tracking linked to features”create_spacecreate_databasescreate_workflow_fieldcreate_primitive_fieldscreate_relation_fieldsSpace created with databases, workflow, fields, and relations

Multi-step workflows

PromptToolsResult
”Prepare my standup — what did I do yesterday and what’s stuck?”get_mesearch_historyqueryYesterday’s activity, current in-progress items, and items flagged as at risk
”Audit features with no owner and no planned dates”schema_detailedqueryget_entity_linksFeatures missing owner or dates, grouped by gap type, with direct links
”Write this week’s release notes from what shipped”search_historyget_documents_contentappend_document_contentNew dated section appended to Release Notes with every completed item
”Triage new customer requests — match each to the right feature”queryget_documents_contentadd_collection_itemsset_stateRequests matched to features and moved to In Review; unmatched ones flagged
”Sprint health report — what’s at risk?”query_viewsfetch_view_datasearch_historyget_entity_linksItems by state, items with no recent activity flagged, overdue items highlighted