Add Collibra Data Access MCP tools - #117
Draft
wouterc-collibra wants to merge 21 commits into
Draft
Conversation
# Conflicts: # go.mod # go.sum # pkg/tools/tools_register.go
# Conflicts: # pkg/tools/register.go
# Conflicts: # SKILLS.md # pkg/tools/register.go
# Conflicts: # README.md # pkg/tools/register.go
# Conflicts: # pkg/tools/register.go
# Conflicts: # README.md # go.mod # go.sum # pkg/tools/register.go
… skill doc get_data_access_control_details was fully implemented but never wired into RegisterAll after a branch merge dropped it. Also fixes README links that pointed to the wrong tool directories and removes a stale nextCursor pagination claim in the data-access SKILL.md that doesn't match the search_data_access_identities implementation. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
go.mod requires go 1.26.5 (data-access-go-sdk needs >=1.26.4), but CI was pinned to 1.25.0 with GOTOOLCHAIN=local, failing the build step. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Six data-access tools were missing Title and required mcp.ToolAnnotations fields (OpenWorldHint, IdempotentHint for read-only tools), failing TestRegisterAll_AllToolsHaveProperAnnotations. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
golangci-lint v2.4.0 was built with go1.25 and refuses to lint a module targeting go1.26.5. Bumping to v2.12.2 (built with a newer toolchain) unblocks the Lint step. Also fixes the staticcheck QF1008 findings it then surfaced: several genqlient-generated SDK types embed a field with the same name as the struct (e.g. AccessControl.AccessControl.Id), so the outer field name can be dropped from the selector. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 What does this PR do?
Adds MCP tools for Collibra Data Access:
search_data_access_identities- search Data Access users by name/emailsearch_data_access_objects- search data objects (tables, columns, schemas, views, etc.)get_data_access_data_source- resolve a data source ID to name/type/descriptionget_data_access_control_details- retrieve details of a single access controlcheck_user_data_object_access- check whether a user has access to one or more data objectscreate_data_access_request- create a new Data Access requestAlso includes the
collibra/data-accessskill guiding agents through WHO/WHAT resolution before checking access or creating requests.✅ Checklist