@de-otio/epimethian-mcp 6.7.0 → 6.7.1
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/cli/index.js +9 -9
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -35481,7 +35481,7 @@ async function getPage(pageId, includeBody) {
|
|
|
35481
35481
|
async function _rawCreatePage(spaceId, title, body, parentId, clientLabel) {
|
|
35482
35482
|
const cfg = await getConfig();
|
|
35483
35483
|
const pageBody = normalizeBodyForSubmit(body);
|
|
35484
|
-
const epimethianTag = `Epimethian v${"6.7.
|
|
35484
|
+
const epimethianTag = `Epimethian v${"6.7.1"}`;
|
|
35485
35485
|
const versionMsg = cfg.attribution && clientLabel ? `Created by ${clientLabel} (via ${epimethianTag})` : `Created by ${epimethianTag}`;
|
|
35486
35486
|
const payload = {
|
|
35487
35487
|
title,
|
|
@@ -35502,7 +35502,7 @@ async function _rawCreatePage(spaceId, title, body, parentId, clientLabel) {
|
|
|
35502
35502
|
async function _rawUpdatePage(pageId, opts) {
|
|
35503
35503
|
const cfg = await getConfig();
|
|
35504
35504
|
const newVersion = opts.version + 1;
|
|
35505
|
-
const epimethianTag = `Epimethian v${"6.7.
|
|
35505
|
+
const epimethianTag = `Epimethian v${"6.7.1"}`;
|
|
35506
35506
|
const effectiveClient = cfg.attribution ? opts.clientLabel : void 0;
|
|
35507
35507
|
let versionMessage;
|
|
35508
35508
|
if (opts.versionMessage && effectiveClient)
|
|
@@ -49973,7 +49973,7 @@ __export(upgrade_exports, {
|
|
|
49973
49973
|
runUpgrade: () => runUpgrade
|
|
49974
49974
|
});
|
|
49975
49975
|
async function runUpgrade() {
|
|
49976
|
-
const currentVersion = "6.7.
|
|
49976
|
+
const currentVersion = "6.7.1";
|
|
49977
49977
|
console.log(`epimethian-mcp upgrade: current version v${currentVersion}`);
|
|
49978
49978
|
let pending = await getPendingUpdate();
|
|
49979
49979
|
if (!pending) {
|
|
@@ -63867,7 +63867,7 @@ ${titleFenced}${echo2}`
|
|
|
63867
63867
|
inputSchema: {}
|
|
63868
63868
|
},
|
|
63869
63869
|
async () => {
|
|
63870
|
-
let text2 = `epimethian-mcp v${"6.7.
|
|
63870
|
+
let text2 = `epimethian-mcp v${"6.7.1"}`;
|
|
63871
63871
|
try {
|
|
63872
63872
|
const pending = await getPendingUpdate();
|
|
63873
63873
|
if (pending) {
|
|
@@ -63898,7 +63898,7 @@ ${label} update available: v${pending.current} \u2192 v${pending.latest}. Run \`
|
|
|
63898
63898
|
const pending = await getPendingUpdate();
|
|
63899
63899
|
if (!pending) {
|
|
63900
63900
|
return toolResult(
|
|
63901
|
-
`epimethian-mcp v${"6.7.
|
|
63901
|
+
`epimethian-mcp v${"6.7.1"} is already up to date.`
|
|
63902
63902
|
);
|
|
63903
63903
|
}
|
|
63904
63904
|
const output = await performUpgrade(pending.latest);
|
|
@@ -63920,7 +63920,7 @@ async function startRecoveryServer(profile) {
|
|
|
63920
63920
|
const server = new McpServer(
|
|
63921
63921
|
{
|
|
63922
63922
|
name: `confluence-${profile}-setup-needed`,
|
|
63923
|
-
version: "6.7.
|
|
63923
|
+
version: "6.7.1"
|
|
63924
63924
|
},
|
|
63925
63925
|
{
|
|
63926
63926
|
instructions: `The Confluence profile "${profile}" referenced by CONFLUENCE_PROFILE has no keychain entry, so no Confluence tools are available. Call the setup_profile tool for instructions to create it.`
|
|
@@ -63971,21 +63971,21 @@ async function main() {
|
|
|
63971
63971
|
const serverName = config3.profile ? `confluence-${config3.profile}` : "confluence";
|
|
63972
63972
|
const server = new McpServer({
|
|
63973
63973
|
name: serverName,
|
|
63974
|
-
version: "6.7.
|
|
63974
|
+
version: "6.7.1"
|
|
63975
63975
|
});
|
|
63976
63976
|
await registerTools(server, config3);
|
|
63977
63977
|
const transport = new StdioServerTransport();
|
|
63978
63978
|
await server.connect(transport);
|
|
63979
63979
|
try {
|
|
63980
63980
|
const pending = await getPendingUpdate();
|
|
63981
|
-
if (pending && pending.current === "6.7.
|
|
63981
|
+
if (pending && pending.current === "6.7.1") {
|
|
63982
63982
|
console.error(
|
|
63983
63983
|
`epimethian-mcp: update available: v${pending.current} \u2192 v${pending.latest} (${pending.type}). Run \`epimethian-mcp upgrade\` to install.`
|
|
63984
63984
|
);
|
|
63985
63985
|
}
|
|
63986
63986
|
} catch {
|
|
63987
63987
|
}
|
|
63988
|
-
checkForUpdates("6.7.
|
|
63988
|
+
checkForUpdates("6.7.1").catch(() => {
|
|
63989
63989
|
});
|
|
63990
63990
|
}
|
|
63991
63991
|
|