We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents edb70e3 + 9994251 commit 327f17eCopy full SHA for 327f17e
.vscode/tasks.json
@@ -0,0 +1,32 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "Run (stdio)",
6
+ "type": "shell",
7
+ "command": "uv run mcp-python-starter --stdio",
8
+ "group": "test"
9
+ },
10
11
+ "label": "Run (HTTP)",
12
13
+ "command": "uv run mcp-python-starter --http",
14
15
16
17
+ "label": "Lint",
18
19
+ "command": "uv run ruff check mcp_starter/",
20
+ "group": {
21
+ "kind": "build",
22
+ "isDefault": true
23
+ }
24
25
26
+ "label": "Test",
27
28
+ "command": "uv run pytest",
29
30
31
+ ]
32
+}
0 commit comments