From 695a4b9ecb2ac984738af137f6ae536393012440 Mon Sep 17 00:00:00 2001 From: javayhu Date: Fri, 14 Mar 2025 01:03:16 +0800 Subject: [PATCH] chore: add MCP server configuration for console-ninja - Introduce a new configuration file `.cursor/mcp.json` to define the MCP server settings for console-ninja. - Specify the command and arguments for the MCP server to streamline setup. --- .cursor/mcp.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .cursor/mcp.json diff --git a/.cursor/mcp.json b/.cursor/mcp.json new file mode 100644 index 0000000..c138370 --- /dev/null +++ b/.cursor/mcp.json @@ -0,0 +1,10 @@ +{ + "mcpServers": { + "console-ninja": { + "command": "node", + "args": [ + "~/.console-ninja/mcp/" + ] + } + } +} \ No newline at end of file