René's URL Explorer Experiment


Title: SEP-975: Transport-agnostic resumable requests · Issue #975 · modelcontextprotocol/modelcontextprotocol · GitHub

Open Graph Title: SEP-975: Transport-agnostic resumable requests · Issue #975 · modelcontextprotocol/modelcontextprotocol

X Title: SEP-975: Transport-agnostic resumable requests · Issue #975 · 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...

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...

Mail addresses
jonathan@hefner.pro
connor@peet.io

Opengraph URL: https://github.com/modelcontextprotocol/modelcontextprotocol/issues/975

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"SEP-975: Transport-agnostic resumable requests","articleBody":"## Preamble\n\n**Transport-agnostic Resumable Requests**\n\nAuthors: Jonathan Hefner (jonathan@hefner.pro), Connor Peet (connor@peet.io)\n\n\n## Abstract\n\nThis proposal describes a transport-agnostic mechanism for resuming requests after disconnections.  Using this mechanism:\n\n- Clients and servers can disconnect and reconnect without losing progress.\n- Servers can communicate expire-after-disconnect timeouts and reclaim resources thereafter.\n- Clients can check request status after disconnect without having to fetch undelivered messages.\n- All of the above works regardless of transport (HTTP, WebSocket, stdio, etc.).\n\n\n## Motivation\n\n- **Addressing limitations of resumability when using the Streamable HTTP transport.**\n  - 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](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/docs/specification/draft/basic/transports.mdx?plain=1#L109-L111) that disconnection should not be interpreted as the client cancelling its request.\n  - 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.\n  - There is no mechanism for a server to communicate that it will expire a request after a certain duration of client inactivity.\n- **Extending resumability to other transports.**\n  - Because resumability is defined by the transport layer, the burden of creating new or custom transports is higher.\n  - 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.\n- **Enabling robust handling of long-running requests such as tool calls.**\n  - The spec does not allow servers to close a connection while computing a result.  In other words, servers must maintain potentially long-running connections.\n  - There is no mechanism for a client to check the status of a request after disconnection without having to fetch undelivered messages.\n\n\n## Specification\n\n**See https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925 for full documentation.**\n\n1. 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.\n2. 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.\n3. 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.\n4. 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.\n\n```mermaid\nsequenceDiagram\n    participant Client\n    participant Server\n\n    Client-\u003e\u003e+Server: Request (e.g., tools/call)\u003cbr\u003e{ id: 123, params: { ... } }\n\n    Server--\u003e\u003eClient: notifications/requests/resumePolicy\u003cbr\u003e{ params: { requestId: 123, resumeToken: \"abc\" } }\n    loop\n        Server--\u003e\u003eClient: Messages (e.g., notifications/progress)\n    end\n    Server--x-Client: Disconnection occurs\n\n    Note over Client: Client checks request status (optional)\n    opt \n        Client-\u003e\u003e+Server: requests/getStatus\u003cbr\u003e{ params: { requestId: 123, resumeToken: \"abc\" } }\n        Server--\u003e\u003e-Client: GetRequestStatusResult\n    end\n\n    Note over Client: Client decides to resume\n    Client-\u003e\u003e+Server: requests/resume\u003cbr\u003e{ id: 123, params: { resumeToken: \"abc\" } }\u003cbr\u003e[Same `id` as original request]\n    Server--\u003e\u003eClient: Undelivered messages\n    loop\n        Server--\u003e\u003eClient: Messages (e.g., notifications/progress)\n    end\n    Server--\u003e\u003e-Client: CallToolResult\u003cbr\u003e{ id: 123, result: { ... } }\n```\n\n\n## Rationale\n\nThe above specification addresses the issues outlined in the Motivation in the following ways:\n\n- 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.\n- 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.\n- 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.\n- Because resumability is handled at the application layer via `notifications/requests/resumePolicy` and `requests/resume`, it works the same for all transports.\n- 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.\n- The client can use `requests/getStatus` to check the status of a request after disconnection without having to fetch undelivered messages.\n\n\n### Future Work\n\n- Support a callback mechanism such as webhooks.\n  - 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.\n- Use resumable requests for subscriptions.\n  - For example, by adding a `resources/subscribe/resumable` method.  See https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/543#discussioncomment-13197178 for a proximal discussion.\n- Support client roaming.\n  - 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).\n\n### Alternatives\n\n- **[#899](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899): Transport-agnostic resumable streams**\n\n    This proposal is a simplified version of [#899](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899).  This proposal focuses on making JSON-RPC requests resumable in a transport-agnostic way, whereas [#899](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899) proposes a more general transport-agnostic mechanism (streams).\n\n    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](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899)).\n\n- **Resource-based approaches**\n\n    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`](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/schema/draft/schema.ts#L778-L804) type, which does not have a 1-to-1 mapping with the [`TextResourceContents`](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/schema/draft/schema.ts#L600-L605) / [`BlobResourceContents`](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/schema/draft/schema.ts#L607-L614) 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.\n\n    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.\n\n    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.\n\n- **[#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650): `tools/async/call` vs `tools/call`**\n\n  [#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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`.\n\n  There is some overlap between [#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650) and this proposal, such as using tokens and having a dedicated polling method, but there are some important differences:\n\n  - With [#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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.\n  - [#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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.\n  - Because `tools/async/result` only captures the tool call result, [#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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.\n\n    Thus, [#650](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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.\n\n    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](https://modelcontextprotocol.io/specification/2025-06-18/server/tools#resource-links) instead.)\n\n- **[#1003](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003): Resume tokens for long-running operations**\n\n    Essentially, [#1003](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003) does not apply when a result is indivisible, such as for a [long-running computation that computes a singular value](https://en.wikipedia.org/wiki/Phrases_from_The_Hitchhiker%27s_Guide_to_the_Galaxy#The_Answer_to_the_Ultimate_Question_of_Life,_the_Universe,_and_Everything_is_42).\n\n    Other differences:\n\n    * [#1003](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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.\n\n      *Note: if we decide we want to assume client support, this proposal ([#925](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925)) can drop the `resumableRequests` client capability.  Everything else will work as expected.*\n\n    * With [#1003](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/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.\n\n      *Note: if we decide we don't want to support a dedicated polling mechanism, this proposal ([#925](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925)) can drop the `requests/getStatus` method.  Everything else will work as expected.*\n\n\n## Backwards Compatibility\n\nThis 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.\n\n\n## Security Implications\n\nThe `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.\n","author":{"url":"https://github.com/jonathanhefner","@type":"Person","name":"jonathanhefner"},"datePublished":"2025-07-15T21:14:17.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":11},"url":"https://github.com/975/modelcontextprotocol/issues/975"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:3d3a63ee-e0a1-0945-5e17-798fda3d8fac
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAABE:153D66:CC6A66:1127258:6A5B9B89
html-safe-nonce5a6d57989e243200231f27b7a367ac917e6b2bedee1c83df73f39ed20eef1a0f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBQUJFOjE1M0Q2NjpDQzZBNjY6MTEyNzI1ODo2QTVCOUI4OSIsInZpc2l0b3JfaWQiOiIzMjA0NjQ4NDkzNDU0Njk1MzA1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac07b6bb59552a76fd7eb5e33023ccb1943f8e19e6629d00249b5e051c1480a0bb
hovercard-subject-tagissue:3233718508
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/modelcontextprotocol/modelcontextprotocol/975/issue_layout
twitter:imagehttps://opengraph.githubassets.com/1280646491f91dfd3fc5a8b6779e342e4ecb50b2b0662e435d6d9c8a255619d0/modelcontextprotocol/modelcontextprotocol/issues/975
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/1280646491f91dfd3fc5a8b6779e342e4ecb50b2b0662e435d6d9c8a255619d0/modelcontextprotocol/modelcontextprotocol/issues/975
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:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejonathanhefner
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
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
disable-turbofalse
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/issues/975#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fmodelcontextprotocol%2Fissues%2F975
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%2Fissues%2F975
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=modelcontextprotocol%2Fmodelcontextprotocol
Reloadhttps://github.com/modelcontextprotocol/modelcontextprotocol/issues/975
Reloadhttps://github.com/modelcontextprotocol/modelcontextprotocol/issues/975
Reloadhttps://github.com/modelcontextprotocol/modelcontextprotocol/issues/975
Please reload this pagehttps://github.com/modelcontextprotocol/modelcontextprotocol/issues/975
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 113 https://github.com/modelcontextprotocol/modelcontextprotocol/issues
Pull requests 80 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
SEP-975: Transport-agnostic resumable requestshttps://github.com/modelcontextprotocol/modelcontextprotocol/issues/975#top
https://github.com/jonathanhefner
SEPhttps://github.com/modelcontextprotocol/modelcontextprotocol/issues?q=state%3Aopen%20label%3A%22SEP%22
DRAFT-2025-11-25https://github.com/modelcontextprotocol/modelcontextprotocol/milestone/3
https://github.com/jonathanhefner
jonathanhefnerhttps://github.com/jonathanhefner
on Jul 15, 2025https://github.com/modelcontextprotocol/modelcontextprotocol/issues/975#issue-3233718508
spec currently sayshttps://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/docs/specification/draft/basic/transports.mdx?plain=1#L109-L111
#925https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925
Proposal: Transport-agnostic resumable streams #543 (comment)https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/543#discussioncomment-13197178
#899https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899
#899https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899
#899https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899
#899https://github.com/modelcontextprotocol/modelcontextprotocol/pull/899
CallToolResulthttps://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/schema/draft/schema.ts#L778-L804
TextResourceContentshttps://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/schema/draft/schema.ts#L600-L605
BlobResourceContentshttps://github.com/modelcontextprotocol/modelcontextprotocol/blob/eba3959164c6b1ef87b87c8fe3574972f3f30055/schema/draft/schema.ts#L607-L614
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
#650https://github.com/modelcontextprotocol/modelcontextprotocol/pull/650
resource linkshttps://modelcontextprotocol.io/specification/2025-06-18/server/tools#resource-links
#1003https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003
#1003https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003
#1003https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003
long-running computation that computes a singular valuehttps://en.wikipedia.org/wiki/Phrases_from_The_Hitchhiker%27s_Guide_to_the_Galaxy#The_Answer_to_the_Ultimate_Question_of_Life,_the_Universe,_and_Everything_is_42
#1003https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003
#925https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925
#1003https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1003
#925https://github.com/modelcontextprotocol/modelcontextprotocol/pull/925
jonathanhefnerhttps://github.com/jonathanhefner
SEPhttps://github.com/modelcontextprotocol/modelcontextprotocol/issues?q=state%3Aopen%20label%3A%22SEP%22
DRAFT-2025-11-25https://github.com/modelcontextprotocol/modelcontextprotocol/milestone/3
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.