Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

mcp-builderMCP 构建器

Agent Skill

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

总安装

608

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add bobmatnyc/claude-mpm --skill "mcp-builder"

简介

MCP Builder 用于发现并安装其他 AI 代理的技能模块。

  • 适用于扩展 Codex、Claude、Cursor 等平台的功能生态。
  • 支持技能索引浏览与一键安装,提升开发效率。mcp-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需具备网络访问权限以拉取远程技能仓库内容。
  • 安装前建议查看技能文档与维护状态以确保兼容性。

SKILL.md

MCP Server Development Guide

Overview

Build high-quality MCP (Model Context Protocol) servers that enable LLMs to accomplish real-world tasks through well-designed tools. Quality is measured not by API coverage, but by how effectively agents can use your tools to complete realistic workflows.

Core insight: MCP servers expose tools for AI agents, not human users. Design for agent constraints (limited context, no visual UI, workflow-oriented) rather than human convenience.

When to Use This Skill

Activate when:

  • Building MCP servers for external API integration
  • Adding tools to existing MCP servers
  • Improving MCP server tool design for better agent usability
  • Creating evaluations to test MCP server effectiveness
  • Debugging why agents struggle with your MCP tools

Language Support:

  • Python: FastMCP framework (recommended for rapid development)
  • Node/TypeScript: MCP SDK (recommended for production services)

The Iron Law

DESIGN FOR AGENTS, NOT HUMANS

Every tool must optimize for:
- Context efficiency (agents have limited tokens)
- Workflow completion (not just API calls)
- Actionable errors (guide agents to success)
- Natural task subdivision (how agents think)

If your tools are just thin API wrappers, you're violating the Iron Law.

Core Principles

  1. Agent-Centric Design First: Study design principles before coding. Tools should enable workflows, not mirror APIs.
  2. Research-Driven Planning: Load MCP docs, SDK docs, and exhaustive API documentation before writing code.
  3. Evaluation-Based Iteration: Create realistic evaluations early. Let agent feedback drive improvements.
  4. Context Optimization: Every response token matters. Default to concise, offer detailed when needed.
  5. Actionable Errors: Error messages should teach agents correct usage patterns.

Quick Start

Phase 1: Research and Planning (40% of effort)

  1. Study Design Principles: Load design_principles.md to understand agent-centric design
  2. Load Protocol Docs: Fetch https://modelcontextprotocol.io/llms-full.txt for MCP specification
  3. Study SDK Docs: Load Python or TypeScript SDK documentation from GitHub
  4. Study API Exhaustively: Read ALL API documentation, endpoints, authentication, rate limits
  5. Create Implementation Plan: Define tools, shared utilities, pagination strategy, error handling

See workflow.md for complete Phase 1 steps.

Phase 2: Implementation (30% of effort)

  1. Setup Project: Create structure following language-specific guide
  2. Build Shared Utilities: API helpers, error handlers, formatters BEFORE tools
  3. Implement Tools: Use Pydantic (Python) or Zod (TypeScript) for validation
  4. Follow Best Practices: Load language-specific guide for patterns

See workflow.md for complete Phase 2 steps and language guides.

Phase 3: Review and Refine (15% of effort)

  1. Code Quality Review: Check DRY, composability, consistency, type safety
  2. Test Build: Verify syntax, imports, build process
  3. Quality Checklist: Use language-specific checklist

See workflow.md for complete Phase 3 steps.

Phase 4: Create Evaluations (15% of effort)

  1. Understand Purpose: Evaluations test if agents can answer realistic questions using your tools
  2. Create 10 Questions: Complex, read-only, independent, verifiable questions
  3. Verify Answers: Solve yourself to ensure stability and correctness
  4. Run Evaluation: Use provided scripts to test agent effectiveness

See evaluation.md for complete evaluation guidelines.

Navigation

Core Design and Workflow

  • 🎯 Design Principles - Agent-centric design philosophy: workflows over APIs, context optimization, actionable errors, natural task subdivision. Read FIRST before implementation.
  • 🔄 Complete Workflow - Detailed 4-phase development process with step-by-step instructions, decision trees, and when to load each reference file.

Universal MCP Guidelines

  • 📋 MCP Best Practices - Naming conventions, response formats, pagination, character limits, security, tool annotations, error handling. Applies to all MCP servers.

Language-Specific Implementation

  • 🐍 Python Implementation - FastMCP patterns, Pydantic validation, async/await, complete examples, quality checklist. Load during Phase 2 for Python servers.
  • ⚡ TypeScript Implementation - MCP SDK patterns, Zod validation, project structure, complete examples, quality checklist. Load during Phase 2 for TypeScript servers.

Evaluation and Testing

  • ✅ Evaluation Guide - Creating realistic questions, answer verification, XML format, running evaluations, interpreting results. Load during Phase 4.

Key Reminders

  • Research First: Spend 40% of time researching before coding
  • Agent-Centric: Design for AI workflows, not API completeness
  • Context Efficient: Every token counts - default concise, offer detailed
  • Actionable Errors: Guide agents to correct usage
  • Shared Utilities: Extract common code - avoid duplication
  • Evaluation-Driven: Create evals early, iterate based on feedback
  • MCP Servers Block: Never run servers directly - use evaluation harness or tmux

Red Flags - STOP

If you catch yourself:

  • "Just wrapping these API endpoints directly"
  • "Returning all available data fields"
  • "Error message just says what failed" (not how to fix)
  • Starting implementation without reading design principles
  • Coding before loading MCP protocol documentation
  • Creating tools without knowing agent use cases
  • Skipping evaluation creation
  • Running python server.py directly (will hang forever)

ALL of these mean: STOP. Return to design principles and workflow.

Integration with Other Skills

  • systematic-debugging: Debug MCP server issues methodically
  • test-driven-development: Create failing tests before implementation
  • verification-before-completion: Verify build succeeds before claiming completion
  • defense-in-depth: Add input validation at multiple layers

Real-World Impact

From MCP server development experience:

  • Well-designed servers: 80-90% task completion rate by agents
  • API wrapper approach: 30-40% task completion rate
  • Context-optimized responses: 3x more information in same token budget
  • Actionable errors: 60% reduction in agent retry attempts
  • Evaluation-driven iteration: 2-3x improvement in agent success rate

Remember: The quality of an MCP server is measured by how well it enables LLMs to accomplish realistic tasks, not by how comprehensively it wraps an API.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

28.81%
按下载量换算19

trae

24.74%
按下载量换算16

OpenCode

17.08%
按下载量换算11

Cursor

13.88%
按下载量换算9

kiro-cli

7.92%
按下载量换算5

Codex

3.59%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills