技能详情(站内镜像,无评论)
作者:Muhammad Mazhar Saeed @0x-professor
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 0 · 866 · 9 current installs · 10 all-time installs
⭐ 0
安装量(当前) 10
🛡 VirusTotal :可疑 · OpenClaw :良性
Package:0x-professor/agentic-mcp-server-builder
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions match its stated purpose (scaffolding MCP servers); it has no network behavior or credential requests, but it does write files to disk and can be allowed to write outside the workspace, so test with dry-run and review targets first.
目的
Name/description (scaffold MCP servers and contract checks) align with the included script and docs. The script reads a JSON payload describing tools and generates a file map and starter files — this is exactly what a scaffolder would need to do.
说明范围
SKILL.md confines the agent to run the provided script and read the included guide. The script only reads a local JSON input and writes local scaffold files. Note: SKILL.md suggests materializing files when not in dry-run mode, so follow guardrails to use --dry-run first.
安装机制
No install spec is provided and the skill only includes a small Python script and markdown references. There is no download-from-URL or package installation step.
证书
The skill requests no environment variables, no credentials, and the script does not read environment variables or external config paths. There are no secrets or external API keys involved.
持久
always is false and the skill is user-invocable. The script writes scaffold files into a scaffold_root under the current workspace by default; it can be allowed to write outside the workspace only if the --allow-outside-workspace flag is passed. The script will overwrite existing files without prompting.
综合结论
This skill appears coherent for scaffolding MCP servers. Before running: 1) run with --dry-run to verify the generated file map and output (no writes); 2) confirm the scaffold_root and output paths are correct and back up any important files (the script will overwrite existing files); 3) avoid passing --allow-outside-workspace unless you explicitly trust the input and destination, since that allows writing outside the current directory; 4) ins…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Agentic Mcp Server Builder」。简介:Scaffold MCP server projects and baseline tool contract checks. Use for definin…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/0x-professor/agentic-mcp-server-builder/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: agentic-mcp-server-builder
description: Scaffold MCP server projects and baseline tool contract checks. Use for defining tool schemas, generating starter server layouts, and validating MCP-ready structure.
---
# Agentic MCP Server Builder
## Overview
Create a minimal MCP server scaffold and contract summary from a structured tool list.
## Workflow
1. Define server name and tool list with descriptions.
2. Generate scaffold file map and tool contract summary.
3. Optionally materialize starter files when not in dry-run mode.
4. Review generated contract checks before adding business logic.
## Use Bundled Resources
- Run `scripts/scaffold_mcp_server.py` to generate starter artifacts.
- Read `references/mcp-scaffold-guide.md` for file layout and contract checks.
## Guardrails
- Keep tool boundaries explicit and minimal.
- Include deterministic outputs and clear input/output schemas.