@plaud-ai/mcp 0.1.25 → 0.1.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -30952,6 +30952,44 @@ server.tool(
30952
30952
  }
30953
30953
  }
30954
30954
  );
30955
+ server.tool(
30956
+ "get_note",
30957
+ "Fetch AI-generated notes for a Plaud recording \u2014 compact summary, action items, and key topics",
30958
+ { file_id: external_exports3.string().describe("The file ID to retrieve notes for") },
30959
+ async ({ file_id }) => {
30960
+ const client2 = getClient();
30961
+ try {
30962
+ const file2 = await client2.getFile(file_id);
30963
+ return {
30964
+ content: [{ type: "text", text: JSON.stringify(file2.note_list ?? [], null, 2) }]
30965
+ };
30966
+ } catch (err) {
30967
+ return {
30968
+ content: [{ type: "text", text: `Failed to get note: ${err}` }],
30969
+ isError: true
30970
+ };
30971
+ }
30972
+ }
30973
+ );
30974
+ server.tool(
30975
+ "get_transcript",
30976
+ "Fetch the full timestamped transcript with speaker attribution for a Plaud recording",
30977
+ { file_id: external_exports3.string().describe("The file ID to retrieve transcript for") },
30978
+ async ({ file_id }) => {
30979
+ const client2 = getClient();
30980
+ try {
30981
+ const file2 = await client2.getFile(file_id);
30982
+ return {
30983
+ content: [{ type: "text", text: JSON.stringify(file2.source_list ?? [], null, 2) }]
30984
+ };
30985
+ } catch (err) {
30986
+ return {
30987
+ content: [{ type: "text", text: `Failed to get transcript: ${err}` }],
30988
+ isError: true
30989
+ };
30990
+ }
30991
+ }
30992
+ );
30955
30993
  server.tool("get_current_user", "Get current authenticated user info", async () => {
30956
30994
  const client2 = getClient();
30957
30995
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaud-ai/mcp",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plaud",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "Access your Plaud recordings in Claude",
5
5
  "author": {
6
6
  "name": "Plaud AI"