1. Conduid
  2. AI
  3. Chip
MCP server · AI

Chip

Collibra Model Context Protocol (MCP) Server

Unclaimed Apache-2.0 last commit 6 months ago ai
62Good

Scored yesterday · breakdown

About Chip

Chip is an MCP server published by collibra in the AI category: collibra Model Context Protocol (MCP) Server. It has been installed 0 times through Conduid.

The repository has 21 stars and 2 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx chip

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Chip

Powered by Claude · Grounded in docs

I know everything about Chip. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.0.47v0.0.47 · 7 Aug 2026What's Changed fix: restore missing go.sum entry for rogpeppe/go-internal by @bobby-smedley in https://github.com/collibra/chip/pull/118 Full Changelog**: https://github.com/collibra/chip/compare/v0.0.46...v0.0.47
v0.0.44v0.0.44 · 24 Jul 2026What's Changed feat(chore): bump version by @MieszkoWasniowski in https://github.com/collibra/chip/pull/106 Full Changelog**: https://github.com/collibra/chip/compare/v0.0.43...v0.0.44
v0.0.42v0.0.42 · 22 Jul 2026What's Changed feat(chore): bump version by @MieszkoWasniowski in https://github.com/collibra/chip/pull/103 Full Changelog**: https://github.com/collibra/chip/compare/v0.0.41...v0.0.42
v0.0.40v0.0.40 · 8 Jul 2026What's Changed fix(edit_asset): converge attribute set into one self-healing op by @bobby-smedley in https://github.com/collibra/chip/pull/87 DEV-185072: introduce context specification mcp tools by @martin-anderson-collibra in…
v0.0.39v0.0.39 · 26 Jun 2026What's Changed Adding language for tools that leverage Collibra Units by @EricWarnerCollibra in https://github.com/collibra/chip/pull/83 feat(edit_asset): convert Markdown to HTML for RICH_TEXT attributes by @victormorisset in…

README

Collibra MCP Server

A Model Context Protocol (MCP) server that provides AI agents with access to Collibra Data Governance Center capabilities including data asset discovery, business glossary queries, and detailed asset information retrieval.

Overview

This Go-based MCP server acts as a bridge between AI applications and Collibra, enabling intelligent data discovery and governance operations through the following tools:

Read Tools

Write Tools

Quick Start

Prerequisites

  • Access to a Collibra Data Governance Center instance
  • Valid Collibra credentials

Installation

Option A: Download Prebuilt Binary (Recommended)

  1. Download the latest release:

    • Go to the GitHub Releases page
    • Download the appropriate binary for your platform:
      • chip-linux-amd64 - Linux (Intel/AMD 64-bit)
      • chip-linux-arm64 - Linux (ARM 64-bit)
      • chip-mac-amd64 - macOS (Intel)
      • chip-mac-arm64 - macOS (Apple Silicon)
      • chip-windows-amd64.exe - Windows (Intel/AMD 64-bit)
      • chip-windows-arm64.exe - Windows (ARM 64-bit)
  2. Make the binary executable (Linux/macOS):

    chmod +x chip-*
    
  3. Optional: Move to your PATH:

    # Linux/macOS
    sudo mv chip-* /usr/local/bin/mcp-server
    
    # Or add to your user bin directory
    mv chip-* ~/.local/bin/mcp-server
    

Option B: Build from Source

git clone <repository-url>
cd chip
go mod download
go build -o .build/chip ./cmd/chip

# Run the build binary
./.build/chip

Running and Configuration

Authentication Options

The server supports two authentication approaches, either configured through environment variables or a configuration file

Option 1: Server-wide Authentication

When running over the stdio transport, configure credentials at the server level - all requests use the same credentials:

mkdir -p ~/.config/collibra/

Powershell:

New-Item -ItemType File -Path $HOME\.config\collibra\mcp.yaml

bash/zsh:

touch ~/.config/collibra/mcp.yaml
# ~/.config/collibra/mcp.yaml
api:
  url: "https://your-collibra-instance.com"
  username: "your-username"
  password: "your-password"

The same options can be configured through the respective environment variables COLLIBRA_MCP_API_URL, COLLIBRA_MCP_API_USR and COLLIBRA_MCP_API_PWD.

Option 2: Client-provided Authentication

When running over the http transport, it is recommended that MCP clients provide their own Basic Auth headers for each request:

export COLLIBRA_MCP_API_URL="https://your-collibra-instance.com"
./mcp-server

For detailed configuration instructions, see CONFIG.md.

Security Considerations

  • 🔐 Credentials: Store sensitive information in environment variables rather than config files
  • 🌐 Network: HTTP mode binds to localhost only for security
  • 🔒 TLS: Only use skip-tls-verify: true for development with self-signed certificates
  • 📁 File Permissions: Ensure config files have appropriate permissions when containing credentials

Integration with MCP Clients

This server is compatible with any MCP client. Refer to your MCP client's documentation for server configuration.

Here's how to integrate with some popular clients assuming you have a configuration file setup:

  • Claude desktop
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "collibra": {
      "type": "stdio",
      "command": "/path/to/chip-..."
    }
  }
}
  • VS Code
// .vscode/mcp.json
{
    "servers": {
        "collibra": {
            "type": "stdio",
            "command": "./chip"
        }
    }
}
  • Gemini-cli
// ~/.gemini/settings.json
{
  "mcpServers": {
    "collibra": {
      "command": "/path/to/chip-..."
    }
  }
}

Structured Tool Output

Every tool declares an outputSchema and returns results in two forms on the same response:

  • content — a human-readable TextContent block containing the output serialized as JSON. Kept for backward compatibility with clients that only render text.
  • structuredContent — the typed, parseable object. New clients should prefer this for programmatic consumption.

Schemas are auto-generated from each tool's Go Output struct via github.com/google/jsonschema-go, which emits JSON Schema draft 2020-12. The MCP SDK validates every response against the declared schema before sending, so clients can rely on the shape. Field-level descriptions live as jsonschema:"..." tags on the Output struct in each tool's pkg/tools/<name>/tool.go.

To discover the live schema for any tool, inspect the outputSchema field returned by a tools/list MCP request against a running server.

Enabling or disabling specific tools

You can enable or disable specific tools by passing command line parameters, setting environment variables, or customizing the mcp.yaml configuration file. You can specify tools to enable or disable by using the tool names listed above (e.g. get_asset_details). For more information, see the CONFIG.md documentation.

By default, all tools are enabled. Specifying tools to be enabled will enable only those tools. Disabling tools will disable only those tools and leave all others enabled. At present, enabling and disabling at the same time is not supported.

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Chip

How do I install Chip?

Run npx chip, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Chip safe to use with an AI agent?

Its trust score is 62 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Chip still maintained?

Yes — the latest release is v0.0.47 (7 Aug 2026), and the last commit was 6 months ago. The repository has 21 stars and 0 open issues.