Skip to main content

5.19 Release notes

Upgrade guides

5.19 Release notes

Release date

Cinchy v5.19 was released on April 2, 2026.

New capabilities

Cinchy MCP Server

Cinchy v5.19 introduces the Cinchy MCP Server, a Model Context Protocol (MCP) server that lets AI assistants like Claude, Gemini, and ChatGPT interact directly with your Cinchy data platform.

MCP is an open standard created by Anthropic that provides a universal interface for AI models to interact with external tools and data sources. Think of it as USB-C for AI: one protocol that connects any AI client to any data platform.

With the Cinchy MCP Server, you can use natural language in your AI assistant to query tables, insert and update data, troubleshoot data syncs, and more. All operations are authenticated under your own identity and respect Cinchy's row and column-level entitlements.


How it works

You ask a question in plain English. The AI assistant picks the right tool, the MCP server calls the Cinchy API using your identity, and Cinchy enforces your permissions. You never leave your AI client.


What you can do

The Cinchy MCP Server exposes 21 tools that AI assistants can call on your behalf. Click a category below to see what's possible.

Your prompt

"What tables are in the HR domain?"

The AI uses list_tables to browse domains and tables, then get_table_schema to show column structures. No queries needed.

Your prompt

"Find everything related to customer invoices"

The discover_data tool performs a smart lookup across table names, column names, and saved queries using natural language keywords.

Tools in this category
ToolDescription
list_tablesList tables in a domain or across all domains
get_table_schemaGet columns and their types for a table
discover_dataSmart lookup by natural language keywords
search_dataSearch row data across text and link columns

All 21 tools at a glance

Click a category to view the tools available.

#ToolAccessDescription
1test_connectionReadTest connectivity to Cinchy server
2list_tablesReadList tables in a domain or across all domains
3get_table_schemaReadGet columns and their types for a table
4execute_cqlRead/WriteExecute a CQL query (SELECT, INSERT, UPDATE, DELETE)

Security and authentication

Every MCP tool call runs as the authenticated user. Cinchy's existing row-level and column-level entitlements are fully enforced. The AI assistant can only see and modify data that you have access to. There are no elevated privileges or service account workarounds.

Authentication uses OAuth 2.1 with PKCE. When you connect an AI client (e.g., Claude.ai), you are redirected to the Cinchy login page to authenticate. The MCP server passes your identity through to the Cinchy REST API on every tool call.


Connecting with Claude Desktop

To connect the Cinchy MCP Server with Claude Desktop:

  1. Open Claude Desktop and click the + button in the chat input area.
  2. Select Connectors.
  3. Find Cinchy in the list and click Connect.
  4. You will be redirected to the Cinchy login page. Enter your credentials to authenticate.
  5. Once authenticated, you can start using natural language to interact with your Cinchy data directly from Claude Desktop.
warning

Only the Owner of the Claude organization subscription can add MCP connectors. Team members cannot add or manage connectors on their own. The Owner must configure the Cinchy MCP connection for the organization.

To add the Cinchy MCP connector as an Owner:

  1. Navigate to Settings > Connectors in Claude Desktop.
  2. Click Add Connector.
  3. Fill in the following fields:
    • Name: Cinchy (or any name you prefer)
    • URL: Your Cinchy MCP Server URL (e.g., https://your-environment.cinchy.net/mcp)
  4. Leave Client ID and Client Secret blank. These fields are optional and should not be filled in.
  5. Click Save.

Bug fixes

  • Fixed an issue where the Cinchy Connections WebApi IIS package did not include the correct IBM DB2 native driver libraries for Windows. The build pipeline now produces platform-specific builds for both Linux and Windows (IIS), ensuring that DB2 data sources work correctly on IIS deployments.
Post-upgrade step for IIS customers using DB2

After upgrading Cinchy Connections to v5.19.0 on IIS, you must add the DB2 CLI driver to the system PATH and restart IIS. Run the following in an elevated PowerShell prompt on the machine hosting Cinchy Connections:

$clidriver = "<path\to\clidriver>"
[Environment]::SetEnvironmentVariable("PATH", "$clidriver\bin;$clidriver\bin\icc64;$env:PATH", "Machine")
iisreset

For example, if Cinchy Connections is installed at C:\inetpub\wwwroot\Connections:

$clidriver = "C:\inetpub\wwwroot\Connections\clidriver"
[Environment]::SetEnvironmentVariable("PATH", "$clidriver\bin;$clidriver\bin\icc64;$env:PATH", "Machine")
iisreset
warning

If the Cinchy Connections Worker is hosted on a separate machine, repeat this process on that machine as well.