A secure, metadata-only filesystem bridge that lets your cloud-based AI assistant "see" the exact state of your local repositories safely—preserving 100% of your raw source code privacy.
A lean, secure implementation built entirely on standards to support the agentic developer toolchain.
Built 100% on the standard Python library. Runs instantly without requiring pip installs or binary compilation.
Only parses local Git metadata and directory states. No raw codebase is uploaded, keeping proprietary IP fully on-device.
Runs native JSON-RPC 2.0 stdio server, serving repository state directly to agentic environments like Cursor or Claude Desktop.
Outputs registries following a strict JSON Schema, allowing any compliant pipeline to safely validate outputs.
Digital Corpus Callosum™ guarantees output stability by standardizing its repository registry schemas. Other tools, pipelines, or cloud agents can reliably run schema validation to ensure data consistency before reasoning over metadata.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Digital Corpus Callosum™ Registry Schema",
"type": "object",
"required": [
"agent_name",
"last_updated",
"scanned_roots",
"repository_count",
"repositories"
],
"properties": {
"agent_name": { "type": "string" },
"last_updated": { "type": "string" },
"repository_count": { "type": "integer" }
}
}
{
"mcpServers": {
"digital-corpus-callosum": {
"command": "python3",
"args": [
"/path/to/digital_corpus_callosum.py",
"--mcp"
]
}
}
}
Initiate an active local-to-cloud server with `--mcp`. Communicating via JSON-RPC 2.0 over standard input and output (stdio), DCC lets any compatible agentic coding environment trigger filesystem scans and inspect repository health directly.
get_repository_registry: Read-only tool that securely serves the current cached repository statuses.
scan_repositories_now: On-demand triggers an active recursive directory scan, updating the Drive synced registry.
Bring your own AI API keys. We focus on building and maintaining secure filesystem integration infrastructure.