What problem does it solve? Setting up a new third-party tool integration involves repetitive plumbing: choosing an auth pattern, configuring env vars, writing a client wrapper, wiring webhooks, and verifying everything works. This Skill turns that into a guided wizard that produces working, secure integration code instead of ad-hoc copy-paste from docs. ## Core Features & Use Cases - Interactive integration wizard: Asks structured questions about the tool, stack, auth pattern, SDK, env vars, and webhooks, then scaffolds client wrappers, webhook handlers, example routes, and env templates for Next.js or Rails. - MCP server wiring: Adds entries to .mcp.json plus the required environment variables for MCP-based tools like Stripe, Sanity, or GitHub. - Security-first defaults: Enforces webhook signature verification, correct Vercel sensitive vs non-sensitive env var handling, and pinned SDK versions. - Use Case: You want to add Stripe payments to a Next.js app. Run the wizard, answer a few questions, and receive a typed client in src/lib/stripe.ts, a signature-verified webhook route, env var setup, and a smoke-test command. ## Quick Start Ask the agent to integrate Stripe into this project using the toolify wizard and follow the guided questions.