[mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers#60281
Merged
[mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers#60281
Conversation
gzdunek
approved these changes
Oct 17, 2025
avatus
approved these changes
Oct 20, 2025
| return ( | ||
| <ButtonBorder | ||
| size="small" | ||
| onClick={() => props.setUpGateway()} |
Contributor
There was a problem hiding this comment.
Suggested change
| onClick={() => props.setUpGateway()} | |
| onClick={props.setUpGateway} |
Contributor
Author
There was a problem hiding this comment.
i get a type check error on this:
web/packages/teleterm/src/ui/DocumentCluster/ActionButtons.tsx:337:11 - error TS2322: Type '(targetPort?: number) => void' is not assignable to type 'MouseEventHandler<HTMLButtonElement>'.
Types of parameters 'targetPort' and 'event' are incompatible.
Type 'MouseEvent<HTMLButtonElement, MouseEvent>' is not assignable to type 'number'.
337 onClick={props.setUpGateway}
ravicious
reviewed
Oct 22, 2025
| if (isMcp(props.app)) { | ||
| // TODO(greedy52) decide what to do with MCP servers. | ||
| // Streamable HTTP MCP servers support local proxy gateway. | ||
| if (doesMcpAppSupportGateway(props.app)) { |
Member
There was a problem hiding this comment.
Out of curiosity, I assume VNet support is out of the question for now because VNet only supports TCP apps, right?
Contributor
Author
There was a problem hiding this comment.
right, it's not supported at the moment. We could technically support it in VNET and make MCP clients always connect as http (not https).
However, we are likely working on this later this Q:
#57882
Once we have that, we might deprecate existing connection methods.
smallinsky
pushed a commit
that referenced
this pull request
Oct 23, 2025
…HTTP MCP servers (#60281) * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers * review comments
greedy52
added a commit
that referenced
this pull request
Oct 23, 2025
…HTTP MCP servers (#60281) * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers * review comments
6 tasks
github-merge-queue Bot
pushed a commit
that referenced
this pull request
Oct 27, 2025
* [MCP] server-side SSE support (#56051) * MCP access part 12: server-side SSE support * parse uri for determining transport type * fix pointer, atomic, and parse error � Conflicts: � lib/srv/mcp/server.go * fix schema, etc * switch to golang internal mcp sse parsing * remove ParentCtx from logging * fix build and address comments * [mcp] refactor jwt token and app header rewrite logic (#58601) * [mcp] mcputils for streamable http (#58764) * [mcp] mcputils for streamable http * fix flaky test * use utils.ReadAtMost and fmt.Appendf * add a marshal function for event * fix spell * [mcp] update audit events for streamable HTTP transport (#59155) * [mcp] update audit events for streamable HTTP transport * nolint for unused functions for now, they will be used in next PR * [mcp] server handler for streamable HTTP transport (#59499) * [mcp] server handler for streamable hTTP transport * review comments round 1 * add comments and fix flaky test * [mcp] bump mcp-go version (#59500) * [mcp] bump mcp-go version * fix IO transport by explicit start * [mcp] add server prometheus metrics (#59773) * [mcp] add server prometheus metrics * remove TODO and nolint * use counter where possible and limit known methods * move reporting test to individual tests * nolint for "cancelled" * Fix an issue docker container launched by MCP commands are not removed sometimes (#59879) * Fix an issue docker container launched by MCP commands are not removed sometimes * switch to math/rand/v2 * add "tsh proxy mcp" command (#59968) * [refactor] client.NewMCPServerDialer (#60020) * [refactor] client.NewMCPServerDialer * TestVerifyTLSCertLeafExpiry * TestMatchResourcesByFilters * fix typo * fix lint * mcputils for streamable HTTP transport conversion (#60024) * mcputils for streamable HTTP transport conversion * remove need of context from mcptest functions * add test for notification * [mcp] "tsh mcp connect" support for streamable HTTP (#60120) * implement "tsh mcp connect" for streamable HTTP * wait for 5s just to be conservative * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers (#60281) * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers * review comments * [mcp] fix some edge cases for streamable HTTP (#60286) * [mcp] add JWT and rewrite headers support for SSE MCP servers (#60320) * fix go.mod to match master * fix lint and ut
mmcallister
pushed a commit
that referenced
this pull request
Nov 6, 2025
…HTTP MCP servers (#60281) * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers * review comments
mmcallister
pushed a commit
that referenced
this pull request
Nov 19, 2025
…HTTP MCP servers (#60281) * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers * review comments
mmcallister
pushed a commit
that referenced
this pull request
Nov 20, 2025
…HTTP MCP servers (#60281) * [mcp] Web UI and Teleport Connect adjustments for SSE and Streamable HTTP MCP servers * review comments
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.
related:
changes
mcp+stdio://,mcp+http(s)://,mcp+sse+http(s)://)Connect Button:

Gateway Document:

Top bar connection:
