Dashboard
Welcome back! Here's what's happening with your COBOL modernization.
ISO 20022 Bridge
SWIFT MT to ISO 20022 migration with validated MX message generation.
| Message Type | Status | Count |
|---|---|---|
| pacs.008 (Customer Credit) | β Done | 234 |
| pacs.009 (Institution) | β Done | 189 |
| camt.053 (Statement) | In Progress | 156 |
| pain.001 (Payment Init) | In Progress | 98 |
| MT103 β pacs.008 | Queued | 412 |
Regulatory Fingerprint
Cross-jurisdiction encoding patterns. How regulation manifests in COBOL across 76 regulations.
| Aspect | UK FCA | BaFin |
|---|---|---|
| RWA Calculation | COMPUTE-RWA-V2 | BERECHNE-RWA-V3 |
| Reporting Format | XML/FCA-XML | XML/BaFin-EXT |
| Field Precision | 2 decimal | 4 decimal |
| Validation Rules | FCA-VAL-001 | BF-PRUEF-002 |
PQC Assessment
Post-Quantum Cryptography readiness for NIST standards. Government & defence contract ready.
| Algorithm | NIST Standard | Status |
|---|---|---|
| ML-KEM | FIPS 203 | Recommended |
| ML-DSA | FIPS 204 | Recommended |
| SLH-DSA | FIPS 205 | Alternative |
| RSA | -- | Deprecated |
COBOL Discovery
Auto-map your COBOL programs, copybooks, and dependencies.
Schema Generator
Generate OpenAPI, AsyncAPI, JSON Schema from COBOL copybooks.
01 ACCOUNT-RECORD.
05 ACCT-NUMBER PIC X(16).
05 ACCT-HOLDER-NAME PIC X(64).
05 ACCT-BALANCE PIC 9(15)V99.
05 ACCT-TYPE PIC X(2).
05 ACCT-STATUS PIC X(1).
05 ACCT-OPEN-DATE PIC 9(8).
05 ACCT-LAST-ACTIVITY PIC 9(8).
{
"type": "object",
"properties": {
"accountNumber": {
"type": "string",
"maxLength": 16
},
"holderName": {
"type": "string",
"maxLength": 64
},
"balance": {
"type": "number",
"format": "decimal"
},
"accountType": {
"type": "string",
"enum": ["SA", "CA", "LN"]
}
}
}
MCP Tools
Expose services as governed AI-ready tools with MCP protocol. Live tool registry from COBOL Bridge MCP Server.
https://cobol-bridge.vercel.app/mcp
Test Baselines
Capture behavior, detect drift, prove equivalence.
| Test Case | Legacy Output | Modern Output | Status |
|---|---|---|---|
| ACCT-001: Get Balance | $15,234.56 |
$15,234.56 |
β Match |
| ACCT-002: Transfer | TXN-12345 |
TXN-12345 |
β Match |
| CUST-001: Update Details | SUCCESS |
SUCCESS |
β Match |
| PYMT-001: Process Payment | SETTLED |
SETTLED |
β Match |
API Playground
Test and explore your generated APIs in real-time.
Authorization: Bearer eyJhbGciOiJIUzI1NiIs... Content-Type: application/json X-API-Version: v1
Performance Monitor
Real-time metrics and performance analytics.
Dependency Graph
Visualize and explore your COBOL program relationships.
Code Diff Viewer
Compare legacy COBOL with modernized code side-by-side.