Agentvet Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Agentvet Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for [`@mukundakatta/agentvet`](https://www.npmjs.com/package/@mukundakatta/agentvet). Lets Claude Desktop, Cursor, Cline, Windsurf, Zed, or any other MCP client validate LLM-generated tool-call args before execution and produce LLM-friendly retry messages when something's wrong.
npx -y @mukundakatta/agentvet-mcpThree tools:
{ valid, error?, retry_hint? } where retry_hint is a ready-to-send LLM feedback message.ToolArgError.toLLMFeedback() formatting.Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"agentvet": {
"command": "npx",
"args": ["-y", "@mukundakatta/agentvet-mcp"]
}
}
}Same shape for Cursor (~/.cursor/mcp.json), Cline, Windsurf, Zed.
`validate_tool_args`:
{
"tool_name": "send_email",
"args": { "to": "[email protected]" },
"shape": { "to": "string", "subject": "string", "body": "string" }
}Returns:
{
"valid": false,
"error": "missing required field: subject",
"retry_hint": "send_email rejected your args: missing required field: subject. Please call again with the corrected arguments."
}`lint_tool_definition`:
{
"tool": {
"name": "BadName",
"inputSchema": { "type": "object", "properties": { "x": { "type": "string" } } }
}
}Returns warnings about non-snake_case name, missing description, missing field descriptions, and no required fields.
`generate_retry_message`:
{
"tool_name": "send_email",
"validation_error": "missing required field: subject",
"attempted_args": { "to": "[email protected]" }
}Returns the canonical retry feedback string the runtime callers see — so you can prepare retry text outside the live agent loop.
@mukundakatta/agentvet is a zero-dependency JavaScript library. This MCP server makes its validation primitives accessible from any MCP-aware AI assistant. Useful for quickly auditing a registry of tools, or asking the assistant "is this args object valid for my send_email tool?" without leaving the chat.
For runtime arg validation in your agent loop, use @mukundakatta/agentvet directly inside your Node process (it wraps your tool fn and throws ToolArgError synchronously).
Part of the agent-stack series:
@mukundakatta/agentfit-mcp — Fit it.@mukundakatta/agentguard-mcp — Sandbox it.@mukundakatta/agentsnap-mcp — Test it.@mukundakatta/agentvet-mcp — Vet it. (this)@mukundakatta/agentcast-mcp — Validate it.MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.