Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,6 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/
CLAUDE.md
.claude/settings.local.json
src/mcp/courses-mcp/.python-version
67 changes: 67 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Attractions MCP",
"type": "shell",
"command": "uv run main.py",
"options": {
"cwd": "${workspaceFolder}/src/mcp/attractions-mcp"
},
"isBackground": true,
"problemMatcher": [],
"group": "build"
},
{
"label": "Run Weather MCP",
"type": "shell",
"command": "uv run main.py",
"options": {
"cwd": "${workspaceFolder}/src/mcp/weather-mcp"
},
"isBackground": true,
"problemMatcher": [],
"group": "build"
},
{
"label": "Run All MCP Servers",
"dependsOrder": "parallel",
"dependsOn": [
"Run Attractions MCP",
"Run Weather MCP"
],
"group": "build"
},
{
"label": "Run Courses MCP",
"type": "shell",
"command": "uv run main.py",
"options": {
"cwd": "${workspaceFolder}/src/mcp/courses-mcp"
},
"isBackground": true,
"problemMatcher": [],
"group": "build"
},
{
"label": "Run HR MCP",
"type": "shell",
"command": "uv run main.py",
"options": {
"cwd": "${workspaceFolder}/src/mcp/hr-competency-mcp"
},
"isBackground": true,
"problemMatcher": [],
"group": "build"
},
{
"label": "Run All Courses MCP Servers",
"dependsOrder": "parallel",
"dependsOn": [
"Run Courses MCP",
"Run HR MCP"
],
"group": "build"
}
]
}
Loading