From dc0ed0a3079bbdd5a152380a1f4efa6369a07616 Mon Sep 17 00:00:00 2001 From: Evgeny Gamov Date: Tue, 16 Jun 2026 17:25:28 +0500 Subject: [PATCH] chore: add project .mcp.json for dev server Run the MCP server from src via tsx so the in-repo client always uses current source. Avoids the stale/ missing dist trap from bare `npx dbmole-mcp` resolving the local package in this folder. --- .mcp.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..39aeb17 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,9 @@ +{ + "mcpServers": { + "dbmole": { + "type": "stdio", + "command": "npx", + "args": ["-y", "tsx", "src/index.ts"] + } + } +}