Remove unused include_tags/exclude_tags settings (#2756)

This commit is contained in:
Jeremiah Lowin 2025-12-26 15:04:41 -05:00 committed by GitHub
commit 7d0b49bfb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -327,31 +327,6 @@ class Settings(BaseSettings):
),
] = None
include_tags: Annotated[
set[str] | None,
Field(
description=inspect.cleandoc(
"""
If provided, only components that match these tags will be
exposed to clients. A component is considered to match if ANY of
its tags match ANY of the tags in the set.
"""
),
),
] = None
exclude_tags: Annotated[
set[str] | None,
Field(
description=inspect.cleandoc(
"""
If provided, components that match these tags will be excluded
from the server. A component is considered to match if ANY of
its tags match ANY of the tags in the set.
"""
),
),
] = None
include_fastmcp_meta: Annotated[
bool,
Field(