From c4fe4333139494b141ba84d1eb125eebd03f9f4f Mon Sep 17 00:00:00 2001 From: WieErWill Date: Wed, 11 Jun 2025 19:13:50 +0000 Subject: [PATCH] add config.json configuring MCP services --- config.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..71e030e --- /dev/null +++ b/config.json @@ -0,0 +1,27 @@ +{ + "globalShortcut": "Ctrl+Space", + "mcpServers": { + "sqlite": { + "command": "uvx", + "args": [ + "mcp-server-sqlite", + "--db-path", + "./Car_Database.db" + ] + }, + "ddg-search": { + "command": "uvx", + "args": [ + "duckduckgo-mcp-server" + ] + }, + "filesystem": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-filesystem", + "./ollama-mcp" + ] + } + } +} \ No newline at end of file