refactor: rename schema types to include Request suffix and simplify …#17
Merged
refactor: rename schema types to include Request suffix and simplify …#17
Conversation
…JSON response format
There was a problem hiding this comment.
Pull Request Overview
This PR refactors schema naming to include a "Request" suffix for clarity and simplifies the structure of JSON responses returned by the server.
- Renamed schema identifiers in src/schemas.ts to consistently include the "Request" suffix.
- Updated schema references in src/mcp.ts to match the new names.
- Modified JSON responses to directly stringify data.results instead of wrapping it in an object.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/schemas.ts | Renamed and updated schema exports to use the "Request" suffix. |
| src/mcp.ts | Updated schema imports and modified JSON response formatting. |
Comments suppressed due to low confidence (1)
src/mcp.ts:143
- Confirm that 'data' consistently includes a 'results' property. If there is any case where data might not have this property, this change could lead to runtime errors.
text: JSON.stringify(data.results, null, 2),
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.
…JSON response format