René's URL Explorer Experiment


Title: SEP-975: Transport-agnostic resumable requests by jonathanhefner · Pull Request #925 · modelcontextprotocol/modelcontextprotocol · GitHub

Open Graph Title: SEP-975: Transport-agnostic resumable requests by jonathanhefner · Pull Request #925 · modelcontextprotocol/modelcontextprotocol

X Title: SEP-975: Transport-agnostic resumable requests by jonathanhefner · Pull Request #925 · modelcontextprotocol/modelcontextprotocol

Description: Preamble Transport-agnostic Resumable Requests Authors: Jonathan Hefner (jonathan@hefner.pro), Connor Peet (connor@peet.io) Abstract This proposal describes a transport-agnostic mechanism for resuming requests after disconnections. Using this mechanism: Clients and servers can disconnect and reconnect without losing progress. Servers can communicate expire-after-disconnect timeouts and reclaim resources thereafter. Clients can check request status after disconnect without having to fetch undelivered messages. All of the above works regardless of transport (HTTP, WebSocket, stdio, etc.). Motivation Addressing limitations of resumability when using the Streamable HTTP transport. SSE-based resume requires the server to send at least one event in order for the client to obtain a Last-Event-ID. If a connection is lost before an event is sent, there is no way for the client to resume the SSE stream. This is especially problematic because the spec currently says that disconnection should not be interpreted as the client cancelling its request. The spec does not indicate whether a server can delete previously missed SSE events once they have been confirmed delivered by a resume. The spec could explicitly allow this, but resuming is done via HTTP GET, and HTTP GET requests should be read-only. There is no mechanism for a server to communicate that it will expire a request after a certain duration of client inactivity. Extending resumability to other transports. Because resumability is defined by the transport layer, the burden of creating new or custom transports is higher. If each transport defines its own version of resumability, it is more difficult to develop MCP features without accounting for (or relying on) the nuances of a particular transport. Enabling robust handling of long-running requests such as tool calls. The spec does not allow servers to close a connection while computing a result. In other words, servers must maintain potentially long-running connections. There is no mechanism for a client to check the status of a request after disconnection without having to fetch undelivered messages. Specification If a client has advertised the resumableRequests capability, a server MAY send a notifications/requests/resumePolicy notification when responding to a request. The notification will specify the resume policy for the request in the event of disconnection, and will include a token that the client can use to resume the request. After the resume policy is sent, both the client and the server MAY disconnect at will. This allows servers to handle long-running requests without maintaining a constant connection. After a disconnection, a client can optionally send a requests/getStatus request to get the status of the original request without fetching pending messages. If the parameters of the requests/getStatus request are valid per the request policy, the server SHOULD reset policy-related timers and then return the status of the original request. After a disconnection, clients can resume the request by sending a requests/resume request with the same message ID as the original request, plus the server-issued token as a parameter. If the ID and token are valid per the resume policy, the server SHOULD reset policy-related timers, send any pending messages (e.g., progress notifications), and then continue as if it were handling the original request. sequenceDiagram participant Client participant Server Client->>+Server: Request (e.g., tools/call)
{ id: 123, params: { ... } } Server-->>Client: notifications/requests/resumePolicy
{ params: { requestId: 123, resumeToken: "abc" } } loop Server-->>Client: Messages (e.g., notifications/progress) end Server--x-Client: Disconnection occurs Note over Client: Client checks request status (optional) opt Client->>+Server: requests/getStatus
{ params: { requestId: 123, resumeToken: "abc" } } Server-->>-Client: GetRequestStatusResult end Note over Client: Client decides to resume Client->>+Server: requests/resume
{ id: 123, params: { resumeToken: "abc" } }
[Same `id` as original request] Server-->>Client: Undelivered messages loop Server-->>Client: Messages (e.g., notifications/progress) end Server-->>-Client: CallToolResult
{ id: 123, result: { ... } } Loading Rationale The above specification addresses the issues outlined in the Motivation in the following ways: The server sends notifications/requests/resumePolicy notification as soon as possible after determining a request should be resumable. This causes the Streamable HTTP transport to send a usable Last-Event-ID to the client. Because a client resumes using a request ID instead of solely an event ID, there is no expectation for servers to retain messages that have been confirmed delivered. Furthermore, for the Streamable HTTP transport, requests/resume is sent via POST, not GET, allowing servers to delete delivered messages as part of the resume request. The notifications/requests/resumePolicy notification includes an optional maxWait parameter, informing the client of the maximum number of seconds it may wait after a disconnection before resuming the request or checking its status. After this time has elapsed, the server MAY cancel the request and free all associated resources. Because resumability is handled at the application layer via notifications/requests/resumePolicy and requests/resume, it works the same for all transports. After sending a notifications/requests/resumePolicy notification, the server is allowed to disconnect at will. Thus the server is not required to maintain a long-running connection. The client can use requests/getStatus to check the status of a request after disconnection without having to fetch undelivered messages. Future Work Support a callback mechanism such as webhooks. A client could inform the server about a webhook via either a client capability or a _meta parameter for the request. Upon completion of the request, if the client is disconnected, the server could send the request ID to the webhook. The webhook host could then send a notification (e.g. push notification) to the client, and the client could resume the request to receive the result. Use resumable requests for subscriptions. For example, by adding a resources/subscribe/resumable method. See #543 (comment) for a proximal discussion. Support client roaming. Perhaps in the form of methods like requests/resume/all and requests/getStatus/all, or maybe something more closely integrated with sessions (e.g. a sessions/resume method). Alternatives #899: Transport-agnostic resumable streams This proposal is a simplified version of #899. This proposal focuses on making JSON-RPC requests resumable in a transport-agnostic way, whereas #899 proposes a more general transport-agnostic mechanism (streams). In terms of functionality, the two are mostly equivalent, but for this proposal, resumability is bounded by the JSON-RPC request message and response message. Thus, with this proposal, resumability cannot begin with a JSON-RPC notification, nor can it extend beyond a JSON-RPC response (whereas both of those things are possible with #899). Resource-based approaches Resource-based approaches propose assigning a resource URL to a tool call result so that the client may read it at a later time. This requires modifying the definition of resources to accommodate the CallToolResult type, which does not have a 1-to-1 mapping with the TextResourceContents / BlobResourceContents types. It also requires modifying the definition of resources such that resources may be "not ready", which in turn impacts all existing clients and servers that use resources. More critically, though, resource-based approaches require distinct handling mechanisms for each message type other than CallToolResult. Fundamentally, the output of a request, such as a tool call, is a sequence of messages, even if the cardinality is 1 in many cases. If we try to represent the output as a resource, then we must define ways to handle messages that do not fit in a resource, such as progress notifications and sampling requests. Each message type that we introduce would need consideration about how it would work with "resource-ended" requests versus "normal" requests. A resource-based approach would increase the number of provisions the spec must make, increase the number of code paths required for implementation, and increase the potential for incompatibilities when extending the spec. #650: tools/async/call vs tools/call #650 proposes adding a new type of tool call, tools/async/call. When a client calls a tool via tools/async/call, the server returns a CallToolAsyncResult response which includes a token. The client can then use the token to check the status of the tool call via tools/async/status, and to fetch the tool call result via tools/async/result. There is some overlap between #650 and this proposal, such as using tokens and having a dedicated polling method, but there are some important differences: With #650, the client drives the decision of whether the tool call is async. This means the server cannot make the decision based on input arguments or session state. #650 requires the server to implement an additional form of persistence for tool call results, separate from the message queue it must already implement for resumability. Because tools/async/result only captures the tool call result, #650 effectively requires the client to stream from the GET /mcp endpoint. Otherwise, the client may miss server-sent requests (e.g. sampling requests) that would block tool call progress. Thus, #650 is still affected by the same problems listed in this proposal's "Motivation" section. For example, if a disconnection occurs before the client receives an event ID on the GET /mcp endpoint, and the server sends a sampling request, then the tool call would be blocked until it expires because the client would have no way to get the sampling request. Furthermore, it begs the question: if the client must stream from that (or any other) endpoint, why not also send the tool call result on that stream? (If the answer is to make the result fetchable separately from the stream, that can be achieved with resource links instead.) #1003: Resume tokens for long-running operations Essentially, #1003 is cursor-based pagination of results. In order to benefit from the proposal, a method must divide its result into chunks. Calls to retrieve each chunk are affected by the same problems listed in this proposal's "Motivation" section. If a result is divided enough, the problems could be mitigated, however each chunk will require an additional round trip. Also, #1003 does not apply when a result is indivisible, such as for a long-running computation that computes a singular value. Other differences: #1003 assumes client support; it does not define additional client capabilities nor consider them. If a client does not support the proposal, it will only receive the first chunk of the result. If the proposal were to define an additional client capability, it is not clear how result chunks could be automatically combined to support clients without the capability. Note: if we decide we want to assume client support, this proposal (#925) can drop the resumableRequests client capability. Everything else will work as expected. With #1003, the only way for a client to check the status of a request is to resume the request. If the server does not return an error, then the request is still ongoing. Note: if we decide we don't want to support a dedicated polling mechanism, this proposal (#925) can drop the requests/getStatus method. Everything else will work as expected. Backwards Compatibility This feature is backward compatible because clients must opt in by advertising the resumableRequests capability, and servers have no obligation to send a notifications/requests/resumePolicy notification. Security Implications The resumeToken that the server issues as part of the notifications/requests/resumePolicy notification should be treated as sensitive information because it can be used to access messages related to the request.

Open Graph Description: Preamble Transport-agnostic Resumable Requests Authors: Jonathan Hefner (jonathan@hefner.pro), Connor Peet (connor@peet.io) Abstract This proposal describes a transport-agnostic mechanism for resum...

X Description: Preamble Transport-agnostic Resumable Requests Authors: Jonathan Hefner (jonathan@hefner.pro), Connor Peet (connor@peet.io) Abstract This proposal describes a transport-agnostic mechanism for resum...

Opengraph URL: https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:1014887f-00cf-9cc8-8f97-e3e597bc5d27
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id91F8:20DA71:252129F:30CE959:6A5CBB8D
html-safe-nonce0d8a7911c48218c417ace0501759ff2a06214eef953e84fb929ecb006a37934a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MUY4OjIwREE3MToyNTIxMjlGOjMwQ0U5NTk6NkE1Q0JCOEQiLCJ2aXNpdG9yX2lkIjoiMjg2OTIzNjMzMzg5MzQzNDI1MyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacfebce4b708c1b4700df57138a0c544d673504051669a831dd96cf28fddfffab4
hovercard-subject-tagpull_request:2647828232
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
twitter:imagehttps://avatars.githubusercontent.com/u/771968?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/771968?s=400&v=4
og:image:altPreamble Transport-agnostic Resumable Requests Authors: Jonathan Hefner (jonathan@hefner.pro), Connor Peet (connor@peet.io) Abstract This proposal describes a transport-agnostic mechanism for resum...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/modelcontextprotocol/modelcontextprotocol git https://github.com/modelcontextprotocol/modelcontextprotocol.git
octolytics-dimension-user_id182288589
octolytics-dimension-user_loginmodelcontextprotocol
octolytics-dimension-repository_id862570523
octolytics-dimension-repository_nwomodelcontextprotocol/modelcontextprotocol
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id862570523
octolytics-dimension-repository_network_root_nwomodelcontextprotocol/modelcontextprotocol
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release9c975978430e9ad293956f2bbdaf153b1bd84a99
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fmodelcontextprotocol%2Fpull%2F925%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fmodelcontextprotocol%2Fpull%2F925%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=modelcontextprotocol%2Fmodelcontextprotocol
Reloadhttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
Reloadhttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
Reloadhttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
Please reload this pagehttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
modelcontextprotocol https://github.com/modelcontextprotocol
modelcontextprotocolhttps://github.com/modelcontextprotocol/modelcontextprotocol
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fmodelcontextprotocol
Fork 1.7k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fmodelcontextprotocol
Star 8.6k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fmodelcontextprotocol
Code https://github.com/modelcontextprotocol/modelcontextprotocol
Issues 112 https://github.com/modelcontextprotocol/modelcontextprotocol/issues
Pull requests 78 https://github.com/modelcontextprotocol/modelcontextprotocol/pulls
Discussions https://github.com/modelcontextprotocol/modelcontextprotocol/discussions
Actions https://github.com/modelcontextprotocol/modelcontextprotocol/actions
Projects https://github.com/modelcontextprotocol/modelcontextprotocol/projects
Models https://github.com/modelcontextprotocol/modelcontextprotocol/models
Security and quality 0 https://github.com/modelcontextprotocol/modelcontextprotocol/security
Insights https://github.com/modelcontextprotocol/modelcontextprotocol/pulse
Code https://github.com/modelcontextprotocol/modelcontextprotocol
Issues https://github.com/modelcontextprotocol/modelcontextprotocol/issues
Pull requests https://github.com/modelcontextprotocol/modelcontextprotocol/pulls
Discussions https://github.com/modelcontextprotocol/modelcontextprotocol/discussions
Actions https://github.com/modelcontextprotocol/modelcontextprotocol/actions
Projects https://github.com/modelcontextprotocol/modelcontextprotocol/projects
Models https://github.com/modelcontextprotocol/modelcontextprotocol/models
Security and quality https://github.com/modelcontextprotocol/modelcontextprotocol/security
Insights https://github.com/modelcontextprotocol/modelcontextprotocol/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmodelcontextprotocol%2Fmodelcontextprotocol%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmodelcontextprotocol%2Fmodelcontextprotocol%2Fissues%2Fnew%2Fchoose
jonathanhefnerhttps://github.com/jonathanhefner
modelcontextprotocol:mainhttps://github.com/modelcontextprotocol/modelcontextprotocol/tree/main
jonathanhefner:resumable-requestshttps://github.com/jonathanhefner/modelcontextprotocol/tree/resumable-requests
Conversation 20 https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925
Commits 1 https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/commits
Checks 2 https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/checks
Files changed https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
Please reload this pagehttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
SEP-975: Transport-agnostic resumable requests https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#top
Show all changes 1 commit https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
73d9018 Transport-agnostic resumable requests jonathanhefner Jul 15, 2025 https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/commits/73d90185a4bd412debf30edda85f3f7d1d7a1f57
Clear filters https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
Please reload this pagehttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
Please reload this pagehttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
lifecycle.mdx https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-a695c49e683ba76bf9576160e4da86eea306344e7f8e49b4f5548f5239a2a3ad
transports.mdx https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-acd1cf21ea8df45b4760a9ea8bdd56c392c635c874baafb722dfeb4e7dc2d06c
schema.mdx https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-1d34f29e6c8145d162f62f424142d91d5e70ca0586a43b3165ec0b4cd26e50bd
schema.json https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-6b9b9329758616d1a3e50068743cb3c911cd0f15411e324bc21913cd7b5d0b0f
schema.ts https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-273099cbfa5ca22c6af97f73eca738047952f7a8e7dffc4c1572fec3bdbbc211
https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/.github/CODEOWNERS#L7
docs/specification/draft/basic/lifecycle.mdxhttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-a695c49e683ba76bf9576160e4da86eea306344e7f8e49b4f5548f5239a2a3ad
View file https://github.com/jonathanhefner/modelcontextprotocol/blob/73d90185a4bd412debf30edda85f3f7d1d7a1f57/docs/specification/draft/basic/lifecycle.mdx
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/{{ revealButtonHref }}
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-a695c49e683ba76bf9576160e4da86eea306344e7f8e49b4f5548f5239a2a3ad
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-a695c49e683ba76bf9576160e4da86eea306344e7f8e49b4f5548f5239a2a3ad
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-a695c49e683ba76bf9576160e4da86eea306344e7f8e49b4f5548f5239a2a3ad
https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/.github/CODEOWNERS#L7
docs/specification/draft/basic/transports.mdxhttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-acd1cf21ea8df45b4760a9ea8bdd56c392c635c874baafb722dfeb4e7dc2d06c
View file https://github.com/jonathanhefner/modelcontextprotocol/blob/73d90185a4bd412debf30edda85f3f7d1d7a1f57/docs/specification/draft/basic/transports.mdx
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/{{ revealButtonHref }}
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-acd1cf21ea8df45b4760a9ea8bdd56c392c635c874baafb722dfeb4e7dc2d06c
https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files#diff-acd1cf21ea8df45b4760a9ea8bdd56c392c635c874baafb722dfeb4e7dc2d06c
Please reload this pagehttps://github.com/modelcontextprotocol/modelcontextprotocol/pull/925/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.