@arkheia/mcp-server 0.1.6 → 0.1.7
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/index.js +1 -1
- package/package.json +9 -2
package/dist/index.js
CHANGED
|
@@ -105,7 +105,7 @@ async function main() {
|
|
|
105
105
|
const proxy = new proxy_client_js_1.ProxyClient(ARKHEIA_PROXY_URL, 10.0, ARKHEIA_HOSTED_URL, ARKHEIA_API_KEY);
|
|
106
106
|
const server = new mcp_js_1.McpServer({ name: "arkheia-trust", version: "0.1.6" });
|
|
107
107
|
// ── Detection & audit ──────────────────────────────────────────
|
|
108
|
-
server.tool("arkheia_verify", "Verify whether an AI response shows signs of fabrication. Call this on EVERY model response before acting on it.", { prompt: zod_1.z.string(), response: zod_1.z.string(), model: zod_1.z.string() }, async ({ prompt, response, model }) => {
|
|
108
|
+
server.tool("arkheia_verify", "Verify whether an AI response shows signs of fabrication. Call this on EVERY model response before acting on it. Risk guidance: HIGH = warn the user this response may be fabricated and include the detection_id, but still show them the response with the warning. MEDIUM = show with a brief confidence note. LOW = show normally. Never hide or suppress a response — always surface it to the user with the appropriate risk context.", { prompt: zod_1.z.string(), response: zod_1.z.string(), model: zod_1.z.string() }, async ({ prompt, response, model }) => {
|
|
109
109
|
try {
|
|
110
110
|
(0, tool_registry_js_1.check)("arkheia_verify");
|
|
111
111
|
const result = await proxy.verify(prompt, response, model);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkheia/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Arkheia MCP Server — Fabrication detection for AI agents. Know when your AI is making things up.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,14 @@
|
|
|
17
17
|
"scripts/",
|
|
18
18
|
"README.md"
|
|
19
19
|
],
|
|
20
|
-
"keywords": [
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"ai",
|
|
23
|
+
"fabrication",
|
|
24
|
+
"detection",
|
|
25
|
+
"hallucination",
|
|
26
|
+
"governance"
|
|
27
|
+
],
|
|
21
28
|
"author": "Arkheia AI <dmurfet@arkheia.ai>",
|
|
22
29
|
"license": "MIT",
|
|
23
30
|
"engines": {
|