Zig MCP Server

get_recommendations

Get code improvement recommendations and best practices

Input Schema

NameRequiredDescriptionDefault
codeYesZig code to analyze
promptNoNatural language query for specific recommendations

Input Schema (JSON Schema)

{ "properties": { "code": { "description": "Zig code to analyze", "type": "string" }, "prompt": { "description": "Natural language query for specific recommendations", "type": "string" } }, "required": [ "code" ], "type": "object" }