- Notifications
You must be signed in to change notification settings - Fork1k
feat: add support for streamable http in the mcp-run-python tool#2230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Conversation
PR Change SummaryAdded support for streamable HTTP in the MCP Run Python Tool, enhancing its functionality for stateful requests without requiring a persistent connection.
Modified Files
How can I customize these reviews?Check out theHyperlint AI Reviewer docs for more information on how to customize the review. If you just want to ignore it on this PR, you can add the Note specifically for link checks, we only check the first 30 links in a file and we cache the results for several hours (for instance, if you just added a page, you might experience this). Our recommendation is to add |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
@Kigstn Thanks, looks great! Just one question
@@ -23,6 +24,8 @@ | |||
'-N', | |||
'-R=mcp-run-python/node_modules', | |||
'-W=mcp-run-python/node_modules', | |||
'-R=node_modules', | |||
'-W=node_modules', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Why were these additions necessary?
This PR adds support for streamable HTTP in the MCP Run Python Tool.
Implementation logic is 80% copied fromthe reference implementation, just adapated to work with the existing structure :)
Also added testing for this
Fixes#2059