
Mcp Builder
- 6 repo stars
- Updated July 29, 2026
- GGPrompts/my-plugins
Build MCP servers to connect external APIs to Claude using Python FastMCP and Node SDK patterns.
About
An agent-building skill for creating MCP servers that expose external APIs to Claude, covering both Python FastMCP and Node SDK approaches. Developers use it to give agents new tools by wrapping a third-party API as a Model Context Protocol server.
- MCP server construction
- Python FastMCP patterns
- Node SDK patterns
- External API integration
Mcp Builder by the numbers
- Data as of Jul 30, 2026 (Skillselion catalog sync)
/plugin marketplace add GGPrompts/my-plugins/plugin install mcp-builder@my-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 6 |
|---|---|
| Last updated | July 29, 2026 |
| Repository | GGPrompts/my-plugins ↗ |
What it does
Build MCP servers to connect external APIs to Claude using Python FastMCP and Node SDK patterns.
README.md
MCP Builder Plugin
Build MCP servers to integrate external APIs with Claude.
Overview
The MCP Builder plugin helps you create Model Context Protocol servers:
- Python FastMCP - Quick MCP servers with FastMCP framework
- Node SDK - TypeScript/JavaScript MCP servers
- Best Practices - Tool design, error handling, security
- Evaluation - Testing and validating MCP servers
Installation
cp -r my-plugins/plugins/mcp-builder ~/.claude/plugins/
Skills
| Skill | Purpose |
|---|---|
mcp-servers |
Complete guide for building MCP servers |
Reference Topics
| Reference | Content |
|---|---|
python_mcp_server.md |
FastMCP Python server patterns |
node_mcp_server.md |
Node.js SDK server patterns |
mcp_best_practices.md |
Tool design and security |
evaluation.md |
Testing MCP servers |
Scripts
| Script | Purpose |
|---|---|
connections.py |
MCP connection utilities |
evaluation.py |
Server evaluation helpers |
Quick Start
# Get MCP building guidance
/mcp-builder:mcp-servers
# Python FastMCP example:
from fastmcp import FastMCP
mcp = FastMCP("My Server")
@mcp.tool()
def my_tool(param: str) -> str:
"""Tool description."""
return f"Result: {param}"
MCP Server Structure
my-mcp-server/
├── server.py # Main server file
├── tools/ # Tool implementations
├── resources/ # MCP resources
└── pyproject.toml # Dependencies
License
MIT License