MCP Builder Build a working MCP server from a description of the tools you need. Produces a deployable Python server using FastMCP. Workflow Step 1: Define What to Expose Ask what the server needs to provide: - Tools -- Functions Claude can call (API wrappers, calculations, file operations) - Resources -- Data Claude can read (database records, config, documents) - Prompts -- Reusable prompt templates with parameters A brief like "MCP server for querying our customer database" is enough. Step 2: Scaffold the Server Create the server file. The server instance MUST be at module level: Step 3: A…