Update mcp-api-gateway: bump pin and expose new configuration options#2155
Open
rflpazini wants to merge 1 commit intodocker:mainfrom
Open
Update mcp-api-gateway: bump pin and expose new configuration options#2155rflpazini wants to merge 1 commit intodocker:mainfrom
rflpazini wants to merge 1 commit intodocker:mainfrom
Conversation
Bump source.commit to d22011aa (was f197f8db) and update the config section to expose all new env vars added in the upstream refactor: BASE_URL, TOOL_MODE, SCHEMA_MODE, PATH_PREFIX, TAGS, TIMEOUT, and MAX_RETRIES. Adds parameter descriptions and marks NAME/SWAGGER_URL as required. Supersedes docker#2054 which only bumps the commit pin.
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
Updates the
mcp-api-gatewayserver entry to reflect the major upstream refactor (rflpazini/mcp-api-gateway#1):source.commit:f197f8db→d22011aa(2 new commits since the original pin)API_1_BASE_URL— override the base URL from the specAPI_1_TOOL_MODE—individualorgrouped(reduces a 1090-tool/2.2MB payload to 53 tools/184KB)API_1_SCHEMA_MODE—fullorcompact(72% payload reduction)API_1_PATH_PREFIX— comma-separated path prefixes to filter endpointsAPI_1_TAGS— comma-separated OpenAPI tags to filter endpointsAPI_1_TIMEOUT— request timeout in millisecondsAPI_1_MAX_RETRIES— retry attempts for 429/5xx errors with exponential backoffapi_1_name,api_1_swagger_url)What changed upstream
The upstream repo received a major refactor that:
index.jsinto focused modules (config, schema-builder, api-registry, api-client, server)Supersedes
This PR supersedes #2054 (automated pin bump) which only updates the commit hash without exposing the new configuration options.