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.
REST API
All endpoints are served under /api/v1. Responses are JSON and CORS-enabled. See the OpenAPI document or the discovery index.
| Method | Endpoint | Status |
|---|---|---|
| GET | /api/v1/business | Implemented |
| GET | /api/v1/services | Implemented |
| GET | /api/v1/cca-framework | Implemented |
| GET | /api/v1/resources | Implemented |
| GET | /api/v1/proof | Implemented |
| GET | /api/v1/book | Implemented |
| GET | /api/v1/community | Implemented |
| GET | /api/v1/consultant-program | Implemented |
| GET | /api/v1/dsa | Implemented |
| GET | /api/v1/faq | Implemented |
| GET | /api/v1/dsa/meta | Implemented |
| POST | /api/v1/dsa/run | Implemented |
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 ImplementReturn core business information.
explain_cca_frameworkReady to ImplementExplain the CCA 2.0 System.
list_cca_servicesReady to ImplementList CCA 2.0 services.
search_cca_resourcesReady to ImplementSearch learning resources.
get_proof_examplesReady to ImplementReturn documented proof examples.
get_book_informationReady to ImplementReturn book information.
get_community_informationReady to ImplementReturn CCA Community information.
get_consultant_program_informationReady to ImplementReturn consultant program information.
list_available_dsa_toolsReady to ImplementList callable Decision Support Assets.
run_ai_recommendation_readiness_auditReady to ImplementRun the AI Recommendation Readiness Audit.