Skip to content

Releases: punkpeye/fastmcp

v2.2.2

05 Jun 16:47
563b0de
Compare
Choose a tag to compare

2.2.2 (2025-06-05)

Bug Fixes

v2.2.1

02 Jun 15:56
06c2af7
Compare
Choose a tag to compare

2.2.1 (2025-06-02)

Bug Fixes

  • improve HTTP streaming connection stability (#88) (06c2af7)

v2.2.0

31 May 18:13
c3991b8
Compare
Choose a tag to compare

2.2.0 (2025-05-31)

Features

  • embedded resources API (server.embedded(uri) method) (#86) (c3991b8)

v2.1.4

28 May 21:21
eb52c76
Compare
Choose a tag to compare

2.1.4 (2025-05-28)

Bug Fixes

v2.1.3

25 May 14:10
a3d9cd5
Compare
Choose a tag to compare

2.1.3 (2025-05-25)

Bug Fixes

  • docs: update README to use await for async functions in examples (#80) (a3d9cd5)

v2.1.2

23 May 14:08
a8b0d91
Compare
Choose a tag to compare

2.1.2 (2025-05-23)

Bug Fixes

  • types: add missing property to ResourceTemplate arguments (#71) (a8b0d91)

v2.1.1

22 May 22:44
7d0f5ff
Compare
Choose a tag to compare

2.1.1 (2025-05-22)

Bug Fixes

  • Resolve tool crashing from use with Zod v4 (#70) (7d0f5ff)

v2.1.0

21 May 16:57
ed11d94
Compare
Choose a tag to compare

2.1.0 (2025-05-21)

Features

v2.0.0

21 May 02:31
Compare
Choose a tag to compare

2.0.0 (2025-05-21)

Features

BREAKING CHANGES

  • SSE is no longer available as a separate option, but instead is a default fallback of streamable HTTP

Migration

If you had SSE server, simply replace "sse" with "httpStream" and drop endpoint setting:

server.start({
-  transportType: "sse",
+  transportType: "httpStream",
-  sse: {
+  httpStream: {
-    endpoint: "/sse",
    port: 8080,
  },
});

If you already had streamable HTTP server, simply drop endpoint (it already defaults to /stream for streamable HTTP and /sse for SSE):

server.start({
  transportType: "httpStream",
  httpStream: {
-    endpoint: "/stream",
    port: 8080,
  },
});

Note

There are no breaking changes to client integrations, i.e. clients that were already using your streamable HTTP or SSE server, will continue to work without the need to make adjustments to their configuration.

Note

This change is also being rolled out to all servers hosted by Glama.

v1.27.7

17 May 22:24
Compare
Choose a tag to compare

1.27.7 (2025-05-17)

Bug Fixes