Bump github.com/mark3labs/mcp-go from 0.18.0 to 0.30.0#12
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Bump github.com/mark3labs/mcp-go from 0.18.0 to 0.30.0#12dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
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
|
Author
|
Superseded by #13. |
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.
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
9e6cccaFormatting2c8bf2bfeat(server): persist client info in sessions (#313)0c3f535feat: Implement OAuth in the client (#296)617c676update5a1d3feadd basePath76f6985add baseUrlf101569Docs (#325)563a9c7Scaffold documentation site (#324)820b7a6Feat(prompts): add DeletePrompts method to MCPServer (#320)3cdeb89Update 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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