mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-18 11:39:12 +02:00
* Add examples/ to ty static-analysis gate * Fix example type errors and stale SDK idioms for ty * Use typing_extensions.TypedDict for the quiz tool-param type Question is a take_quiz parameter, so FastMCP builds a Pydantic schema for it; typing.TypedDict raises PydanticUserError on Python 3.10/3.11 (only 3.12+ accepts it). ty and 3.12 runs miss this, so it slipped in. * Guard get_access_token() None case in huggingface_oauth example Caught by the ty gate this PR adds: the example, merged separately, had never been type-checked against examples/. Matches the existing aws_oauth/keycloak_oauth pattern. * Print actual YAML text in custom serializer example |
||
|---|---|---|
| .. | ||
| sample_skills | ||
| client.py | ||
| download_skills.py | ||
| README.md | ||
| server.py | ||
Skills Provider Example
This example demonstrates how to expose agent skills (like Claude Code skills) as MCP resources.
Structure
skills/
├── README.md # This file
├── server.py # MCP server that exposes skills
├── client.py # Example client that discovers and reads skills
└── sample_skills/ # Example skills directory
├── pdf-processing/
│ ├── SKILL.md # Main skill file
│ └── reference.md # Supporting documentation
└── code-review/
└── SKILL.md # Main skill file
Running the Example
-
Start the server:
uv run python examples/skills/server.py -
In another terminal, run the client:
uv run python examples/skills/client.py
How It Works
The skills provider system has a two-layer architecture:
SkillProvider- Handles a single skill folder, exposing its files as resourcesSkillsDirectoryProvider- Scans a directory, creates aSkillProviderper folderClaudeSkillsProvider- Convenience subclass for Claude Code skills (~/.claude/skills/)
For each skill, the provider exposes:
- A Resource for the main file (
skill://{name}/SKILL.md) - A Resource for a synthetic manifest (
skill://{name}/_manifest) - Supporting files via ResourceTemplate or Resources (configurable)
Progressive Disclosure
When a client lists resources, they see skill names and descriptions (from frontmatter) without fetching the full content. This keeps the discovery cost low.
By default, supporting files are exposed via ResourceTemplate (hidden from list_resources()). Set supporting_files="resources" to make them visible:
SkillsDirectoryProvider(roots=skills_dir, supporting_files="resources")
The Manifest
The _manifest resource provides a JSON listing of all files in a skill:
{
"skill": "pdf-processing",
"files": [
{"path": "SKILL.md", "size": 1234, "hash": "sha256:abc..."},
{"path": "reference.md", "size": 5678, "hash": "sha256:def..."}
]
}
This enables clients to download entire skills for local use.
Usage Examples
Single Skill
from pathlib import Path
from fastmcp import FastMCP
from fastmcp.server.providers.skills import SkillProvider
mcp = FastMCP("My Skill")
mcp.add_provider(SkillProvider(Path.home() / ".claude/skills/pdf-processing"))
mcp.run()
All Skills in a Directory
from fastmcp.server.providers.skills import SkillsDirectoryProvider
mcp = FastMCP("Skills")
mcp.add_provider(SkillsDirectoryProvider(roots=Path.home() / ".claude" / "skills"))
mcp.run()
Claude Code Skills (default location)
from fastmcp import FastMCP
from fastmcp.server.providers.skills import ClaudeSkillsProvider
mcp = FastMCP("My Skills")
mcp.add_provider(ClaudeSkillsProvider()) # Uses ~/.claude/skills/
mcp.run()