@clipform/mcp-server 1.47.1 → 2.0.0
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/README.md +5 -2
- package/dist/{chunk-MV27JVSL.js → chunk-6U3CVTLZ.js} +14 -14
- package/dist/{chunk-MV27JVSL.js.map → chunk-6U3CVTLZ.js.map} +1 -1
- package/dist/{chunk-UH77CDNO.js → chunk-AP6UGWKC.js} +2 -2
- package/dist/{chunk-PJNOCHKR.js → chunk-GDUJLYR4.js} +90 -51
- package/dist/chunk-GDUJLYR4.js.map +1 -0
- package/dist/{chunk-JT7YWEQP.js → chunk-RX7V2UCM.js} +970 -133
- package/dist/chunk-RX7V2UCM.js.map +1 -0
- package/dist/index.js +4 -4
- package/dist/prompts.js +2 -2
- package/dist/resources.js +2 -2
- package/dist/server.d.ts +10 -1
- package/dist/server.js +6 -4
- package/package.json +1 -1
- package/dist/chunk-JT7YWEQP.js.map +0 -1
- package/dist/chunk-PJNOCHKR.js.map +0 -1
- /package/dist/{chunk-UH77CDNO.js.map → chunk-AP6UGWKC.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
import {
|
|
3
3
|
JSONRPCMessageSchema,
|
|
4
4
|
createServer
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-RX7V2UCM.js";
|
|
6
|
+
import "./chunk-6U3CVTLZ.js";
|
|
7
|
+
import "./chunk-AP6UGWKC.js";
|
|
8
8
|
import {
|
|
9
9
|
setMcpVersion
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-GDUJLYR4.js";
|
|
11
11
|
import "./chunk-HCZI2UJ5.js";
|
|
12
12
|
|
|
13
13
|
// src/index.ts
|
package/dist/prompts.js
CHANGED
package/dist/resources.js
CHANGED
package/dist/server.d.ts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
2
2
|
|
|
3
|
+
declare const RENDER_TIMING: {
|
|
4
|
+
readonly expectedRange: "15-120 seconds";
|
|
5
|
+
readonly pollDelay: "~15 seconds";
|
|
6
|
+
/** Rounder phrasing for chat/email ETA acks (#1964) - not exact enough for
|
|
7
|
+
* a poll instruction like the two above, but right for "still rendering,
|
|
8
|
+
* you'll hear back in..." copy. Never hardcode minutes in api code. */
|
|
9
|
+
readonly etaPhrase: "a couple of minutes";
|
|
10
|
+
};
|
|
11
|
+
|
|
3
12
|
interface CreateServerOptions {
|
|
4
13
|
onToolError?: (toolName: string, error: Error) => void;
|
|
5
14
|
/**
|
|
@@ -12,4 +21,4 @@ interface CreateServerOptions {
|
|
|
12
21
|
}
|
|
13
22
|
declare function createServer(options?: CreateServerOptions): McpServer;
|
|
14
23
|
|
|
15
|
-
export { type CreateServerOptions, createServer };
|
|
24
|
+
export { type CreateServerOptions, RENDER_TIMING, createServer };
|
package/dist/server.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
|
+
RENDER_TIMING,
|
|
2
3
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-RX7V2UCM.js";
|
|
5
|
+
import "./chunk-6U3CVTLZ.js";
|
|
6
|
+
import "./chunk-AP6UGWKC.js";
|
|
7
|
+
import "./chunk-GDUJLYR4.js";
|
|
7
8
|
import "./chunk-HCZI2UJ5.js";
|
|
8
9
|
export {
|
|
10
|
+
RENDER_TIMING,
|
|
9
11
|
createServer
|
|
10
12
|
};
|
|
11
13
|
//# sourceMappingURL=server.js.map
|