Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

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