Skip to content

Releases: punkpeye/fastmcp

v1.16.1

03 Jan 18:08
Compare
Choose a tag to compare

1.16.1 (2025-01-03)

Bug Fixes

v1.16.0

01 Jan 20:29
Compare
Choose a tag to compare

1.16.0 (2025-01-01)

Features

v1.15.1

01 Jan 17:43
Compare
Choose a tag to compare

1.15.1 (2025-01-01)

Bug Fixes

v1.15.0

31 Dec 23:58
Compare
Choose a tag to compare

1.15.0 (2024-12-31)

Features

  • allow to load resources using resource templates (86dccd2)

v1.14.0

31 Dec 23:19
Compare
Choose a tag to compare

1.14.0 (2024-12-31)

Features

  • add the ability to complete resource arguments (45b3955)

v1.13.0

31 Dec 21:19
Compare
Choose a tag to compare

1.13.0 (2024-12-31)

Features

  • allow to return multiple resources (cb8d0b0)
  • allow to return multiple resources (6ec5a83)

v1.12.0

31 Dec 21:05
Compare
Choose a tag to compare

1.12.0 (2024-12-31)

Features

  • allow to read individual resources (7ed2ef9)

v1.11.0

31 Dec 20:44
Compare
Choose a tag to compare

1.11.0 (2024-12-31)

You can now define enum Prompt parameter which will auto-generate complete handler, e.g.

server.addPrompt({
  name: "countryPoem",
  description: "Writes a poem about a country",
  load: async ({ name }) => {
    return `Hello, ${name}!`;
  },
  arguments: [
    {
      name: "name",
      description: "Name of the country",
      required: true,
      enum: ["Germany", "France", "Italy"],
    },
  ],
});

Features

  • add enums that generate auto-completion (a4028aa)
  • add prompt argument auto-completions (8c261eb)

v1.10.0

31 Dec 18:53
Compare
Choose a tag to compare

1.10.0 (2024-12-31)

Bug Fixes

Features

v1.9.0

31 Dec 18:32
Compare
Choose a tag to compare

1.9.0 (2024-12-31)

Features