enhance WFS search functionality to include relevance scores#34
Merged
Conversation
mborne
approved these changes
Apr 10, 2026
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.
closes #28
Summary
This PR updates
gpf_wfs_search_typesto propagate relevance scores returned by@ignfab/gpf-schema-store.The tool now returns an optional
scorefield for each search result when the catalog provides it. When no score is available, the field is omitted from the response.Changes
@ignfab/gpf-schema-storefrom0.1.2to0.1.3WfsClientto use the scored catalog search APIsearchFeatureTypes()helper in favor ofsearchFeatureTypesWithScores()gpf_wfs_search_typesoutput schema with an optionalscorescorewhen it isundefinedgpf_wfs_search_typescan return relevance scoresscorepropagation in the MCP tool responsescorewhen the catalog does not provide oneExample
Before:
{ "results": [ { "id": "BDTOPO_V3:batiment", "title": "Batiment", "description": "..." } ] }After:
{ "results": [ { "id": "BDTOPO_V3:batiment", "title": "Batiment", "description": "...", "score": 12.5 } ] }If no score is returned by the catalog, the
scorefield is not included.Validation
npm test -- --runTestsByPath test/gpf/wfs.test.tsnpm test -- --runTestsByPath test/tools/wfs.test.ts