docyrus-architect
Installation
SKILL.md
Docyrus Architect
Guide for using docyrus-architect MCP tools to manage and query data sources in Docyrus.
Tool Overview
Discovery Tools
get_apps— List tenant apps. Use beforecreate_data_sourceto find the targettenantAppId.get_data_source_list— Search data sources by name/description or app ID.get_data_source_list_with_fields— Same as above but includes field names and types.get_data_source_metadata— Get full metadata (fields with IDs, types, slugs, enums, relations) for a data source. Always call this before querying to discover field slugs and relation targets.get_enums_by_field_id— Get enum options for select/status/tagSelect fields.read_current_user/read_tenant_user— Get user info.
Data Source CRUD
create_data_source— Create a new data source (table). Default fields auto-created:id,autonumber_id,name,record_owner,created_on,created_by,last_modified_by,last_modified_on.create_data_sources_batch— Create multiple data sources with fields and enum options in a single atomic transaction. Supports cross-referencing data sources within the batch by slug forfield-relationtypes. Max 20 data sources per batch.update_data_source— Update data source properties.delete_data_source— Delete a data source and all its data.