forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Bump github.com/mark3labs/mcp-go from 0.18.0 to 0.30.0 #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
dependabot
wants to merge
1
commit into
main
from
dependabot/go_modules/github.com/mark3labs/mcp-go-0.30.0
Closed
Bump github.com/mark3labs/mcp-go from 0.18.0 to 0.30.0 #12
dependabot
wants to merge
1
commit into
main
from
dependabot/go_modules/github.com/mark3labs/mcp-go-0.30.0
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
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.18.0 to 0.30.0. - [Release notes](https://github.com/mark3labs/mcp-go/releases) - [Commits](mark3labs/mcp-go@v0.18.0...v0.30.0) --- updated-dependencies: - dependency-name: github.com/mark3labs/mcp-go dependency-version: 0.30.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Reviewer's GuideThis PR updates the mcp-go dependency from v0.18.0 to v0.30.0 by modifying the module requirements and regenerating the lockfile entries. Sequence Diagram for mcp-go Client OAuth Authentication FlowsequenceDiagram
participant UserApp as Client Application
participant McpGoClient as mcp-go Client
participant OAuthProvider as OAuth Provider
participant McpGoServer as mcp-go Server
UserApp->>McpGoClient: Request resource requiring authentication
McpGoClient->>McpGoClient: Check authentication status
alt OAuth Required / Token Expired
McpGoClient->>UserApp: Initiate OAuth flow (e.g., redirect to OAuthProvider)
UserApp->>OAuthProvider: User authenticates
OAuthProvider-->>UserApp: Authorization Code / ID Token
UserApp->>McpGoClient: Provide Authorization Code / ID Token
McpGoClient->>OAuthProvider: Exchange Code for Access Token (if necessary)
OAuthProvider-->>McpGoClient: Access Token
McpGoClient->>McpGoClient: Store Access Token
end
McpGoClient->>McpGoServer: API Request with Access Token in header
McpGoServer->>McpGoServer: Validate Access Token (may involve OAuthProvider)
McpGoServer-->>McpGoClient: Authenticated Response
McpGoClient-->>UserApp: Resource / Service Response
Sequence Diagram for Using the DeletePrompts Method in mcp-gosequenceDiagram
participant ClientApp as Application
participant McpGoClient as mcp-go Client
participant McpGoServer as mcp-go Server
ClientApp->>McpGoClient: Call DeletePrompts(promptIDs)
McpGoClient->>McpGoServer: HTTP DELETE /api/prompts (Payload: promptIDs)
activate McpGoServer
McpGoServer->>McpGoServer: Process prompt deletion logic
McpGoServer-->>McpGoClient: Deletion Confirmation / Status
deactivate McpGoServer
McpGoClient-->>ClientApp: Result (e.g., success/failure)
Sequence Diagram for Customizing Request Headers with mcp-go ClientsequenceDiagram
participant ClientApp as Application
participant McpGoClient as mcp-go Client
participant McpGoServer as mcp-go Server
ClientApp->>McpGoClient: Configure/Set custom header (e.g., SetRequestHeader("X-Custom-ID", "12345"))
ClientApp->>McpGoClient: Make API Call (e.g., GetSomeResource())
activate McpGoClient
McpGoClient->>McpGoServer: HTTP GET /api/some-resource (Header: "X-Custom-ID: 12345")
deactivate McpGoClient
activate McpGoServer
McpGoServer->>McpGoServer: Process request (may use "X-Custom-ID" header)
McpGoServer-->>McpGoClient: Response
deactivate McpGoServer
McpGoClient-->>ClientApp: Result
Sequence Diagram for Account ManagementsequenceDiagram
participant User
participant BankAccountAPI
participant Database
User->>BankAccountAPI: createAccount(accountDetails)
activate BankAccountAPI
BankAccountAPI->>Database: saveAccount(accountDetails)
activate Database
Database-->>BankAccountAPI: Account Created
deactivate Database
BankAccountAPI-->>User: accountId
deactivate BankAccountAPI
User->>BankAccountAPI: getAccountDetails(accountId)
activate BankAccountAPI
BankAccountAPI->>Database: findAccountById(accountId)
activate Database
Database-->>BankAccountAPI: accountDetails
deactivate Database
BankAccountAPI-->>User: accountDetails
deactivate BankAccountAPI
User->>BankAccountAPI: updateAccountDetails(accountId, newDetails)
activate BankAccountAPI
BankAccountAPI->>Database: updateAccount(accountId, newDetails)
activate Database
Database-->>BankAccountAPI: Update Success
deactivate Database
BankAccountAPI-->>User: Success Message
deactivate BankAccountAPI
User->>BankAccountAPI: deleteAccount(accountId)
activate BankAccountAPI
BankAccountAPI->>Database: deleteAccount(accountId)
activate Database
Database-->>BankAccountAPI: Deletion Success
deactivate Database
BankAccountAPI-->>User: Success Message
deactivate BankAccountAPI
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Superseded by #13. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
0 participants
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.
Bumps github.com/mark3labs/mcp-go from 0.18.0 to 0.30.0.
Release notes
Sourced from github.com/mark3labs/mcp-go's releases.
... (truncated)
Commits
9e6ccca
Formatting2c8bf2b
feat(server): persist client info in sessions (#313)0c3f535
feat: Implement OAuth in the client (#296)617c676
update5a1d3fe
add basePath76f6985
add baseUrlf101569
Docs (#325)563a9c7
Scaffold documentation site (#324)820b7a6
Feat(prompts): add DeletePrompts method to MCPServer (#320)3cdeb89
Update README.md (#323)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by Sourcery
Chores:
This change is