Blueprint Tracker
Schema registry and catalog. Stores, versions, and retrieves schema definitions for all data sources in the pipeline.
What It Does
Blueprint Tracker is the schema registry for the RedQueen pipeline. It stores schema definitions, versions them over time, and provides a lookup API for all downstream agents. It maintains full version history enabling schema drift detection and rollback, and integrates with Confluent Schema Registry and AWS Glue Data Catalog.
Capabilities
- Schema storage and versioning
- Schema drift detection
- Avro, JSON Schema, Protobuf support
- Confluent Schema Registry integration
- AWS Glue Data Catalog integration
- Schema evolution rules
- Compatibility checking
Example
const result = await mcp.call('blueprint_tracker_lookup', {
source_id: 'salesforce-contacts',
version: 'latest',
});
console.log(result.schema); // JSON Schema object
console.log(result.version); // "3.2.1"
console.log(result.drift_detected); // false Configuration
agent: blueprint-tracker
version: "1.0"
registry:
backend: internal
versioning:
strategy: semantic
compatibility: backward
storage:
backend: kv Related Agents
Phantom Speculator
Automatic schema detection and inference. Analyzes payload structure to infer field types, nullability, and constraints without any configuration.
Solicitor
Data contract generation. Automatically generates YAML data contracts from inferred schemas, defining SLAs, quality expectations, and ownership.
Inquisitor
Quality test suite compilation. Generates dbt-compatible data quality tests from schema definitions and historical data patterns.