在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用概览
MCP (Model Context Protocol) 服务器构建指南
安装命令
npx skills add https://github.com/liyecom/liye-ai --skill mcp-builder复制此命令并粘贴到 Claude Code 中以安装该技能
星标34
分支4
更新时间2026年1月16日 15:59
SKILL.md
readonlyMCP (Model Context Protocol) 服务器构建指南
npx skills add https://github.com/liyecom/liye-ai --skill mcp-builder复制此命令并粘贴到 Claude Code 中以安装该技能
SFC patched skill. Use when "ui-ux" is relevant.
内容研究与写作助手
视觉设计与艺术创作工具
主题样式工厂 - 统一视觉风格应用
Translate human UI/UX requirements into site-design.contract.yaml
CSV 数据自动分析与洞察生成工具
| name | mcp-builder |
| description | MCP (Model Context Protocol) 服务器构建指南 |
| domain | 00_Core_Utilities |
| category | development-tools |
| version | 1.0.0 |
| status | active |
| source | awesome-claude-skills |
| source_url | https://github.com/ComposioHQ/awesome-claude-skills |
| license | Apache-2.0 |
| skeleton | workflow |
| triggers | {"commands":["/mcp-builder"],"patterns":["mcp-builder"]} |
| inputs | {"required":[],"optional":[]} |
| outputs | {"artifacts":["SKILL.md"]} |
| failure_modes | [{"symptom":"Missing required inputs or context","recovery":"Provide the missing info and retry"},{"symptom":"Unexpected tool/runtime failure","recovery":"Rerun with minimal steps; escalate after 3 failures"}] |
| verification | {"evidence_required":true,"how_to_verify":["node .claude/scripts/sfc_lint.mjs <skill_dir>"]} |
| governance | {"constitution":"_meta/governance/SKILL_CONSTITUTION_v0.1.md","policy":"_meta/policies/DEFAULT_SKILL_POLICY.md"} |
来源: ComposioHQ/awesome-claude-skills 适配: LiYe OS 三层架构
指导创建高质量的 Model Context Protocol (MCP) 服务器,用于将外部 API 和服务集成到 LLM 中。
当 Claude 需要帮助构建 MCP 服务器时:
from fastmcp import FastMCP
mcp = FastMCP("my-server")
@mcp.tool()
def my_tool(param: str) -> str:
"""工具描述"""
return f"结果: {param}"
import { McpServer } from '@modelcontextprotocol/sdk/server';
const server = new McpServer({
name: 'my-server',
version: '1.0.0'
});
server.tool('my_tool', 'Tool description', {
param: { type: 'string', description: 'Parameter' }
}, async (args) => {
return { result: `Result: ${args.param}` };
});
用户: 帮我创建一个查询 PostgreSQL 的 MCP 服务器
Claude: [使用 mcp-builder 技能设计架构,生成代码框架]
用户: 我想让 Claude 能调用天气 API
Claude: [使用 mcp-builder 技能创建 weather-mcp-server]
用户: 给 SellerSprite MCP 添加新的工具
Claude: [使用 mcp-builder 技能分析现有结构,设计新工具]
此技能被以下业务域引用:
LiYe OS 已有 3 个 MCP 服务器可作为参考:
src/runtime/mcp/servers/amazon/sellersprite_server.pysrc/runtime/mcp/servers/knowledge/qdrant_server.pysrc/runtime/mcp/servers/data/ (数据层)Created: 2025-12-28 | Adapted for LiYe OS