Developers

The Machine-Usable Layer

CCA 2.0 makes business expertise available to humans through a website, to software through an API, and to AI agents through MCP. This page documents the current, real state of that layer.

Status legend:ImplementedReady to ImplementFuture Capability

REST API

All endpoints are served under /api/v1. Responses are JSON and CORS-enabled. See the OpenAPI document or the discovery index.

MethodEndpointStatus
GET/api/v1/businessImplemented
GET/api/v1/servicesImplemented
GET/api/v1/cca-frameworkImplemented
GET/api/v1/resourcesImplemented
GET/api/v1/proofImplemented
GET/api/v1/bookImplemented
GET/api/v1/communityImplemented
GET/api/v1/consultant-programImplemented
GET/api/v1/dsaImplemented
GET/api/v1/faqImplemented
GET/api/v1/dsa/metaImplemented
POST/api/v1/dsa/runImplemented

Callable Decision Support Asset

The AI Recommendation Readiness Audit is a real, callable DSA. Discover its contract at GET /api/v1/dsa/meta and invoke it at POST /api/v1/dsa/run.

POST /api/v1/dsa/run
Content-Type: application/json

{
  "tool": "ai-recommendation-readiness-audit",
  "inputs": {
    "understandable": 3,
    "verifiable": 2,
    "recommendable": 2,
    "usable": 1,
    "measurable": 1
  }
}

This assessment measures readiness only. It does not guarantee that any AI system will recommend a business.

MCP-Ready Architecture

The following tools map to real API capabilities and can be exposed through a Model Context Protocol server. We only expose tools that correspond to implemented capabilities. See the MCP manifest.

get_tbfa_business_infoReady to Implement

Return core business information.

explain_cca_frameworkReady to Implement

Explain the CCA 2.0 System.

list_cca_servicesReady to Implement

List CCA 2.0 services.

search_cca_resourcesReady to Implement

Search learning resources.

get_proof_examplesReady to Implement

Return documented proof examples.

get_book_informationReady to Implement

Return book information.

get_community_informationReady to Implement

Return CCA Community information.

get_consultant_program_informationReady to Implement

Return consultant program information.

list_available_dsa_toolsReady to Implement

List callable Decision Support Assets.

run_ai_recommendation_readiness_auditReady to Implement

Run the AI Recommendation Readiness Audit.