From 83a65527004adc27ff8ce9c62bfa40e4af4be7c9 Mon Sep 17 00:00:00 2001 From: Eyal Toledano Date: Mon, 7 Apr 2025 04:15:25 -0400 Subject: [PATCH] Replace API keys with placeholders --- .cursor/mcp.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .cursor/mcp.json diff --git a/.cursor/mcp.json b/.cursor/mcp.json new file mode 100644 index 00000000..1bc744d9 --- /dev/null +++ b/.cursor/mcp.json @@ -0,0 +1,20 @@ +{ + "mcpServers": { + "taskmaster-ai": { + "command": "node", + "args": [ + "./mcp-server/server.js" + ], + "env": { + "ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY_HERE", + "PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE", + "MODEL": "claude-3-7-sonnet-20250219", + "PERPLEXITY_MODEL": "sonar-pro", + "MAX_TOKENS": 64000, + "TEMPERATURE": 0.4, + "DEFAULT_SUBTASKS": 5, + "DEFAULT_PRIORITY": "medium" + } + } + } +} \ No newline at end of file