v1.2.0 — Latest Stable Release

Documentation

Everything you need to install, configure, and deploy COBOL Bridge MCP tools in your enterprise environment.

Quickstart

Get up and running with COBOL Bridge MCP tools in under 5 minutes. All tools are distributed as npm packages and connect to your AI environment through Anthropic's Model Context Protocol.

1

Install a Tool

Use npx to install any COBOL Bridge MCP tool directly from npm. No build step required.

2

Configure MCP

Add the tool to your Claude Desktop or MCP-compatible client configuration file.

3

Connect Sources

Point the tool at your COBOL source files, copybooks, JCL, or VSAM definitions.

4

Run Analysis

Ask Claude to analyse your code. Results include actionable reports with CASA governance.

Installation

Each COBOL Bridge tool is an independent MCP server published on npm under the @csga scope. Install the tools you need:

Install individual tools bash
# Core governance tools
npx @csga/cobol-copybook-parser
npx @csga/cics-bridge-assessment
npx @csga/jcl-batch-scanner
npx @csga/vsam-mapper
npx @csga/ebcdic-translator

# Sector-specific bundles
npx @csga/cobol-banking-bundle
npx @csga/cobol-government-bundle
npx @csga/cobol-healthcare-bundle
npx @csga/cobol-insurance-bundle
Prerequisites

Node.js 18+ is required. All tools run as stdio-based MCP servers and are compatible with Claude Desktop, Claude Code, and any MCP-compliant client.

Configuration

Add COBOL Bridge tools to your MCP client configuration. For Claude Desktop, edit the claude_desktop_config.json file:

claude_desktop_config.json json
{
  "mcpServers": {
    "cobol-copybook-parser": {
      "command": "npx",
      "args": ["@csga/cobol-copybook-parser"],
      "env": {
        "CASA_LEVEL": "CA-20",
        "COBOL_SOURCE_DIR": "/path/to/cobol/sources"
      }
    },
    "cics-bridge-assessment": {
      "command": "npx",
      "args": ["@csga/cics-bridge-assessment"],
      "env": {
        "CASA_LEVEL": "CA-20"
      }
    }
  }
}

Environment Variables

VariableDescriptionDefault
CASA_LEVELCASA certification level (CA-10, CA-20, CA-30, CA-40)CA-20
COBOL_SOURCE_DIRPath to COBOL source files./
OUTPUT_FORMATAnalysis output format (json, markdown, html)json
LOG_LEVELLogging verbosity (debug, info, warn, error)info
AUDIT_TRAILEnable full audit logging for compliancetrue

First Analysis

Once configured, open Claude Desktop and ask it to analyse your COBOL code. The MCP tools automatically connect and provide structured results.

Example prompt prompt
# Ask Claude to analyse a copybook
"Analyse the CUSTOMER-RECORD copybook in /src/copybooks/
and identify all field types, PIC clauses, and data
relationships. Generate a modernisation report."

# Claude will use the Copybook Parser MCP tool
# and return structured JSON with:
#   - Field definitions and data types
#   - REDEFINES relationships
#   - OCCURS/DEPENDING ON arrays
#   - Suggested modern schema mapping
#   - CASA governance annotations

Copybook Parser

Copybook Parser

@csga/cobol-copybook-parser

Analyses COBOL copybook structures, extracts field definitions, PIC clauses, group-level hierarchies, REDEFINES relationships, and OCCURS arrays. Generates modern schema mappings and documentation.

Available Tools

ToolDescription
parse_copybookParse a single copybook file and extract all field definitions
analyse_relationshipsMap relationships between multiple copybooks
generate_schemaGenerate modern database schema from copybook definitions
export_documentationCreate documentation from copybook analysis

CICS Bridge Assessment

CICS Bridge Assessment

@csga/cics-bridge-assessment

Evaluates CICS transaction programs for API modernisation readiness. Analyses BMS maps, COMMAREA structures, and transaction flow patterns to generate RESTful API migration plans.

JCL Batch Scanner

JCL Batch Scanner

@csga/jcl-batch-scanner

Parses JCL job streams to identify step dependencies, dataset usage, PROC references, and execution patterns. Optimises batch windows and generates dependency graphs for modernisation.

VSAM Mapper

VSAM Mapper

@csga/vsam-mapper

Maps VSAM file structures (KSDS, ESDS, RRDS, LDS) to modern database schemas. Generates migration plans for PostgreSQL, MongoDB, or DynamoDB with full data validation rules.

EBCDIC Translator

EBCDIC Translator

@csga/ebcdic-translator

Converts EBCDIC data formats with full character set mapping and validation. Supports packed decimal, zoned decimal, and binary field conversions with data integrity verification.

Claude Desktop Integration

COBOL Bridge tools are designed for seamless integration with Claude Desktop and Claude Code. Once configured, tools appear automatically in Claude's tool palette.

Tip

You can install all 5 core tools at once by adding each to your MCP configuration. Claude will automatically select the right tool based on your query context.

API Reference

All COBOL Bridge tools follow the MCP (Model Context Protocol) specification. Each tool exposes its capabilities through standard MCP tool definitions with typed parameters and structured responses.

Response Format

Standard response structure json
{
  "tool": "parse_copybook",
  "version": "1.2.0",
  "casa": {
    "level": "CA-20",
    "compliant": true,
    "audit_id": "aud_2026030512345"
  },
  "result": {
    // Tool-specific analysis data
  },
  "metadata": {
    "execution_ms": 1247,
    "files_analysed": 12,
    "timestamp": "2026-03-05T14:30:00Z"
  }
}

Deployment Options

OptionDescriptionBest For
SaaSMulti-tenant cloud, instant provisioning via npmQuick start, evaluation
VPCDedicated instance on AWS, Azure, or GCPEnterprise isolation
On-PremisesFull installation behind corporate firewallRegulated industries
HybridAir-gapped support with HSM integrationDefence, national security

CASA Certification

Every COBOL Bridge analysis includes CASA (Certified AI Safety Assurance) governance annotations. CASA provides four assurance levels, each mapping to specific regulatory and operational requirements.

LevelNameDescription
CA-10FoundationBasic AI safety controls, input validation, output filtering
CA-20ProfessionalEnhanced monitoring, audit trails, compliance mapping
CA-30EnterpriseFull regulatory alignment (SOX, HIPAA, FedRAMP), RBAC
CA-40CriticalAir-gapped, FIPS 140-3, defence-grade assurance
Important

CASA levels are cumulative — each level includes all controls from lower levels. Enterprise and Defence sector bundles include CA-30 and CA-40 certification respectively.

Ready to Integrate?

Get started with COBOL Bridge in minutes. Full API access included with every plan.

Start Free Trial → Talk to Sales