mcp-builder
Model Context Protocol(MCP)サーバーを構築し、Claudeおよびその他のLLMにツールやリソースを提供するためのエキスパートガイドです。新しいMCPサーバーの構築、APIのMCPツール化、Claudeへのカスタムツール統合、外部サービスのMCP経由での提供が必要な場合に、このスキルを活用できます。以下のキーワードで即座に発動します:「MCPサーバー」「MCPを構築」「Model Context Protocol」「Claudeのカスタムツール」「APIをMCPでラップ」「MCPツール」「MCPリソース」「MCPを作成」「ClaudeへAPIを公開」「MCP統合」「ツールサーバー」「MCP SDK」「LLM向けツール」。「ClaudeにAPIを呼び出させたい」または「MCPサーバーを作ってほしい」といった要望があれば、必ずこのスキルが発動します。
description の原文を見る
Expert guide for building MCP (Model Context Protocol) servers that expose tools and resources to Claude and other LLMs. Use this skill any time a new MCP server needs to be built, an API needs to be wrapped as MCP tools, Claude needs custom tools integrated, or an external service needs to be made available via MCP. Trigger immediately on: "MCP server", "build MCP", "Model Context Protocol", "custom tools for Claude", "wrap API as MCP", "MCP tools", "MCP resources", "create MCP", "expose API to Claude", "MCP integration", "tool server", "MCP SDK", "tools for LLM". If someone says "I want Claude to call my API" or "build me an MCP server" this skill MUST trigger.
SKILL.md 本文
MCPサーバービルダー
LLMが外部サービスと連携できるMCPサーバーを作成します。
プロセス概要
フェーズ1:リサーチ&計画
- MCPプロトコルを学習:
https://modelcontextprotocol.io/sitemap.xml - スタックを選択:TypeScript(推奨)またはPython
- ツールの対象範囲を計画:APIエンドポイントをツールにマッピング
フェーズ2:実装
プロジェクト構成(TypeScript)
my-mcp-server/
├── src/
│ ├── index.ts # サーバーエントリーポイント
│ ├── tools/ # ツール実装
│ └── utils/ # 共有ユーティリティ
├── package.json
└── tsconfig.json
ツール実装
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { z } from "zod";
const server = new McpServer({ name: "my-server", vers
...
詳細情報
- 作者
- findbene
- リポジトリ
- findbene/skills
- ライセンス
- 不明
- 最終更新
- 2026/5/11
Source: https://github.com/findbene/skills / ライセンス: 未指定