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.
This commit is contained in:
javayhu 2025-03-14 01:03:16 +08:00
parent dab2bbac0c
commit 695a4b9ecb

10
.cursor/mcp.json Normal file
View File

@ -0,0 +1,10 @@
{
"mcpServers": {
"console-ninja": {
"command": "node",
"args": [
"~/.console-ninja/mcp/"
]
}
}
}