fix: add root Dockerfile for Glama MCP evaluation#1
Merged
Conversation
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
Dockerfilethat launches the publishedqueryshield-mcp==1.0.1stdio MCP serverQUERYSHIELD_API_KEYWhy
punkpeye/awesome-mcp-servers#5852is currently blocked on Glama quality-score evaluation. The repo already had a Dockerfile underpackages/queryshield-mcp/, but Glama/awesome-mcp guidance asks for a proper Dockerfile for evaluation. This PR exposes the same slim MCP image at the repository root so directory evaluators can discover it without guessing the nested package path.Validation
uv run --with queryshield-mcp==1.0.1 python - <<'PY' ...importedqueryshield_mcp.serverand confirmed the FastMCP server name isQueryShielduv run --with pytest --with sqlglot --with sqlalchemy --with fastapi --with 'uvicorn[standard]' --with cryptography --with fastmcp --with httpx --with pydantic --with pydantic-settings --with python-dotenv --with python-multipart --with stripe --with sendgrid --with redis python -m pytest tests/ -q→ 66 passedpackages/queryshield-mcp/Dockerfile, usesqueryshield-mcp==1.0.1, entrypoint isqueryshield-mcp, README text is scope-limited, and no secret literals were addedgit diff --check→ cleanNote: local Docker daemon was not running on this host, so I could not run a live
docker build; the root Dockerfile is an exact copy of the existing nested MCP Dockerfile and installs the released PyPI package.