基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/sandraschi/openmanus-mcp --skill mcp-builder命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | mcp-builder |
| description | Scaffold and harden a FastMCP 3.1 MCP server with portmanteau tools, REST mirror, and docs |
Use when the user asks to create or refactor an MCP server.
pyproject.toml, ruff, optional pytest.operation parameter over dozens of thin wrappers.success, message or error, and actionable fields.mcpb.json + packaging standards if shipping to a marketplace.from fastmcp import FastMCP
mcp = FastMCP("example")
@mcp.tool()
async def example_ops(operation: str, payload: str = "") -> dict:
"""EXAMPLE_OPS — Portmanteau surface.
Args:
operation: Sub-command name.
payload: JSON or plain text parameter bag.
Returns:
Rich response dict.
"""
return {"success": True, "operation": operation, "echo": payload}