.agents/skills/mcp-builder/SKILL.md
| name | description | license | tags | |------|-------------|---------|------| | mcp-builder | Scaffold and generate Model Context Protocol (MCP) servers from a tool specification. Creates server boilerplate, tool handlers, schema definitions, and test stubs. Use when building new MCP integrations for AI agents. | MIT | --- mcp ai-agents tooling scaffolding typescript | # MCP Builder ## Overview Scaffold production-ready Model Context Protocol (MCP) servers from a tool specification. Generat
npx skillsauth add Greenmamba29/skillsdotmd_web .agents/skills/mcp-builderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| name | description | license | tags | |------|-------------|---------|------| | mcp-builder | Scaffold and generate Model Context Protocol (MCP) servers from a tool specification. Creates server boilerplate, tool handlers, schema definitions, and test stubs. Use when building new MCP integrations for AI agents. | MIT | --- mcp ai-agents tooling scaffolding typescript |
Scaffold production-ready Model Context Protocol (MCP) servers from a tool specification. Generates server boilerplate, typed tool handlers, JSON schema definitions, and test stubs so you can focus on business logic.
<server-name>/
├── src/
│ ├── index.ts # Server entry point
│ ├── tools/
│ │ └── <tool>.ts # Tool handler
│ └── types.ts # TypeScript types
├── package.json
├── tsconfig.json
└── README.md
TARGET_LANGUAGE=typescript
MCP_SDK_VERSION=latest
INCLUDE_TESTS=true
STRICT_TYPES=true
AUTH_PATTERN=env-vars
Input:
server_name: weather-mcp
tool_name: get_weather
description: Get current weather for a location
input_schema:
location: string (required)
units: celsius|fahrenheit (default: celsius)
output: temperature, conditions, humidity, wind_speed
auth: OPENWEATHER_API_KEY env var
Output:
MCP Server Scaffolded: weather-mcp
Files created: 7
- src/index.ts: Server entry with tool registration
- src/tools/get_weather.ts: Tool handler with OpenWeather API call
- src/types.ts: TypeScript interfaces
- package.json: Dependencies (mcp-sdk, zod, axios)
- tsconfig.json: Strict TypeScript config
- tests/get_weather.test.ts: Jest test stubs
- README.md: Setup and usage guide
Next: Add OPENWEATHER_API_KEY to .env and run npm install
tools
Automate end-to-end new customer onboarding for SaaS and marketplace platforms. Use when onboarding new customers after signup or contract signing, including account provisioning in CRM (HubSpot/Salesforce), sending personalized welcome email sequences via SendGrid, creating and tracking onboarding checklists, scheduling kickoff calls via Calendly/Cal.com, monitoring customer health scores, and generating time-to-value reports. Triggers on tasks involving new customer setup, onboarding automation, welcome sequences, CSM task assignment, or onboarding health tracking.
development
Migrates Zapier zaps to Make.com scenarios automatically. Use when asked to convert, port, or recreate Zapier workflows in Make.com.
development
Routes, transforms and fans out webhook payloads across multiple services. Use when you need to receive an incoming webhook and dispatch it to multiple downstream endpoints with payload transformation.
tools
| name | description | license | tags | |------|-------------|---------|------| | webapp-testing | Generate and execute comprehensive test suites for web applications. Covers unit, integration, E2E, and visual regression tests. Analyzes application structure to create meaningful test cases with high coverage. | MIT | --- testing qa automation e2e playwright jest | # Webapp Testing ## Overview Generate and execute comprehensive test suites for web applications covering unit, integration, end-t