mcp-varianceiskey
v1.0.0
Published
Local-first MCP Server for AI text detection using VarianceisKey algorithm
Maintainers
Readme
MCP VarianceisKey
TypeScript MCP Server for the VarianceisKey AI text detection system.
Installation
npm install
npm run buildUsage
Global Installation (Recommended)
npm install -g mcp-varianceiskeyThen configure your MCP client:
{
"mcpServers": {
"varianceiskey": {
"command": "mcp-varianceiskey",
"env": {
"DETECTOR_API_URL": "http://127.0.0.1:8765"
}
}
}
}Local Development
{
"mcpServers": {
"varianceiskey": {
"command": "node",
"args": ["/path/to/mcp-local-ts/dist/cli.js"],
"env": {
"DETECTOR_API_URL": "http://127.0.0.1:8765"
}
}
}
}Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| DETECTOR_API_URL | http://127.0.0.1:8765 | Detector API endpoint |
Tool: detect_text
Input:
{
"text": "Text to analyze"
}Output:
{
"label": "likely_ai",
"score": 0.1948,
"model_name": "Qwen3-0.6B"
}Documentation
See the main documentation for full setup instructions.
