Feature: Add Docker Support and HTTP Transport Option#34
Open
JakobGruen wants to merge 4 commits into
Open
Conversation
- Introduced a Dockerfile for building and running the TickTick MCP server in a container. - Enhanced README with Docker usage instructions. - Updated CLI to support 'streamable-http' transport option alongside 'stdio'. - Modified server main function to accept transport type as an argument.
…amable-http transport
|
how is OAuth handled in the dockerised version? I am running into issues with it not opening the browser nor printing the url for authentication.. |
f8ecfb8 to
79f194a
Compare
Author
|
Oh, I had forgotten about the authorization process. I already had an access token and just filled it in the .env But it should work now as described in the docs. |
|
Another suggestion: |
|
Any updates on this? I would like to take advantage of using a docker version of this mcp. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces Docker support for the TickTick MCP server and enhances the CLI to allow running the server with either
stdioorstreamable-httptransport. It also updates the documentation to reflect these new capabilities.Changes
Docker Support
HTTP Support
--transportoption, allowing selection betweenstdio(default) andstreamable-httpfor HTTP server mode.Documentation
Motivation
Testing
stdioandstreamable-httptransport modes work as expected.test_server_streamable_http.pyto test the new transport mode.