-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.98 KB
/
Copy pathserver.json
File metadata and controls
57 lines (57 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.qingxuantang/tar-engine",
"title": "TAR Engine",
"description": "Audit AI skill safety before you ship. Static, semantic, adversarial, supply chain scans.",
"version": "0.3.3",
"repository": {
"url": "https://github.com/qingxuantang/tar-engine",
"source": "github"
},
"websiteUrl": "https://tarai.dev",
"packages": [
{
"registryType": "pypi",
"identifier": "tar-engine",
"version": "0.3.3",
"transport": {
"type": "stdio"
},
"runtimeHint": "uvx",
"packageArguments": [
{
"type": "positional",
"name": "--from",
"value": "tar-engine",
"description": "Install the tar-engine wheel that provides the tar-engine-mcp executable."
},
{
"type": "positional",
"name": "tar-engine-mcp",
"value": "tar-engine-mcp",
"description": "Run the MCP server entry point exposed by the tar-engine wheel."
}
],
"environmentVariables": [
{
"name": "TAR_ENGINE_URL",
"description": "Override the audit backend. Default is the hosted playground at https://tarai.dev. Set to http://localhost:8765 (or your own tar-engine deployment) to self-host and keep SKILL.md content on your machine.",
"isRequired": false,
"isSecret": false
},
{
"name": "TAR_ENGINE_BYOK_OPENAI_KEY",
"description": "OpenAI API key that unlocks the semantic LLM and adversarial prompt-fuzz layers. Static and supply-chain layers run without it.",
"isRequired": false,
"isSecret": true
},
{
"name": "TAR_ENGINE_BYOK_ANTHROPIC_KEY",
"description": "Anthropic API key alternative to the OpenAI key for the semantic and adversarial layers.",
"isRequired": false,
"isSecret": true
}
]
}
]
}