Probe Server
MCP Vetter Agent
AIツールのためのAIセキュリティ監査人。 TrueForge上で動作するエージェントで、サードパーティ製MCPサーバーをエージェントに接続する前にセキュリティ脆弱性を審査し、その後、公開セキュリティレポートを提出する前に一時停止して人間に確認を求めます。
TrueForgeはエージェントを任意のMCPサーバーに接続します。コミュニティサーバーはgist、テンプレート、サイドプロジェクトとして共有されており、ハードコードされたキー、ツール引数に対する
eval()、認証境界の欠如が存在します。エージェントは疑うことを知りません。このエージェントこそが疑い深い存在です。
仕組み
User: "audit https://github.com/someone/some-mcp-server"
└─ TrueForge agent (mcp-vetter)
├─ clone_target ── shallow-clones the GitHub URL onto the probe host
├─ read_target_manifest ── declared tools & permission boundaries
├─ subagent: static_audit ── AST rules + Semgrep (SENT-001..007)
├─ subagent: full_audit ── GPT review + Docker probes (SENT-008..011)
├─ Synthesizes verdict (HIGH/MEDIUM/LOW, OWASP Agentic Top 10 mapped)
└─ ⏸ PAUSES before filing the GitHub security issue → human approves → filesプローブは隔離環境で実行: Sentinelの動的プローブは、対象サーバーを使い捨てのDockerコンテナ内で実行します。
承認ゲートはネイティブのTrueForge HITL: issue作成は書き込み/破壊的アクションであるため、ハーネスは許可/拒否のために一時停止します。
セッションは再接続後も存続: 監査の途中で更新しても、エージェントは作業を継続します。
Related MCP server: secureaudit-mcp
クイックスタート
# 1. Probe server (the security scanning engine)
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
uvicorn probe_server.server:mcp_app --host 127.0.0.1 --port 8000 # serves /mcp
# 2. TrueForge (separate terminal; needs Node 22+)
npx @truefoundry/trueforge@latest # UI at http://localhost:8790
# 3. In the TrueForge UI:
# Settings → Models : configure a provider (API key)
# Settings → Connectors : Add MCP Server → http://127.0.0.1:8000/mcp
# (+ GitHub connector from the catalog, OAuth)
# Settings → Sandbox : optional (skills/code mode); cloning runs on the probe host
# Create agent : import deploy/agent-manifest.json via API, or compose in UI
# 4. Chat: "audit ./fixtures/vulnerable_server"まずは同梱のフィクスチャで試してください:
フィクスチャ | 期待される結果 |
| HIGHリスク — |
| クリーンなレポート |
リポジトリ構成
probe_server/ MCP server exposing the scanning engine as agent tools
fixtures/ Vulnerable + hardened reference MCP servers (from Sentinel, MIT)
deploy/ TrueForge agent manifest (agent spec via API)
docs/ PRD, architecture, week plan, setup guideQodo Code Reviewの証跡
このリポジトリのすべての実質的な変更は、マージ前にQodoによるプルリクエストレビューを経ています — ハッカソン初日からです。
代表的なレビュー済みPR: #1 — feat: probe server, fixtures, tests, TrueForge agent spec
Qodoが指摘した内容と私たちが行った対応(完全な履歴はPRで確認可能):
ラウンド | 指摘事項 | 結果 |
初回レビュー | High 2件、Medium 5件 | 修正済み: GitHubターゲットが到達不能なサンドボックスパスではなくプローブホスト上に実体化されるよう |
修正の再レビュー | High 3件、Medium 1件 | 修正済み: |
3回目のパス | Medium 3件 | 修正済み: 不正なURLが例外を発生させる代わりにエラーディクショナリを返す問題; キャンセル時にクローンプロセスのツリーを回収する処理; すべてのクリーンアップをイベントループ外に移動 |
最終パス | 指摘0件 | クリーン |
記録された理由により却下された指摘が1件あります: クリーンフィクスチャのゼロ値整合性ダイジェスト(PRへのコメント)— これは私たちが利用するMITライセンスのエンジンで上流からそのまま提供されているものであり、関連するコードパスは私たちのツールでは決して実行されないため、上流からフォークするのではなく、フィクスチャを上流と同一に保ちました。
PR履歴には、各レビュー、その指摘に対処したコミット、および最終コードに対する解決を確認するフォローアップレビューが示されています。
デモ
クレジット
The Agent Harness Hackathon(WeMakeDevs × TrueFoundry、2026年8月)のために構築されました。同梱の参照コードのライセンスについてはfixtures/LICENSEを参照してください。
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
- AlicenseNot gradedqualityDmaintenanceAutomatically installs and containerizes MCP servers from GitHub repositories using MCP sampling to analyze repositories and create appropriate Docker images.2MIT
- AlicenseAqualityBmaintenanceAn AppSec-focused MCP server that performs static analysis scans on C/C++ source code for memory-safety vulnerabilities and parses compiled PE/ELF binary headers locally to audit active defensive compiler mitigations (ASLR, DEP/NX, PIE).41MIT
- AlicenseNot gradedqualityFmaintenanceComprehensive MCP server for analyzing GitHub pull requests, detecting security vulnerabilities, assessing code quality, and providing risk ratings across multiple languages.3MIT
- AlicenseAqualityAmaintenanceSecurity scanning for MCP servers from the inside out. Provides runtime inspection, AST-based static analysis, config audit, dependency analysis, and OWASP MCP Top 10 compliance in a single MCP server.55625MIT
Related MCP Connectors
Scan any public GitHub MCP-server repo for security issues. 37 MCP-specific L1 rules, 8 languages.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
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/hemv-857/mcp-vetter-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server