Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.16 KB

File metadata and controls

47 lines (36 loc) · 1.16 KB

VCP Python SDK

The Python reference implementation of the Value Context Protocol.

Installation

pip install -r requirements.txt

Structure

python/
├── pyproject.toml
├── requirements.txt
├── src/
│   ├── vcp/                     # Core VCP library
│   │   ├── identity/            # Identity layer (UVC tokens, namespaces)
│   │   ├── semantics/           # Semantics layer (CSM-1, personas)
│   │   └── adaptation/          # Adaptation layer (context, state)
│   ├── mcp/                     # MCP server for Claude Code
│   └── api/                     # FastAPI router
└── tests/
    ├── conftest.py
    ├── vcp/                     # Core VCP tests
    ├── unit/                    # Unit tests
    └── integration/             # Integration tests

Running Tests

pytest tests/

MCP Server

./src/mcp/run_vcp_server.sh

See Also