Skip to content

Commit e7ed492

Browse files
committed
Add vardoger
Signed-off-by: David Strupl <dstrupl@gmail.com> Made-with: Cursor
1 parent c2fca16 commit e7ed492

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.github-dstrupl-vardoger",
4+
"name": "vardoger",
5+
"alias": "vardoger",
6+
"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.",
7+
"icon": "🪞",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools", "productivity", "ai-ml"],
10+
"tags": ["personalization", "local-first", "history", "rules", "skills"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "vardoger",
15+
"args": ["mcp"],
16+
"env": {
17+
"VARDOGER_MCP_PLATFORM": "${input:VARDOGER_MCP_PLATFORM}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "VARDOGER_MCP_PLATFORM",
23+
"label": "Host platform (optional)",
24+
"description": "Override the platform identifier the MCP server defaults to. Leave blank to let vardoger pick based on the calling host. Valid values: cursor, claude-code, codex, copilot, windsurf, cline, openclaw.",
25+
"type": "text",
26+
"required": false,
27+
"secret": false,
28+
"placeholder": "cursor"
29+
}
30+
]
31+
}
32+
},
33+
34+
"auth": {
35+
"type": "none",
36+
"instructions": "vardoger reads local filesystem paths only (e.g. ~/.cursor/, ~/.claude/, ~/.codex/). No API keys or OAuth required."
37+
},
38+
39+
"contributor": {
40+
"name": "David Strupl",
41+
"github": "dstrupl",
42+
"url": "https://github.com/dstrupl/vardoger"
43+
},
44+
45+
"links": {
46+
"repository": "https://github.com/dstrupl/vardoger",
47+
"documentation": "https://github.com/dstrupl/vardoger#readme",
48+
"homepage": "https://github.com/dstrupl/vardoger",
49+
"issues": "https://github.com/dstrupl/vardoger/issues"
50+
},
51+
52+
"platforms": ["all"],
53+
54+
"capabilities": {
55+
"tools": true,
56+
"resources": false,
57+
"prompts": false,
58+
"read_only_mode": false
59+
}
60+
}

0 commit comments

Comments
 (0)