playwright-checkpoint 0.1.0-beta.0 → 0.3.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/dist/cli/bin.cjs +1 -1
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.cjs +1 -1
- package/dist/mcp/index.cjs.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/bin.cjs
CHANGED
|
@@ -3564,7 +3564,7 @@ async function startMcpProxy(options = {}) {
|
|
|
3564
3564
|
inputSchema: t.inputSchema
|
|
3565
3565
|
}));
|
|
3566
3566
|
const allTools = [...checkpointTools, ...upstreamTools];
|
|
3567
|
-
const server = new Server({ name: "playwright-checkpoint", version: "0.1.0
|
|
3567
|
+
const server = new Server({ name: "playwright-checkpoint", version: "0.1.0" }, { capabilities: { tools: {} } });
|
|
3568
3568
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
3569
3569
|
return { tools: allTools };
|
|
3570
3570
|
});
|