Signs of AI Writing for VS Code
io.github.peopleworks/signs-of-ai
AI-writing detection (EN/ES) that shows the evidence: named tells, hidden characters, citations.
client:VS Code
transport:stdio
runtime:nuget
Install Signs of AI Writing in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "signsofai-api-endpoint",
"description": "SIGNSOFAI_API_ENDPOINT",
"password": true
}
],
"servers": {
"signs-of-ai": {
"type": "stdio",
"command": "dnx",
"args": [
"SignsOfAI.Mcp",
"--yes"
],
"env": {
"SIGNSOFAI_API_ENDPOINT": "${input:signsofai-api-endpoint}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs