spagestic commited on
Commit
368453f
·
verified ·
1 Parent(s): 8088298

Create .vscode\tasks.json

Browse files
Files changed (1) hide show
  1. .vscode//tasks.json +14 -0
.vscode//tasks.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "args": [],
6
+ "command": "source venv/Scripts/activate && python mcp_server.py",
7
+ "group": "build",
8
+ "isBackground": true,
9
+ "label": "Run MCP Server",
10
+ "problemMatcher": [],
11
+ "type": "shell"
12
+ }
13
+ ]
14
+ }