
pic-standard
by madeinplutofabio·★ 23·Score 43
MCP server providing Provenance & Intent Contracts (PIC) to verify agent actions before execution.
Overview
The pic-standard MCP server implements a safety protocol that constrains what AI agents are allowed to do based on verifiable provenance and evidence. It prevents prompt injections and blind tool calls by requiring agents to prove their intent, impact, provenance, and evidence before high-impact actions execute. The server works 100% locally with zero cloud dependencies and integrates with MCP to provide fail-closed tool guarding.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose PIC when building AI systems that must verify the intent and provenance of high-impact actions before execution, particularly in financial, privacy, or regulated environments.
When NOT to choose this
Don't choose PIC if you need simple tool access controls without provenance verification, or if you're working in an environment where local-only solutions aren't acceptable.
Tools this server exposes
2 tools extracted from the READMEverifyVerify an action proposal against the PIC contract
keysManage the keyring of trusted signers
Note: Inferred from CLI commands in the README. While the MCP integration is mentioned, specific MCP tool names aren't clearly documented in the provided excerpt.
Comparable tools
Installation
Install the PIC standard package:
pip install pic-standard[mcp]To use with Claude Desktop, add to your config.json:
{
"mcpServers": {
"pic": {
"command": "python",
"args": ["-m", "pic_standard.mcp"]
}
}
}FAQ
- What is PIC?
- PIC (Provenance & Intent Contracts) is a lightweight protocol that forces AI agents to prove every important action before it happens, requiring agents to declare intent, impact, provenance, and evidence.
- How does PIC integrate with MCP?
- PIC provides an MCP integration that offers enterprise tool guarding with fail-closed defaults, request correlation, DoS limits, and evidence sandboxing for MCP tools.
On Hacker News
Recent discussion from the developer community.
- Story by fabsalvadori · 2026-01-23
- Story by fabsalvadori · 2026-01-13
Compare pic-standard with
Last updated · Auto-generated from public README + GitHub signals.