Skip to main content
FileSystemProvider scans a directory for Python files and automatically registers functions decorated with @tool, @resource, or @prompt. This enables a file-based organization pattern similar to Next.js routing, where your project structure becomes your component registry.

Why Filesystem Discovery

Traditional FastMCP servers require coordination between files. Either your tool files import the server to call @server.tool(), or your server file imports all the tool modules. Both approaches create coupling that some developers prefer to avoid. FileSystemProvider eliminates this coordination. Each file is self-contained—it uses standalone decorators (@tool, @resource, @prompt) that don’t require access to a server instance. The provider discovers these files at startup, so you can add new tools without modifying your server file. This is a convention some teams prefer, not necessarily better for all projects. The tradeoffs:
  • No coordination: Files don’t import the server; server doesn’t import files
  • Predictable naming: Function names become component names (unless overridden)
  • Development mode: Optionally re-scan files on every request for rapid iteration

Quick Start

Create a provider pointing to your components directory, then pass it to your server. Use Path(__file__).parent to make the path relative to your server file.
In your components/ directory, create Python files with decorated functions.
When the server starts, FileSystemProvider scans the directory, imports all Python files, and registers any decorated functions it finds.

Decorators

FastMCP provides standalone decorators that mark functions for discovery: @tool from fastmcp.tools, @resource from fastmcp.resources, and @prompt from fastmcp.prompts. These support the full syntax of server-bound decorators—all the same parameters work identically.

@tool

Mark a function as a tool. The function name becomes the tool name by default.
Customize the tool with optional parameters.
The decorator supports all standard tool options: name, title, description, icons, tags, output_schema, annotations, and meta.

@resource

Mark a function as a resource. Unlike @tool, the @resource decorator requires a URI argument.
URIs with template parameters create resource templates. The provider automatically detects whether to register a static resource or a template based on whether the URI contains {parameters} or the function has arguments.
The decorator supports: uri (required), name, title, description, icons, mime_type, tags, annotations, and meta.

@prompt

Mark a function as a prompt template.
The decorator supports: name, title, description, icons, tags, and meta.

Directory Structure

The directory structure is purely organizational. The provider recursively scans all .py files regardless of which subdirectory they’re in. Subdirectories like tools/, resources/, and prompts/ are optional conventions that help you organize code.
You can also put all components in a single file or organize by feature rather than type.

Discovery Rules

The provider follows these rules when scanning:

Package Imports

If your directory contains an __init__.py file, the provider imports files as proper Python package members. This means relative imports work correctly within your components directory.
Without __init__.py, files are imported directly using importlib.util.spec_from_file_location.

Reload Mode

During development, you may want changes to component files to take effect without restarting the server. Enable reload mode to re-scan the directory on every request.
With reload=True, the provider:
  1. Re-discovers all Python files on each request
  2. Re-imports modules that have changed
  3. Updates the component registry with any new, modified, or removed components
Reload mode adds overhead to every request. Use it only during development, not in production.

Error Handling

When a file fails to import (syntax error, missing dependency, etc.), the provider logs a warning and continues scanning other files. Failed imports don’t prevent the server from starting.
The provider tracks which files have failed and only re-logs warnings when the file’s modification time changes. This prevents log spam when a broken file is repeatedly scanned in reload mode.

Example Project

A complete example is available in the repository at examples/filesystem-provider/. The structure demonstrates the recommended organization.
The server entry point is minimal.
Run with fastmcp run examples/filesystem-provider/server.py or inspect with fastmcp inspect examples/filesystem-provider/server.py.