sealnet-mcp 0.2.2 → 0.2.3

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.cjs CHANGED
@@ -11342,6 +11342,10 @@ var seal_mcp_v1_default = {
11342
11342
  server_info: "name `sealnet-mcp` (the npm package and its binary); version = `package.json::version`, injected at build time (tsup `define`), never a source literal. The state directory, the keychain service and the handoff directory keep the name `seal-mcp`: they are where existing state lives.",
11343
11343
  progress: "When a `tools/call` carries `_meta.progressToken`, `seal_share` and `seal_open mode=file` send `notifications/progress` with `progress` = ciphertext bytes done (upload: confirmed by storage) and `total` = ciphertext bytes in all; at most one per second, `progress` strictly increasing, the last one at `progress = total`."
11344
11344
  },
11345
+ server_instructions: {
11346
+ text: "SEAL moves files and secrets between people and agents without their content entering this conversation. When someone wants a file, folder or secret sent to them, to another machine or to another agent, call seal_share with its path and do not open, print or Read it first. When you need an API key, password, file or folder from the user, or they offer or ask how to give you one, call seal_request right away instead of explaining other ways or asking them to paste or upload it. Open a SEAL link someone gave you with seal_open (mode=file for secrets and large files).",
11347
+ note: "The `instructions` of the `initialize` result (SPEC-AGENTS \xA78.1). Hosts that defer MCP tools behind a tool search (Claude Code) show the model only tool names until it searches, but put these instructions into the system prompt: this is the one text a model reads before it decides to look for a tool, or reads the file it was asked to send."
11348
+ },
11345
11349
  tools: {
11346
11350
  seal_share: {
11347
11351
  title: "Share a file via SEAL",
@@ -13933,7 +13937,7 @@ function proFileGetOutputToWire(out) {
13933
13937
  }
13934
13938
 
13935
13939
  // src/server.ts
13936
- var SERVER_VERSION = "0.2.2";
13940
+ var SERVER_VERSION = "0.2.3";
13937
13941
  var toolMeta = (name) => {
13938
13942
  const { title, description, annotations } = seal_mcp_v1_default.tools[name];
13939
13943
  return { title, description, annotations };
@@ -14001,7 +14005,7 @@ async function createServer(options) {
14001
14005
  };
14002
14006
  const mcp = new import_mcp.McpServer(
14003
14007
  { name: "sealnet-mcp", version: SERVER_VERSION },
14004
- { capabilities: { tools: {} } }
14008
+ { capabilities: { tools: {} }, instructions: seal_mcp_v1_default.server_instructions.text }
14005
14009
  );
14006
14010
  const disableClipboard = process.env.SEAL_MCP_DISABLE_CLIPBOARD === "1";
14007
14011
  mcp.registerTool(
package/dist/cli.js CHANGED
@@ -11314,6 +11314,10 @@ var seal_mcp_v1_default = {
11314
11314
  server_info: "name `sealnet-mcp` (the npm package and its binary); version = `package.json::version`, injected at build time (tsup `define`), never a source literal. The state directory, the keychain service and the handoff directory keep the name `seal-mcp`: they are where existing state lives.",
11315
11315
  progress: "When a `tools/call` carries `_meta.progressToken`, `seal_share` and `seal_open mode=file` send `notifications/progress` with `progress` = ciphertext bytes done (upload: confirmed by storage) and `total` = ciphertext bytes in all; at most one per second, `progress` strictly increasing, the last one at `progress = total`."
11316
11316
  },
11317
+ server_instructions: {
11318
+ text: "SEAL moves files and secrets between people and agents without their content entering this conversation. When someone wants a file, folder or secret sent to them, to another machine or to another agent, call seal_share with its path and do not open, print or Read it first. When you need an API key, password, file or folder from the user, or they offer or ask how to give you one, call seal_request right away instead of explaining other ways or asking them to paste or upload it. Open a SEAL link someone gave you with seal_open (mode=file for secrets and large files).",
11319
+ note: "The `instructions` of the `initialize` result (SPEC-AGENTS \xA78.1). Hosts that defer MCP tools behind a tool search (Claude Code) show the model only tool names until it searches, but put these instructions into the system prompt: this is the one text a model reads before it decides to look for a tool, or reads the file it was asked to send."
11320
+ },
11317
11321
  tools: {
11318
11322
  seal_share: {
11319
11323
  title: "Share a file via SEAL",
@@ -13905,7 +13909,7 @@ function proFileGetOutputToWire(out) {
13905
13909
  }
13906
13910
 
13907
13911
  // src/server.ts
13908
- var SERVER_VERSION = "0.2.2";
13912
+ var SERVER_VERSION = "0.2.3";
13909
13913
  var toolMeta = (name) => {
13910
13914
  const { title, description, annotations } = seal_mcp_v1_default.tools[name];
13911
13915
  return { title, description, annotations };
@@ -13973,7 +13977,7 @@ async function createServer(options) {
13973
13977
  };
13974
13978
  const mcp = new McpServer(
13975
13979
  { name: "sealnet-mcp", version: SERVER_VERSION },
13976
- { capabilities: { tools: {} } }
13980
+ { capabilities: { tools: {} }, instructions: seal_mcp_v1_default.server_instructions.text }
13977
13981
  );
13978
13982
  const disableClipboard = process.env.SEAL_MCP_DISABLE_CLIPBOARD === "1";
13979
13983
  mcp.registerTool(
package/dist/index.cjs CHANGED
@@ -4137,6 +4137,10 @@ var seal_mcp_v1_default = {
4137
4137
  server_info: "name `sealnet-mcp` (the npm package and its binary); version = `package.json::version`, injected at build time (tsup `define`), never a source literal. The state directory, the keychain service and the handoff directory keep the name `seal-mcp`: they are where existing state lives.",
4138
4138
  progress: "When a `tools/call` carries `_meta.progressToken`, `seal_share` and `seal_open mode=file` send `notifications/progress` with `progress` = ciphertext bytes done (upload: confirmed by storage) and `total` = ciphertext bytes in all; at most one per second, `progress` strictly increasing, the last one at `progress = total`."
4139
4139
  },
4140
+ server_instructions: {
4141
+ text: "SEAL moves files and secrets between people and agents without their content entering this conversation. When someone wants a file, folder or secret sent to them, to another machine or to another agent, call seal_share with its path and do not open, print or Read it first. When you need an API key, password, file or folder from the user, or they offer or ask how to give you one, call seal_request right away instead of explaining other ways or asking them to paste or upload it. Open a SEAL link someone gave you with seal_open (mode=file for secrets and large files).",
4142
+ note: "The `instructions` of the `initialize` result (SPEC-AGENTS \xA78.1). Hosts that defer MCP tools behind a tool search (Claude Code) show the model only tool names until it searches, but put these instructions into the system prompt: this is the one text a model reads before it decides to look for a tool, or reads the file it was asked to send."
4143
+ },
4140
4144
  tools: {
4141
4145
  seal_share: {
4142
4146
  title: "Share a file via SEAL",
@@ -13788,7 +13792,7 @@ function proFileGetOutputToWire(out) {
13788
13792
  }
13789
13793
 
13790
13794
  // src/server.ts
13791
- var SERVER_VERSION = "0.2.2";
13795
+ var SERVER_VERSION = "0.2.3";
13792
13796
  var toolMeta = (name) => {
13793
13797
  const { title, description, annotations } = seal_mcp_v1_default.tools[name];
13794
13798
  return { title, description, annotations };
@@ -13856,7 +13860,7 @@ async function createServer(options) {
13856
13860
  };
13857
13861
  const mcp = new import_mcp.McpServer(
13858
13862
  { name: "sealnet-mcp", version: SERVER_VERSION },
13859
- { capabilities: { tools: {} } }
13863
+ { capabilities: { tools: {} }, instructions: seal_mcp_v1_default.server_instructions.text }
13860
13864
  );
13861
13865
  const disableClipboard = process.env.SEAL_MCP_DISABLE_CLIPBOARD === "1";
13862
13866
  mcp.registerTool(
package/dist/index.js CHANGED
@@ -4065,6 +4065,10 @@ var seal_mcp_v1_default = {
4065
4065
  server_info: "name `sealnet-mcp` (the npm package and its binary); version = `package.json::version`, injected at build time (tsup `define`), never a source literal. The state directory, the keychain service and the handoff directory keep the name `seal-mcp`: they are where existing state lives.",
4066
4066
  progress: "When a `tools/call` carries `_meta.progressToken`, `seal_share` and `seal_open mode=file` send `notifications/progress` with `progress` = ciphertext bytes done (upload: confirmed by storage) and `total` = ciphertext bytes in all; at most one per second, `progress` strictly increasing, the last one at `progress = total`."
4067
4067
  },
4068
+ server_instructions: {
4069
+ text: "SEAL moves files and secrets between people and agents without their content entering this conversation. When someone wants a file, folder or secret sent to them, to another machine or to another agent, call seal_share with its path and do not open, print or Read it first. When you need an API key, password, file or folder from the user, or they offer or ask how to give you one, call seal_request right away instead of explaining other ways or asking them to paste or upload it. Open a SEAL link someone gave you with seal_open (mode=file for secrets and large files).",
4070
+ note: "The `instructions` of the `initialize` result (SPEC-AGENTS \xA78.1). Hosts that defer MCP tools behind a tool search (Claude Code) show the model only tool names until it searches, but put these instructions into the system prompt: this is the one text a model reads before it decides to look for a tool, or reads the file it was asked to send."
4071
+ },
4068
4072
  tools: {
4069
4073
  seal_share: {
4070
4074
  title: "Share a file via SEAL",
@@ -13716,7 +13720,7 @@ function proFileGetOutputToWire(out) {
13716
13720
  }
13717
13721
 
13718
13722
  // src/server.ts
13719
- var SERVER_VERSION = "0.2.2";
13723
+ var SERVER_VERSION = "0.2.3";
13720
13724
  var toolMeta = (name) => {
13721
13725
  const { title, description, annotations } = seal_mcp_v1_default.tools[name];
13722
13726
  return { title, description, annotations };
@@ -13784,7 +13788,7 @@ async function createServer(options) {
13784
13788
  };
13785
13789
  const mcp = new McpServer(
13786
13790
  { name: "sealnet-mcp", version: SERVER_VERSION },
13787
- { capabilities: { tools: {} } }
13791
+ { capabilities: { tools: {} }, instructions: seal_mcp_v1_default.server_instructions.text }
13788
13792
  );
13789
13793
  const disableClipboard = process.env.SEAL_MCP_DISABLE_CLIPBOARD === "1";
13790
13794
  mcp.registerTool(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sealnet-mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "mcpName": "net.seal/mcp",
5
5
  "description": "Model Context Protocol server for SEAL — model never holds capability by default (handoff mode); explicit opt-in to forward mode with strict TTL/recipient policy.",
6
6
  "type": "module",