agentvet-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| validate_tool_argsA | Validate a tool-call args object against a small shape spec. Returns { valid, error?, retry_hint? } where retry_hint is a ready-to-send LLM feedback message describing exactly what was wrong. |
| lint_tool_definitionA | Sanity-check a tool definition for common mistakes that hurt LLM tool-use accuracy: missing description, vague description, no required fields, schema fields without descriptions, non-snake_case names. |
| generate_retry_messageA | Given a tool name, validation error, and attempted args, build the canonical LLM-facing retry feedback message. Uses agentvet's ToolArgError.toLLMFeedback() formatting so the wording matches what runtime callers see. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool targets a distinct operation: generating retry messages, linting tool definitions, and validating tool args. There is no overlap in purpose.
All tool names follow a consistent verb_noun snake_case pattern (generate_retry_message, lint_tool_definition, validate_tool_args), making them predictable.
With 3 tools, the server is well-scoped for its purpose of agent vetting and validation. Each tool earns its place without being too sparse or bloated.
The set covers core validation, linting, and feedback generation. A minor gap is the absence of a tool to suggest fixes or re-lint after changes, but the core workflow is complete.