Replies: 2 comments 10 replies
-
Me and my team are personally invested in using a more accessible version of the chakra ui mcp server. You can assign this to me. I have experience delivering similar projects such as KemingHe/python-dependency-manager-companion-mcp-server Note The example work I gave is Python-based, but I work with JS and use Chakra UI at work. Language is not a problem for me. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@KemingHe Feel free to open a PR for this when you have time |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Containerize Chakra UI MCP server.
Avoid dependency installation and management for local use.Problem Statement/Justification
Current usage of mcp server requires fetching full code base and installing and managing dependencies locally. This is very cumbersome.Current mcp server is stdio based and is only available as npm package. Current implementation supports HTTP-based MCP server but is never exported/made use of.
Proposed Solution or API
Build image (multi-stage) for both
amd
andarm
architectures for compatibility across machines. Consider publishing to ghcr or dockerhub. Consider adding GitHub Action scripts to automate build and publish.If publishing to dockerhub, i.e., then devs can:
and easily run locally without dependency management.
Alternatives
Keep current npm package-only setup.
Devs will have to fetch full Chakra UI MCP server code base and locally install and manage dependencies every update.Additional Information
You can reference:
https://github.com/KemingHe/strain-seer/blob/2feaa3f5dee79fad646aeb1fe3f04039953d0422/.github/workflows/docker-publish.yaml
For multi-architecture docker image build and publish to ghcr.
Note
Although the repo is Python-based, the build and publish portion of the GitHub Actions workflow is language-agnostic.
Beta Was this translation helpful? Give feedback.
All reactions