Feature implementation from commits 0d15607..701988f#4
Open
codeOwlAI wants to merge 15 commits intofeature-base-branch-4from
Open
Feature implementation from commits 0d15607..701988f#4codeOwlAI wants to merge 15 commits intofeature-base-branch-4from
codeOwlAI wants to merge 15 commits intofeature-base-branch-4from
Conversation
* Update the model to handle new changes to schema based on modelcontextprotocol#33 * Made the import script a little simpler. * Add a new updated seed file * update template mcp.json file for publisher
I originally introduced `package_canonical` into the API schema because, at the time, we were thinking to "pin" the version of the MCP server to _one_ of the referenced source code packages. We are no longer doing this (we are maintaining a separate notion of `version` unique to the MCP server), so I don't believe `package_canonical` is needed anymore. Does anyone see otherwise? This change removes all mentions in READMEs and usages in code.
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.
PR Summary
Data Model Refactoring: Entry to Server Type Transition
Overview
This PR implements a fundamental data model restructuring, replacing the
Entrytype withServertype throughout the codebase, including database interfaces, service layers, and core model definitions.Change Types
Affected Modules
database/mongo.go[]*model.Entryto[]*model.Serverin MongoDB List functionmodel/model.goservice/fake_service.go[]model.Entryto[]model.ServerBreaking Changes
model.Entrytype will need to be updated to usemodel.ServerNotes for Reviewers