chore: add graph-aware code retrieval MCPs

This commit is contained in:
2026-07-11 19:39:54 -04:00
parent 71cac8e2d8
commit 835103e525
5 changed files with 49 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
[mcp_servers.codebase-memory-mcp]
command = "/opt/homebrew/bin/codebase-memory-mcp"
startup_timeout_sec = 30
tool_timeout_sec = 120
[mcp_servers.workspace-code-rag]
command = "/Users/dave/Workspace/repos/workspace-code-rag-mcp/.venv/bin/workspace-code-rag-mcp"
startup_timeout_sec = 30
tool_timeout_sec = 120
[mcp_servers.workspace-code-rag.env]
CODE_RAG_PROJECT_ROOT = "/Users/dave/Workspace/repos/rollthepic"
+1
View File
@@ -0,0 +1 @@
/.codebase-memory/
+17
View File
@@ -0,0 +1,17 @@
{
"mcpServers": {
"codebase-memory-mcp": {
"type": "stdio",
"command": "/opt/homebrew/bin/codebase-memory-mcp",
"args": []
},
"workspace-code-rag": {
"type": "stdio",
"command": "/Users/dave/Workspace/repos/workspace-code-rag-mcp/.venv/bin/workspace-code-rag-mcp",
"args": [],
"env": {
"CODE_RAG_PROJECT_ROOT": "/Users/dave/Workspace/repos/rollthepic"
}
}
}
}
+18
View File
@@ -0,0 +1,18 @@
# Repository guidance
This is currently a tiny placeholder/early-stage repository. Do not infer a
product architecture or deployment path until the owner defines one.
## Code discovery
- Inspect available MCP servers before broad repository exploration.
- Use `workspace-code-rag` first for natural-language code questions and
`codebase-memory-mcp` for structure, symbols, and change impact.
- Index this repository when source is added. Use text search only for exact
literals or when graph tools are unavailable, and verify findings in source.
## Safety
- Do not add dependencies, deployment infrastructure, or product behavior based
only on the current placeholder file.
- Never publish an image or deploy without explicit approval.
+1
View File
@@ -0,0 +1 @@
@AGENTS.md