mandala-computer-mcp 0.1.0 → 0.1.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/server.d.ts +1 -1
- package/dist/server.js +1 -1
- package/package.json +1 -1
package/dist/server.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
|
2
2
|
import { type SessionConfig } from './session.js';
|
|
3
3
|
import type { ToolOptions } from './tools/types.js';
|
|
4
4
|
export declare const SERVER_NAME = "mandala-computer";
|
|
5
|
-
export declare const SERVER_VERSION = "0.1.
|
|
5
|
+
export declare const SERVER_VERSION = "0.1.1";
|
|
6
6
|
export type ServerConfig = SessionConfig & Partial<ToolOptions> & {
|
|
7
7
|
/** Internal HTTP hook: hold a session active for the real tool callback lifetime. */
|
|
8
8
|
activity?: () => () => void;
|
package/dist/server.js
CHANGED
|
@@ -9,7 +9,7 @@ import { registerSnapshots } from './tools/snapshots.js';
|
|
|
9
9
|
import { registerTemplates } from './tools/templates.js';
|
|
10
10
|
import { registerWebhooks } from './tools/webhooks.js';
|
|
11
11
|
export const SERVER_NAME = 'mandala-computer';
|
|
12
|
-
export const SERVER_VERSION = '0.1.
|
|
12
|
+
export const SERVER_VERSION = '0.1.1';
|
|
13
13
|
/**
|
|
14
14
|
* Told to the client on connect, and shown to the model before any tool is
|
|
15
15
|
* called. It is the only place to say the things that are true of the whole
|