Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,22 @@ Agent ──► SINT Bridge ──► Policy Gateway ──► Allow / Deny / Es
ProofReceipt (pluggable attestation)
```

## Install the MCP server

The installable server entrypoint is `sint-mcp`.

```bash
npx -y sint-mcp --stdio
npx -y sint-mcp --config ./sint-mcp.config.example.json --stdio
```

If you prefer containers, build and run the repo root `Dockerfile`:

```bash
docker build -t sint-mcp .
docker run --rm -i sint-mcp
```

## Why SINT?

AI agents can now control robots, execute code, move money, and operate machinery. But there's no standard security layer between "the LLM decided to do X" and "X happened in the physical world."
Expand Down
5 changes: 4 additions & 1 deletion glama.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@
"pshkv"
],
"name": "SINT Protocol",
"description": "Security-first MCP proxy with policy enforcement — scan tools for risks (T0–T3 tiers), enforce approval gates, produce hash-chained audit trails. OWASP ASI05 compliant.",
"description": "Installable security-first MCP proxy with policy enforcement — scan tools for risks (T0–T3 tiers), enforce approval gates, and produce hash-chained audit trails. OWASP ASI05 compliant.",
"repository": "https://github.com/sint-ai/sint-protocol",
"homepage": "https://sint.gg",
"license": "Apache-2.0",
"keywords": [
"security",
"installable",
"governance",
"policy",
"audit",
"mcp",
"stdio",
"docker",
"owasp",
"ai-agents",
"approval",
Expand Down
Loading