Tool of Truth
Tool of Truth
Каждый вызов инструмента — доказан.
Сторожевой механизм проверки использования инструментов AI-агентами. MITM-прокси, который перехватывает все вызовы инструментов MCP, обнаруживает фабрикации, отслеживает затраты, проверяет результаты и определяет удовлетворённость пользователя.
Возможности
Функция | Статус | Описание |
MITM Proxy | ✅ | Прозрачно перехватывает все вызовы инструментов MCP |
Обнаружение фабрикаций | ✅ | Глубокий анализ по 7 сигналам: трассировка, сходство документов, тайминги, заполнители, противоречия |
Оценка доверия | ✅ | Взвешенная оценка от 0 до 100 с ограничением на фабрикации |
Отслеживание затрат | ✅ | Стоимость за вызов для 8 провайдеров |
Подсчёт токенов | ✅ | Входные/выходные токены на вызов |
Проверка результатов | ✅ | Сравнивает результат инструмента с исходным запросом пользователя |
Соблюдение навыков | ✅ | Проверяет рабочий процесс через манифесты |
Удовлетворённость пользователя | ✅ | Определяет удовлетворённость по последующим сообщениям |
Квитанции | ✅ | Хешированы SHA-256, JSON + человекочитаемый формат |
Локальное хранилище | ✅ | Ежедневные файлы JSONL + индексированный поиск |
Прозрачность инструментов | ✅ | Показывает, что на самом деле делают нижестоящие инструменты |
Related MCP server: openclaw-output-vetter-mcp
Быстрый старт
1. Установка
npm install -g tooloftruth-mcp2. Подключение (Вариант A: Напрямую)
// Your agent's MCP config
{
"tooloftruth": {
"command": "tooloftruth-mcp"
}
}3. Подключение (Вариант B: Прокси — режим MITM)
// Your agent's MCP config
{
"tooloftruth": {
"command": "tooloftruth-mcp"
}
}// ~/.tooloftruth/proxy.json
{
"servers": {
"firecrawl": { "command": "npx", "args": ["firecrawl-mcp"] },
"github": { "command": "npx", "args": ["@modelcontextprotocol/server-github"] }
}
}4. Использование
You: Did you actually use firecrawl?
Agent: [calls tooloftruth_verify]
Agent: VERIFIED — firecrawl was called at 10:30:02, trust score 98/100, cost $0.03
You: How much did I spend on tools today?
Agent: [calls tooloftruth_cost]
Agent: Total: $0.47 across 12 tool calls
You: Was that result what I asked for?
Agent: [calls tooloftruth_outcome]
Agent: ALIGNED — tool result matches your request
You: That's wrong, try again
Agent: [calls tooloftruth_satisfaction]
Agent: User appears dissatisfied — result may be wrongCLI
# Intercept and monitor non-MCP commands
tooloftruth -- gh api repos/user/repo
# One-shot status report (daemon health, receipts, cost, top tools)
tooloftruth statusДемон
Демон launchd следит за .tooloftruth/receipts/, собирает ежедневную статистику и предупреждает о фабрикациях.
# Install the daemon (macOS)
launchctl load ~/Library/LaunchAgents/com.tooloftruth.daemon.plistСтатистика записывается в .tooloftruth/stats/YYYY-MM-DD.json.
Проверка достоверности
tooloftruth_truth_scan выполняет реальную веб-проверку утверждений: поиск Bing (curl) → извлечение crawl4ai → выделение доказательств → вердикт.
Инструменты MCP
Инструмент | Описание |
| Проверить, что конкретный инструмент был использован |
| Предварительная проверка: установлен ли инструмент/настроен ли он? |
| Создать/просмотреть квитанцию проверки |
| Разбивка затрат по инструментам |
| Поиск по историческим квитанциям |
| Полный отчёт о достоверности сессии |
| Определить удовлетворённость пользователя по сообщению |
| Проверить, что результат соответствует запросу пользователя |
| Сопоставить заявления агента с фактическими вызовами инструментов |
| Просмотреть журнал разговора |
| Веб-исследование + проверка фактов утверждения |
Как работает MITM-прокси
Agent ←→ Tool of Truth ←→ MCP Server (downstream)
↓
Records everything
Runs deep fabrication checks
Verifies outcome alignment
Infers satisfaction
Generates receipts
Returns result unchangedХранилище
Все данные остаются в домашнем каталоге вашего компьютера:
~/.tooloftruth/
├── config.json ← settings
├── index.json ← fast lookup index
├── proxy.json ← downstream server config
├── receipts/
│ ├── 2026-08-17.jsonl ← today's calls
│ └── ...
├── conversations/
│ └── 2026-08-17.jsonl ← claim/action conversations
└── stats/ ← daemon aggregations
├── 2026-08-17.json
└── ...
## Skill Manifests
Skills can attach verification manifests:
```json
{
"skill": "last-30-days",
"version": "2.1.0",
"requires": {
"github_mcp": {
"tool": "get_repo_stats",
"mustBeCalled": true
}
}
}Разработка
git clone https://github.com/adigoel07/tooloftruth.git
cd tooloftruth
pnpm install
pnpm build
npx vitest runЛицензия
MIT — используйте, форкайте, стройте на его основе.
Автор
Создано adigoel07.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
Alicense-qualityAmaintenanceOpen-source MCP proxy that enforces security policies, content scanning, and audit logging between AI agents and tool servers25AGPL 3.0- AlicenseAqualityBmaintenanceMCP server for verifying AI agent claims vs reality — single-transcript inline grounding-check that flags when an agent's response states facts not in the input context, when its code silently swallows exceptions and substitutes mock data, or when its multi-turn transcript contains contradictions or unverified completion claims. Sub-second, local, free, no API calls.41MIT
- Alicense-qualityDmaintenanceEnables trust, reputation, and economic accountability for MCP by proxying between clients and servers, enriching every tool invocation with trust evaluation, KYA tiers, spending limits, and delegation chains.MIT
- Alicense-qualityAmaintenanceAn MCP server that gives AI agents observability over their own tool calls, enabling auditing, cost tracking, latency analysis, and alerting.MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
A paid remote MCP for AI agent browser DevTools MCP, built to return verdicts, receipts, usage logs,
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adigoel07/tooloftruth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server