Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ jobs:
- name: Set up Python
run: uv python install

- name: Install project dependencies
- name: Install developers dependencies
working-directory: ./developers
run: uv sync --locked --all-extras --dev

- name: Install agents dependencies
working-directory: ./agents
run: uv sync --locked --all-extras --dev

- name: Run integration tests
working-directory: ./developers
run: uv run pytest tests/integration/
11 changes: 5 additions & 6 deletions agents/mcp_materialize_agents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ async def configure(conn):
class DataProduct(BaseModel):
name: str = Field(
description=(
'Fully qualified name of the data product with double quotes '
"Fully qualified name of the data product with double quotes "
'(e.g. \'"database"."schema"."view_name"\'). '
'Use this exact name when querying - it\'s ready for SQL.'
"Use this exact name when querying - it's ready for SQL."
)
)
cluster: str = Field(
Expand All @@ -119,9 +119,9 @@ class DataProduct(BaseModel):
class FullDataProduct(BaseModel):
name: str = Field(
description=(
'Fully qualified name with double quotes '
"Fully qualified name with double quotes "
'(e.g. \'"database"."schema"."view_name"\'). '
'Use this exact name in queries.'
"Use this exact name in queries."
)
)
cluster: str = Field(
Expand Down Expand Up @@ -191,8 +191,7 @@ async def get_data_products() -> list[DataProduct]:
async def get_data_product_details(
name: str = Field(
description=(
"Exact name of the data product from "
"get_data_products() list"
"Exact name of the data product from get_data_products() list"
)
),
) -> FullDataProduct:
Expand Down
3 changes: 2 additions & 1 deletion agents/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ packages = ["mcp_materialize_agents"]
dev = [
"pytest-asyncio>=0.26.0",
"pytest>=8.3.5",
"hatch>=1.9.4"
"hatch>=1.9.4",
"ruff>=0.14.0",
]

[tool.ruff]
Expand Down
987 changes: 508 additions & 479 deletions agents/uv.lock

Large diffs are not rendered by default.

Loading
Loading