new-mcp-tool — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited new-mcp-tool (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.
Add a tool to the project's FastMCP server.
$ARGUMENTS -- Tool name in snake_case (e.g., get_user_profile)Read the MCP server file to understand current tool patterns and the FastMCP setup.
@mcp.tool()
async def $ARGUMENTS(
param1: str,
param2: int = 10,
) -> str:
"""Clear description of what this tool does and when an LLM should use it.
Include example parameter values to help LLMs understand expected input.
Example: param1="example_value", param2=30
"""
...The tool description is critical -- it's how LLMs decide when to call it:
async defAdd tests for the new tool's logic. Test:
pytest tests/ -v -k "mcp"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.