Claude Desktop example

Examples for configuring and using the OpenText Analytics Database MCP server with Claude Desktop.

This page provides examples for configuring the OpenText™ Analytics Database MCP server with Claude Desktop.

Configuring MCP server with Claude Desktop

Claude Desktop can connect to your MCP server to enable database query capabilities within Claude conversations.

Prerequisites

  • Claude Desktop installed (latest version)
  • MCP server running and accessible
  • Valid JWT token for authentication
  • NPX tool mcp-remote (npm install -g mcp-remote)

Configuration

The Claude Desktop configuration file location varies by OS:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Edit the configuration file and add your MCP server. Example configuration:

{
  "mcpServers": {
    "vertica-mcp-server": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://qalcloud-041:8667/mcp",
        "--insecure",
        "--tls-skip-verify",
        "--header",
        "X-API-Key:${API_KEY_VALUE}"
        ],
      "env": {
        "NODE_TLS_REJECT_UNAUTHORIZED": "0",
        "API_KEY_VALUE": "replace with your API key"
      }
    }
  }
}

Verifying the configuration

  • Restart Claude Desktop after saving the configuration (make sure kill all background processes)
  • Check Claude's MCP status - look for your server in the MCP panel
  • Test with a simple query:
    SELECT version()