Skip to content

Commit 2b7129a

Browse files
committed
Add codemogger and memelord
1 parent 4cc36da commit 2b7129a

5 files changed

Lines changed: 65 additions & 0 deletions

File tree

.codex/config.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[mcp_servers.codemogger]
2+
command = "npx"
3+
args = ["-y", "codemogger", "mcp"]
4+
enabled = true
5+
[mcp_servers.memelord]
6+
command = "memelord"
7+
args = ["serve"]
8+
env = { MEMELORD_DIR = "/Users/fulopkovacs/dev-projects/2025/trytanstackdb.com/fix-displaced-todo-items/.memelord" }
9+
enabled = true

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ todos.json
1515

1616
# My local notes
1717
notes.md
18+
.memelord/
19+
.codemogger

.mcp.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"mcpServers": {
3+
"codemogger": {
4+
"command": "npx",
5+
"args": ["-y", "codemogger", "mcp"]
6+
},
7+
"memelord": {
8+
"command": "memelord",
9+
"args": ["serve"],
10+
"env": {
11+
"MEMELORD_DIR": "/Users/fulopkovacs/dev-projects/2025/trytanstackdb.com/fix-displaced-todo-items/.memelord"
12+
}
13+
}
14+
}
15+
}

config/mcporter.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"mcpServers": {
3+
"codemogger": {
4+
"command": "npx",
5+
"args": [
6+
"-y",
7+
"codemogger",
8+
"mcp"
9+
]
10+
},
11+
"memelord": {
12+
"command": "memelord",
13+
"args": [
14+
"serve"
15+
],
16+
"env": {
17+
"MEMELORD_DIR": "/Users/fulopkovacs/dev-projects/2025/trytanstackdb.com/fix-displaced-todo-items/.memelord"
18+
}
19+
}
20+
}
21+
}

opencode.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"$schema": "https://opencode.ai/config.json",
3+
"mcp": {
4+
"codemogger": {
5+
"type": "local",
6+
"command": ["npx", "-y", "codemogger", "mcp"],
7+
"enabled": true
8+
},
9+
"memelord": {
10+
"type": "local",
11+
"command": ["memelord", "serve"],
12+
"environment": {
13+
"MEMELORD_DIR": "/Users/fulopkovacs/dev-projects/2025/trytanstackdb.com/fix-displaced-todo-items/.memelord"
14+
},
15+
"enabled": true
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)