Everything you need to install, configure, and deploy COBOL Bridge MCP tools in your enterprise environment.
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.
Use npx to install any COBOL Bridge MCP tool directly from npm. No build step required.
Add the tool to your Claude Desktop or MCP-compatible client configuration file.
Point the tool at your COBOL source files, copybooks, JCL, or VSAM definitions.
Ask Claude to analyse your code. Results include actionable reports with CASA governance.
Each COBOL Bridge tool is an independent MCP server published on npm under the @csga scope. Install the tools you need:
# 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
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.
Add COBOL Bridge tools to your MCP client configuration. For Claude Desktop, edit the claude_desktop_config.json file:
{
"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"
}
}
}
}
| Variable | Description | Default |
|---|---|---|
CASA_LEVEL | CASA certification level (CA-10, CA-20, CA-30, CA-40) | CA-20 |
COBOL_SOURCE_DIR | Path to COBOL source files | ./ |
OUTPUT_FORMAT | Analysis output format (json, markdown, html) | json |
LOG_LEVEL | Logging verbosity (debug, info, warn, error) | info |
AUDIT_TRAIL | Enable full audit logging for compliance | true |
Once configured, open Claude Desktop and ask it to analyse your COBOL code. The MCP tools automatically connect and provide structured results.
# 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
Analyses COBOL copybook structures, extracts field definitions, PIC clauses, group-level hierarchies, REDEFINES relationships, and OCCURS arrays. Generates modern schema mappings and documentation.
| Tool | Description |
|---|---|
parse_copybook | Parse a single copybook file and extract all field definitions |
analyse_relationships | Map relationships between multiple copybooks |
generate_schema | Generate modern database schema from copybook definitions |
export_documentation | Create documentation from copybook analysis |
Evaluates CICS transaction programs for API modernisation readiness. Analyses BMS maps, COMMAREA structures, and transaction flow patterns to generate RESTful API migration plans.
Parses JCL job streams to identify step dependencies, dataset usage, PROC references, and execution patterns. Optimises batch windows and generates dependency graphs for modernisation.
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.
Converts EBCDIC data formats with full character set mapping and validation. Supports packed decimal, zoned decimal, and binary field conversions with data integrity verification.
COBOL Bridge tools are designed for seamless integration with Claude Desktop and Claude Code. Once configured, tools appear automatically in Claude's tool palette.
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.
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.
{
"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"
}
}
| Option | Description | Best For |
|---|---|---|
| SaaS | Multi-tenant cloud, instant provisioning via npm | Quick start, evaluation |
| VPC | Dedicated instance on AWS, Azure, or GCP | Enterprise isolation |
| On-Premises | Full installation behind corporate firewall | Regulated industries |
| Hybrid | Air-gapped support with HSM integration | Defence, national security |
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.
| Level | Name | Description |
|---|---|---|
CA-10 | Foundation | Basic AI safety controls, input validation, output filtering |
CA-20 | Professional | Enhanced monitoring, audit trails, compliance mapping |
CA-30 | Enterprise | Full regulatory alignment (SOX, HIPAA, FedRAMP), RBAC |
CA-40 | Critical | Air-gapped, FIPS 140-3, defence-grade assurance |
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.