Metadata-Version: 2.4
Name: dailyaiagents-evidence-gate
Version: 0.1.1
Summary: Local MCP tools for checking artifacts, claims, and citations
Project-URL: Homepage, https://usedailyai.com/marketplace/
Project-URL: Repository, https://github.com/Dailyaiagents/daily-ai-agent-toolkit
Author-email: Daily AI Agents LLC <support@usedailyai.com>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Requires-Dist: mcp<1.30,>=1.29.1
Description-Content-Type: text/markdown

# Evidence Gate

<!-- mcp-name: io.github.Dailyaiagents/evidence-gate -->

A local MCP server that checks retained artifacts, declared claim support, and literal citation containment. It does not determine truth on its own and does not fetch URLs.

```bash
dailyai-evidence-gate --root /path/to/workspace
```

See the repository documentation for client configuration and limitations.

## Tools

- `verify_artifact`: file presence, size, hash, and declared text rules.
- `audit_claims`: declared evidence availability without semantic overclaiming.
- `audit_citations`: normalized literal containment in local sources.
- `summarize_verification`: aggregate receipts without upgrading uncertainty.

## Clean install

```bash
python3.11 -m venv .venv
.venv/bin/pip install dailyaiagents-evidence-gate==0.1.1
.venv/bin/dailyai-evidence-gate --root "$PWD"
```

See the repository's [threat model](https://github.com/Dailyaiagents/daily-ai-agent-toolkit/blob/main/docs/THREAT-MODEL.md), [receipt schemas](https://github.com/Dailyaiagents/daily-ai-agent-toolkit/blob/main/docs/RECEIPT-SCHEMAS.md), and [changelog](https://github.com/Dailyaiagents/daily-ai-agent-toolkit/blob/main/CHANGELOG.md). URL evidence remains `UNVERIFIED`; literal containment is not semantic entailment.
