Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ This Go-based MCP server acts as a bridge between AI applications and Collibra,
- [`add_business_term`](pkg/tools/add_business_term/) - Create a business term asset with definition and optional attributes
- [`add_data_classification_match`](pkg/tools/add_data_classification_match/) - Associate a data class with an asset
- [`create_asset`](pkg/tools/create_asset/) - Create a new data asset with optional attributes
- [`edit_asset`](pkg/tools/edit_asset/) - Edit an existing asset via a list of typed operations:
- `update_attribute`, `add_attribute`, `remove_attribute` - change, append, or clear an attribute value (e.g. `Definition`, `Note`)
- `update_property` - rename the asset (`name`), change its `displayName`, or change its `statusId` (status name or UUID accepted)
- `add_relation`, `remove_relation` - link or unlink the asset to another asset by relation role (e.g. `is synonym of`)
- `add_tag` - append a free-text tag without replacing existing tags
- `set_responsibility` - assign a user or group to a resource role (e.g. `Steward`, `Owner`) by username, email, or UUID
- [`push_data_contract_manifest`](pkg/tools/push_data_contract_manifest/) - Upload manifest for a data contract
- [`remove_data_classification_match`](pkg/tools/remove_data_classification_match/) - Remove a classification match

Expand Down
2 changes: 1 addition & 1 deletion pkg/chip/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package chip

var Version = "0.0.31-SNAPSHOT"
var Version = "0.0.32-SNAPSHOT"
Loading
Loading