@sanctuary-framework/mcp-server 0.5.16 → 0.6.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.cjs +583 -13
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +583 -13
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +581 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +581 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -60,6 +60,15 @@ interface SanctuaryConfig {
|
|
|
60
60
|
/** Host for callback listener */
|
|
61
61
|
callback_host: string;
|
|
62
62
|
};
|
|
63
|
+
/** Verascore integration (agent reputation surface) */
|
|
64
|
+
verascore: {
|
|
65
|
+
/** Base URL of the Verascore deployment. */
|
|
66
|
+
url: string;
|
|
67
|
+
/** Whether to auto-publish handshake attestations to Verascore. */
|
|
68
|
+
auto_publish_to_verascore: boolean;
|
|
69
|
+
/** Whether to auto-publish on successful handshake_respond calls. */
|
|
70
|
+
auto_publish_handshakes: boolean;
|
|
71
|
+
};
|
|
63
72
|
}
|
|
64
73
|
/**
|
|
65
74
|
* Load configuration from file, falling back to defaults.
|
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,15 @@ interface SanctuaryConfig {
|
|
|
60
60
|
/** Host for callback listener */
|
|
61
61
|
callback_host: string;
|
|
62
62
|
};
|
|
63
|
+
/** Verascore integration (agent reputation surface) */
|
|
64
|
+
verascore: {
|
|
65
|
+
/** Base URL of the Verascore deployment. */
|
|
66
|
+
url: string;
|
|
67
|
+
/** Whether to auto-publish handshake attestations to Verascore. */
|
|
68
|
+
auto_publish_to_verascore: boolean;
|
|
69
|
+
/** Whether to auto-publish on successful handshake_respond calls. */
|
|
70
|
+
auto_publish_handshakes: boolean;
|
|
71
|
+
};
|
|
63
72
|
}
|
|
64
73
|
/**
|
|
65
74
|
* Load configuration from file, falling back to defaults.
|