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.
Create a new MCP tool following project conventions. Use $ARGUMENTS for the tool name and description.
[McpServerToolType] attribute[McpServerTool(Name = "snake_case_name")] attribute[Description("...")] on EVERY parameterIsConfigured check — return error result if required service not configuredProgram.cs if new services are needed[McpServerToolType]
public static class MyNewTool
{
[McpServerTool(Name = "my_new_tool")]
[Description("What this tool does")]
public static async Task<string> Execute(
[Description("Parameter description")] string requiredParam,
[Description("Optional parameter")] string? optionalParam = null,
IMyService? myService = null)
{
if (myService is null || !myService.IsConfigured)
return "Error: MyService is not configured. Set MY_ENV_VAR environment variable.";
// Implementation
return JsonSerializer.Serialize(result, new JsonSerializerOptions { WriteIndented = true });
}
}snake_case (e.g., get_btc_price, check_wallet_balance)[Description] on every parameter — MCP clients use these for documentationcreate_l402_challenge, verify_l402_paymentSuggested follow-up: /mcp-publish-prep when ready to publish
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.