@arkheia/mcp-server 0.1.2 → 0.1.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/README.md +43 -44
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
|
-
# Arkheia MCP Server — Fabrication Detection for
|
|
1
|
+
# Arkheia MCP Server — Fabrication Detection for AI Agents
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
Free tier included (1,500 detections/month).
|
|
3
|
+
Know when your AI is making things up.
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
Arkheia screens model responses for fabrication using behavioural fingerprinting. Works with Claude, GPT, Gemini, Grok, Llama, Mistral, and 30+ other models. One tool call. Real-time risk scoring.
|
|
6
|
+
|
|
7
|
+
Free tier: 1,500 detections/month. No credit card.
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
## Quick Start
|
|
9
10
|
|
|
10
11
|
```bash
|
|
11
|
-
|
|
12
|
-
cd ~/.arkheia-mcp
|
|
13
|
-
python -m venv .venv
|
|
14
|
-
source .venv/bin/activate # Windows: .venv\Scripts\activate
|
|
15
|
-
pip install -r requirements.txt
|
|
12
|
+
npx @arkheia/mcp-server
|
|
16
13
|
```
|
|
17
14
|
|
|
18
|
-
|
|
15
|
+
Get a free API key:
|
|
19
16
|
|
|
20
17
|
```bash
|
|
21
18
|
curl -X POST https://arkheia-proxy-production.up.railway.app/v1/provision \
|
|
@@ -23,68 +20,70 @@ curl -X POST https://arkheia-proxy-production.up.railway.app/v1/provision \
|
|
|
23
20
|
-d '{"email": "you@example.com"}'
|
|
24
21
|
```
|
|
25
22
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
Edit your config file:
|
|
29
|
-
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
30
|
-
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
23
|
+
Add to your agent config (Claude Code, Claude Desktop, Cursor, or any MCP-compatible tool):
|
|
31
24
|
|
|
32
25
|
```json
|
|
33
26
|
{
|
|
34
27
|
"mcpServers": {
|
|
35
28
|
"arkheia": {
|
|
36
|
-
"command": "
|
|
29
|
+
"command": "python",
|
|
37
30
|
"args": ["-m", "mcp_server.server"],
|
|
38
|
-
"cwd": "~/.arkheia
|
|
31
|
+
"cwd": "~/.arkheia/mcp",
|
|
39
32
|
"env": {
|
|
40
|
-
"PYTHONPATH": "~/.arkheia
|
|
41
|
-
"ARKHEIA_API_KEY": "
|
|
33
|
+
"PYTHONPATH": "~/.arkheia/mcp",
|
|
34
|
+
"ARKHEIA_API_KEY": "ak_live_your_key_here"
|
|
42
35
|
}
|
|
43
36
|
}
|
|
44
37
|
}
|
|
45
38
|
}
|
|
46
39
|
```
|
|
47
40
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### 4. Restart Claude and verify
|
|
51
|
-
|
|
52
|
-
Restart Claude Desktop (quit and reopen, not just close window). The Arkheia tools will appear automatically.
|
|
41
|
+
Restart your agent. Then ask it:
|
|
53
42
|
|
|
54
|
-
|
|
43
|
+
> "Use arkheia_verify to check this response: The Kafka 4.1 ConsumerLease API introduces a lease-based partition ownership model."
|
|
55
44
|
|
|
56
|
-
|
|
45
|
+
It should flag this as **HIGH** risk — because the Kafka 4.1 ConsumerLease API doesn't exist.
|
|
57
46
|
|
|
58
|
-
##
|
|
47
|
+
## What You Get
|
|
59
48
|
|
|
60
49
|
| Tool | Description |
|
|
61
50
|
|------|-------------|
|
|
62
|
-
| `arkheia_verify` | Score any model
|
|
63
|
-
| `arkheia_audit_log` | Review detection history |
|
|
64
|
-
| `run_grok` | Call
|
|
65
|
-
| `run_gemini` | Call
|
|
66
|
-
| `run_together` | Call Together AI (Kimi, DeepSeek) + screen |
|
|
51
|
+
| `arkheia_verify` | Score any model response for fabrication risk (LOW/MEDIUM/HIGH) |
|
|
52
|
+
| `arkheia_audit_log` | Review your detection history |
|
|
53
|
+
| `run_grok` | Call Grok + screen for fabrication |
|
|
54
|
+
| `run_gemini` | Call Gemini + screen for fabrication |
|
|
67
55
|
| `run_ollama` | Call local Ollama model + screen |
|
|
68
|
-
| `
|
|
56
|
+
| `run_together` | Call Together AI (Kimi, DeepSeek) + screen |
|
|
57
|
+
|
|
58
|
+
## 35+ Model Profiles
|
|
59
|
+
|
|
60
|
+
GPT-4o, GPT-5.4, Claude Opus/Sonnet/Haiku, Gemini 2.5/3.0, Grok 4, Llama, Mixtral, CodeLlama, Falcon, Phi4, Kimi K2.5, and more. If your model isn't listed, [let us know](mailto:dmurfet@arkheia.ai).
|
|
69
61
|
|
|
70
62
|
## Pricing
|
|
71
63
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
64
|
+
| Plan | Price | Detections |
|
|
65
|
+
|------|-------|------------|
|
|
66
|
+
| Free | $0 | 1,500/month |
|
|
67
|
+
| Single Contributor | $99/month | Unlimited |
|
|
68
|
+
| Professional | $499/month | Unlimited |
|
|
69
|
+
| Team | $1,999/month | Unlimited |
|
|
70
|
+
|
|
71
|
+
## Full Documentation
|
|
76
72
|
|
|
77
|
-
|
|
73
|
+
See the [GitHub repo](https://github.com/arkheiaai/arkheia-mcp) for:
|
|
74
|
+
- Complete setup guide for all agents
|
|
75
|
+
- CLAUDE.md template for automatic detection across projects
|
|
76
|
+
- Multi-agent quorum pattern
|
|
77
|
+
- Test prompts and examples
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
- Git
|
|
79
|
+
## Feedback
|
|
81
80
|
|
|
82
|
-
|
|
81
|
+
- **GitHub Issues:** https://github.com/arkheiaai/arkheia-mcp/issues
|
|
82
|
+
- **Email:** dmurfet@arkheia.ai
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
Every message is read by the founder.
|
|
85
85
|
|
|
86
86
|
## Links
|
|
87
87
|
|
|
88
88
|
- Website: https://arkheia.ai
|
|
89
89
|
- GitHub: https://github.com/arkheiaai/arkheia-mcp
|
|
90
|
-
- Support: support@arkheia.ai
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkheia/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"mcpName": "io.github.arkheiaai/mcp-server",
|
|
5
5
|
"description": "Arkheia MCP Server — Fabrication detection for LLM outputs. Detect hallucination in any model's output with a single tool call.",
|
|
6
6
|
"bin": {
|