Fastmcp Skill
ไฝฟ็จ FastMCP v3ๆๅปบ MCP ๆๅกๅจ็ไธๅฎถๆๅ
Ask AI about Fastmcp Skill
Powered by Claude ยท Grounded in docs
I know everything about Fastmcp Skill. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
fastmcp-skill
Claude Code skill for building MCP servers with FastMCP v3 (Prefect).
What is this?
A Claude Code custom skill that gives Claude expert knowledge about FastMCP v3 โ the standard Python framework for building Model Context Protocol servers.
When triggered, Claude gains access to the full FastMCP v3 documentation (331 files, 2.8MB) and curated reference guides, enabling it to write correct MCP server code without hallucinating APIs.
What it covers
- Tools, Resources, Prompts (
@mcp.tool,@mcp.resource,@mcp.prompt) - Context, Dependency Injection, Middleware
- Server Composition (
mount,ProxyProvider,SkillsProvider) - Testing (in-memory
Client, HTTP transport) - Deployment (stdio, HTTP, ASGI, FastAPI)
- Authentication (OAuth, token verification)
- CLI (
fastmcp run,fastmcp inspect,fastmcp install) - Integrations (Claude Desktop, Cursor, OpenAI, etc.)
- Full Python SDK reference
Installation
Option 1: Clone into your project's .claude/skills/
git clone https://github.com/jxnxts/fastmcp-skill.git .claude/skills/fastmcp
Then add to your project's .claude/settings.json:
{
"skills": {
"fastmcp": {
"path": ".claude/skills/fastmcp"
}
}
}
Option 2: Global installation
git clone https://github.com/jxnxts/fastmcp-skill.git ~/.claude/skills/fastmcp
Then add to your global ~/.claude/settings.json:
{
"skills": {
"fastmcp": {
"path": "~/.claude/skills/fastmcp"
}
}
}
Usage
Claude Code automatically triggers this skill when you mention:
- "FastMCP", "MCP server", "Model Context Protocol"
@mcp.tool,@mcp.resource,@mcp.prompt- "add a tool", "create an MCP endpoint"
- Any MCP server creation, modification, or debugging task
You can also invoke it explicitly:
/fastmcp
Structure
fastmcp-skill/
โโโ SKILL.md # Skill definition + quick reference
โโโ references/ # Curated topic guides
โ โโโ tools.md
โ โโโ resources-prompts.md
โ โโโ context-di-middleware.md
โ โโโ composition-providers.md
โ โโโ testing.md
โ โโโ deployment.md
โโโ docs/ # Full FastMCP v3 documentation (331 files)
โโโ python-sdk/ # Complete Python SDK reference
โโโ servers/ # Server components docs
โโโ clients/ # Client usage docs
โโโ integrations/ # IDE & platform integrations
โโโ cli/ # CLI commands
โโโ deployment/ # Deployment guides
โโโ ...
License
MIT
