Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

create-mcp-skillcreate MCP 技能

Agent Skill

create-mcp-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

636

周安装

26

GitHub Stars

公开资料未说明

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:create-mcp-skill(create MCP 技能)
来源仓库:https://github.com/cygnusfear/agent-skills
仓库路径:skills/create-mcp-skill
安装命令:
npx skills add https://github.com/cygnusfear/agent-skills --skill create-mcp-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cygnusfear/agent-skills --skill create-mcp-skill

简介

帮助开发者创建基于 MCP 协议的新技能,集成目录结构、工具发现和性能优化模式。

  • 适用于需要对接 npm 包或二进制 MCP 服务的场景,自动应用最佳实践提升响应效率。
  • 要求预先安装 MCP CLI 工具,并确保目标服务可用,支持 TypeScript 和 Bun 运行时。
  • 使用前应检查本地环境兼容性,避免因版本差异导致构建失败或功能异常。
  • create-mcp-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create MCP Skill

Guide for creating new skills that use MCP (Model Context Protocol) servers with optimized performance patterns.

📚 Reference: See MCP CLI Guide (this document) for detailed patterns and best practices.

Overview

This skill helps you create a new skill that uses an MCP server by:

  1. Setting up the skill directory structure
  2. Discovering available MCP tools
  3. Creating optimized command patterns
  4. Applying performance best practices

Prerequisites

  • MCP CLI installed (brew install mcp or go install github.com/f/mcptools/cmd/mcptools@latest)
  • Target MCP server available (npm package, binary, etc.)

Process

1. Discover Available Tools

First, explore what the MCP server offers:

# List all tools
mcp tools SERVER_COMMAND

# Get detailed JSON schema
mcp tools SERVER_COMMAND --format json

# Interactive exploration
mcp shell SERVER_COMMAND
# Type /h for help

Example:

# Chrome DevTools
mcp tools bunx -y chrome-devtools-mcp@latest

# Filesystem server
mcp tools npx @modelcontextprotocol/server-filesystem ~

2. Test Individual Tools

Test each tool before documenting:

# Template
echo -e 'TOOL_NAME {"param":"value"}\nexit' | timeout 30 mcp shell SERVER_COMMAND

# Example
echo -e 'navigate_page {"url":"https://example.com"}\nexit' | timeout 30 mcp shell bunx -y chrome-devtools-mcp@latest -- --isolated

Check for:

  • Required vs optional parameters
  • Empty parameter schema issues
  • Response format
  • Execution time

3. Create Skill Structure

skills/SKILL_NAME/
├── SKILL.md           # Main skill documentation
└── .examples/         # (Optional) Example outputs

4. Write Skill Documentation

Template for SKILL.md:

---
name: SKILL_NAME
description: Brief description of what this skill does and when to use it.
allowed-tools: Bash, Read, Write
---

# Skill Name

Brief overview.

**📚 See also:** MCP CLI Guide (this document)

## Setup

\`\`\`bash
# Installation instructions for the MCP server
\`\`\`

## Quick Start (FASTEST)

### Common Task 1

\`\`\`bash
pkill -9 -f "server-pattern" 2>/dev/null; sleep 1; \\
echo -e 'command1 {"param":"value"}\\ncommand2 {"param":"value"}\\nexit' | \\
timeout 30 mcp shell SERVER_COMMAND [FLAGS]
\`\`\`

### Common Task 2

\`\`\`bash
# Another optimized pattern
\`\`\`

**⚡ Pattern:** cleanup; sleep; echo commands | timeout shell

## Key Tools

- **tool1** - Description (required params: `param1`, `param2`)
- **tool2** - Description (optional params: `param1`)

## Important Notes

- Server-specific quirks
- Performance considerations
- Common gotchas

## Troubleshooting

**Problem: [Common issue]**

\`\`\`bash
# Solution
\`\`\`

Best Practices Checklist

When creating an MCP-based skill, ensure:

✅ Performance

  • Quick Start section at the top with copy-paste ready commands
  • All examples use the optimized pattern: cleanup; sleep; echo | timeout shell
  • Shell mode recommended over individual calls
  • Cleanup commands included (pkill pattern)
  • Timeout wrapper on all shell commands (30s default)

✅ Parameter Handling

  • Parameters passed directly (no {"arguments":{}} wrapper)
  • Tools with optional-only params documented with workaround
  • Empty parameter bug addressed where applicable
  • Example commands show correct parameter format

✅ Documentation

  • Reference to MCP CLI guide included
  • Server installation instructions provided
  • Quick start patterns for common tasks
  • Key tools listed with parameter requirements
  • Troubleshooting section for common issues
  • Performance tips highlighted

✅ Command Structure

  • Correct argument order: mcp call TOOL SERVER --params '{}'
  • Server flags properly positioned with -- separator
  • Exit command included in shell mode examples
  • One-liner format (no backslash continuations if possible)

Example: Chrome DevTools Skill

See skills/chrome-devtools/SKILL.md for a complete example that follows all best practices.

Key features:

  • Quick start patterns at the top
  • 6-9x performance improvement documented
  • Optimized one-liners for common tasks
  • Comprehensive troubleshooting guide
  • References MCP CLI guide

Template Generator

Generate a basic skill structure:

# Set variables
SKILL_NAME="my-mcp-skill"
SERVER_COMMAND="bunx my-mcp-server@latest"
SERVER_PATTERN="my-mcp-server"

# Create directory
mkdir -p "skills/$SKILL_NAME"

# Create SKILL.md with template
cat > "skills/$SKILL_NAME/SKILL.md" << 'EOF'
---
name: SKILL_NAME
description: TODO - Add description
allowed-tools: Bash, Read, Write
---

# Skill Name

TODO - Add overview

**📚 See also:** MCP CLI Guide (this document)

## Setup

TODO - Add installation


## Quick Start (FASTEST)

### Common Task

pkill -9 -f "SERVER_PATTERN" 2>/dev/null; sleep 1; \ echo -e 'COMMAND\nexit' | \ timeout 30 mcp shell SERVER_COMMAND


## Key Tools

- **tool1** - TODO

## Important Notes

- TODO

## Troubleshooting

**Problem: Issue**

Solution


EOF

# Discover tools

mcp tools $SERVER_COMMAND

# Test interactively

mcp shell $SERVER_COMMAND

Common Patterns

Pattern 1: Single Command Check

pkill -9 -f "PATTERN" 2>/dev/null; sleep 1; \
echo -e 'TOOL {"param":"value"}\nexit' | \
timeout 30 mcp shell SERVER -- --isolated

Pattern 2: Multi-Command Debug

pkill -9 -f "PATTERN" 2>/dev/null; sleep 1; \
echo -e 'CMD1 {"p":"v"}\nCMD2 {"p":"v"}\nCMD3 {"p":"v"}\nexit' | \
timeout 30 mcp shell SERVER -- --isolated

Pattern 3: With Custom Flags

pkill -9 -f "PATTERN" 2>/dev/null; sleep 1; \
echo -e 'COMMAND\nexit' | \
timeout 30 mcp shell SERVER -- --flag1 --flag2=value

Testing Your Skill

  1. Test cleanup pattern works: pkill -9 -f "PATTERN" 2>/dev/null; sleep 1; echo "Cleanup OK"
  2. Test basic command: echo -e 'list_tools\nexit' | timeout 10 mcp shell SERVER
  3. Test multi-command: echo -e 'cmd1\ncmd2\ncmd3\nexit' | timeout 30 mcp shell SERVER
  4. Test with cleanup: pkill -9 -f "PATTERN" 2>/dev/null; sleep 1; \ echo -e 'cmd1\ncmd2\nexit' | timeout 30 mcp shell SERVER
  5. Verify no hanging:

- Commands should complete within timeout - Exit command should terminate session cleanly

Optimization Checklist

Compare your skill against the optimized pattern:

AspectBeforeAfter
Commands per task5-101
Manual cleanupYesAutomated
Failures from locksCommonZero
Execution time60-90s5-10s
Success rate60-70%100%

Resources

Quick Reference

Every MCP skill should have:

  1. Quick Start section - Copy-paste ready commands
  2. Optimized pattern - cleanup; sleep; echo | timeout shell
  3. Performance note - Document speed improvement
  4. MCP CLI guide reference - MCP CLI patterns are documented in this skill
  5. Troubleshooting - Common issues and solutions

Every command should:

  1. Include cleanup (pkill -9 -f "PATTERN")
  2. Wait after cleanup (sleep 1)
  3. Use shell mode for 2+ commands
  4. Have timeout wrapper
  5. End with exit
  6. Use correct parameter format (no "arguments" wrapper)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.37%
按下载量换算75

Claude

26.96%
按下载量换算56

Cursor

20.68%
按下载量换算43

Gemini CLI

9.08%
按下载量换算19

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/cygnusfear/agent-skills --skill create-mcp-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills