From fcd6fe30548a3ad56803f8ba4eb840ddc1c6c04e Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Sat, 21 Jun 2025 11:20:29 -0400 Subject: [PATCH] feat: add initial mcp.json configuration for server commands --- .roo/mcp.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .roo/mcp.json diff --git a/.roo/mcp.json b/.roo/mcp.json new file mode 100644 index 0000000..6d69702 --- /dev/null +++ b/.roo/mcp.json @@ -0,0 +1,28 @@ +{ + "mcpServers": { + "git": { + "command": "uvx", + "args": [ + "mcp-server-git", + "--repository", + "/Volumes/macminissd/Projects/ThrillWiki/thrillwiki_laravel" + ] + }, + "filesystem": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-filesystem", + "/Volumes/macminissd/Projects/ThrillWiki/thrillwiki_laravel" + ] + }, + "postgres": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-postgres", + "postgresql://192.168.86.3:5432" + ] + } + } +} \ No newline at end of file