io.github.NikitaDatar/vectordecisions-mcp-server
AI Governance MCP Server - GATRI trust scoring, kill-switch, EU AI Act compliance for Claude
Open source Open in the app JSON README (API)
About
AI Governance MCP Server - GATRI trust scoring, kill-switch, EU AI Act compliance for Claude
Details
- Kind
- MCP servers
- Topic
- Security & identity
- Publisher
- nikitadatar
- Origin
- official
- Category
- ferramentas
- Transport
- local
- Version
- 1.0.3
- Last push
- 2026-08-14T14:49:18Z
- Repository state
- ativo
- Language
- JavaScript
- Added
- 2026-08-29 03:02:08
- Updated
- 2026-08-29 03:02:08
- Origin id
io.github.NikitaDatar/vectordecisions-mcp-server
README
# Vector Decisions MCP Server
MCP-native governance and action-assurance primitives for autonomous AI.
## Tools
- `gatri_trust_score` — legacy composite trust scoring.
- `assure_action` — evidence-backed, context-aware assurance for one agent action.
- `decide_action` — converts GATRI assurance + policy + permissions + context into `ALLOW`, `RESTRICT`, `REQUIRE_HUMAN`, or `DENY`.
- `risk_assessment` — deployment risk assessment.
- `compliance_check` — EU AI Act-oriented policy check.
- `kill_switch` — emergency stop directive.
## Core model
```text
agent × action × context × evidence
↓
GATRI
↓
Vector Decisions
↓
ALLOW / RESTRICT /
REQUIRE_HUMAN / DENY
```
The important primitive is **action assurance**, not a generic claim that an agent is safe. The same agent can be acceptable for one action and unacceptable for another.
## Local development
```bash
npm install
npm run build
npm start
```
The server uses stdio transport and is intended to be consumed by MCP-compatible clients.
## Status
Version 1.1.0. This is a protocol-oriented V0: deterministic local evaluation first; evidence ingestion, persistent assurance records, policy registries, signed attestations and remote APIs are subsequent layers.