Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions servers/io.github-dstrupl-vardoger.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "io.github-dstrupl-vardoger",
"name": "vardoger",
"alias": "vardoger",
"description": "Personalize AI coding assistants by analyzing local conversation history. Reads JSONL session logs from Cursor, Claude Code, Codex, Copilot CLI, Windsurf, Cline, and OpenClaw, extracts behavioral signals, and writes tailored rules files. Runs entirely on your machine.",
"icon": "🪞",
"schema_version": "2.1",
"categories": ["developer-tools", "productivity", "ai-ml"],
"tags": ["personalization", "local-first", "history", "rules", "skills"],

"transport": {
"type": "stdio",
"command": "vardoger",
"args": ["mcp"],
"env": {
"VARDOGER_MCP_PLATFORM": "${input:VARDOGER_MCP_PLATFORM}"
},
"metadata": {
"inputs": [
{
"id": "VARDOGER_MCP_PLATFORM",
"label": "Host platform (optional)",
"description": "Override the platform identifier the MCP server defaults to. Leave blank (Auto-detect) to let vardoger pick based on the calling host.",
"type": "select",
"required": false,
"secret": false,
"default": "",
"options": [
{ "value": "", "label": "Auto-detect (default)", "description": "Let vardoger pick based on the calling host." },
{ "value": "cursor", "label": "Cursor" },
{ "value": "claude-code", "label": "Claude Code" },
{ "value": "codex", "label": "Codex" },
{ "value": "openclaw", "label": "OpenClaw" },
{ "value": "copilot", "label": "GitHub Copilot CLI" },
{ "value": "windsurf", "label": "Windsurf" },
{ "value": "cline", "label": "Cline" }
]
}
]
}
},

"auth": {
"type": "none",
"instructions": "vardoger reads local filesystem paths only (e.g. ~/.cursor/, ~/.claude/, ~/.codex/). No API keys or OAuth required."
},

"contributor": {
"name": "David Strupl",
"github": "dstrupl",
"url": "https://github.com/dstrupl/vardoger"
},

"links": {
"repository": "https://github.com/dstrupl/vardoger",
"documentation": "https://github.com/dstrupl/vardoger#readme",
"homepage": "https://github.com/dstrupl/vardoger",
"issues": "https://github.com/dstrupl/vardoger/issues"
},

"platforms": ["all"],

"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}
Loading