@plaud-ai/mcp 0.1.28 → 0.1.29
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.
|
@@ -105,6 +105,7 @@ Use date filters to scope the corpus (e.g., last week, last quarter, a specific
|
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
name: "push-to-destination",
|
|
108
|
+
supported: false,
|
|
108
109
|
description: "Send recording content or a generated artifact to Notion, HubSpot, Slack, Linear, or a webhook",
|
|
109
110
|
content: `## Plaud Skill: push-to-destination
|
|
110
111
|
|
|
@@ -123,12 +124,13 @@ When the user wants to send recording content or a generated artifact to an exte
|
|
|
123
124
|
Note: Destination credentials (API tokens, webhook URLs) must be provided by the user. Do not store them in conversation history \u2014 use environment variables or the user's config.`
|
|
124
125
|
}
|
|
125
126
|
];
|
|
126
|
-
var
|
|
127
|
+
var ACTIVE_SKILLS = SKILLS.filter((s) => s.supported !== false);
|
|
128
|
+
var SKILLS_COMBINED = ACTIVE_SKILLS.map((s) => s.content).join("\n\n---\n\n");
|
|
127
129
|
|
|
128
130
|
export {
|
|
129
131
|
__commonJS,
|
|
130
132
|
__export,
|
|
131
133
|
__toESM,
|
|
132
|
-
|
|
134
|
+
ACTIVE_SKILLS,
|
|
133
135
|
SKILLS_COMBINED
|
|
134
136
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
|
-
|
|
3
|
+
ACTIVE_SKILLS,
|
|
4
4
|
__commonJS,
|
|
5
5
|
__export,
|
|
6
6
|
__toESM
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-AR3KTAQ2.js";
|
|
8
8
|
|
|
9
9
|
// ../../node_modules/.pnpm/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
10
10
|
var require_code = __commonJS({
|
|
@@ -31020,34 +31020,34 @@ server.tool("logout", "Log out, sign out, revoke authorization, and disconnect f
|
|
|
31020
31020
|
content: [{ type: "text", text: "Logged out and revoked authorization." }]
|
|
31021
31021
|
};
|
|
31022
31022
|
});
|
|
31023
|
-
for (const skill of
|
|
31023
|
+
for (const skill of ACTIVE_SKILLS) {
|
|
31024
31024
|
server.prompt(skill.name, skill.description, () => ({
|
|
31025
31025
|
messages: [{ role: "user", content: { type: "text", text: skill.content } }]
|
|
31026
31026
|
}));
|
|
31027
31027
|
}
|
|
31028
31028
|
async function main() {
|
|
31029
31029
|
if (process.argv[2] === "clean-plugin") {
|
|
31030
|
-
const { runCleanPlugin } = await import("./setup-
|
|
31030
|
+
const { runCleanPlugin } = await import("./setup-CW3OJGSM.js");
|
|
31031
31031
|
await runCleanPlugin();
|
|
31032
31032
|
return;
|
|
31033
31033
|
}
|
|
31034
31034
|
if (process.argv[2] === "setup" && process.argv[3] === "codex") {
|
|
31035
|
-
const { runSetupCodex } = await import("./setup-
|
|
31035
|
+
const { runSetupCodex } = await import("./setup-CW3OJGSM.js");
|
|
31036
31036
|
await runSetupCodex();
|
|
31037
31037
|
return;
|
|
31038
31038
|
}
|
|
31039
31039
|
if (process.argv[2] === "unsetup" && process.argv[3] === "codex") {
|
|
31040
|
-
const { runUnsetupCodex } = await import("./setup-
|
|
31040
|
+
const { runUnsetupCodex } = await import("./setup-CW3OJGSM.js");
|
|
31041
31041
|
await runUnsetupCodex();
|
|
31042
31042
|
return;
|
|
31043
31043
|
}
|
|
31044
31044
|
if (process.argv[2] === "setup") {
|
|
31045
|
-
const { runSetup } = await import("./setup-
|
|
31045
|
+
const { runSetup } = await import("./setup-CW3OJGSM.js");
|
|
31046
31046
|
await runSetup();
|
|
31047
31047
|
return;
|
|
31048
31048
|
}
|
|
31049
31049
|
if (process.argv[2] === "unsetup") {
|
|
31050
|
-
const { runUnsetup } = await import("./setup-
|
|
31050
|
+
const { runUnsetup } = await import("./setup-CW3OJGSM.js");
|
|
31051
31051
|
await runUnsetup();
|
|
31052
31052
|
return;
|
|
31053
31053
|
}
|
package/package.json
CHANGED