| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
HI @lorenss-m thanks for this contribution!
This change looks good to me and is a nice clean-up - just left a comment on the pyproject.toml for something I don't think we need to have in this PR?
Sorry, something went wrong.
| [tool.uv.sources] | ||
| mcp = { workspace = true } |
There was a problem hiding this comment.
Do we actually need this? I don't think any of the other examples have this.
Sorry, something went wrong.
|
Closing in favor of #1471 - thanks again for this contribution! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Motivation and Context
The workspace configuration in pyproject.toml uses glob pattern examples/servers/* expecting all items to be packages with their own pyproject.toml. However, structured_output_lowlevel.py is a standalone file, causing uv sync to fail when installing the SDK as a git dependency.
How Has This Been Tested?
Breaking Changes
None. The example functionality remains identical.
Types of changes
Checklist
Additional context
Moved examples/servers/structured_output_lowlevel.py to examples/servers/structured-output-lowlevel/mcp_structured_output_lowlevel/__main__.py with proper package structure.