Newer
Older
TelosDB / .vscode / tasks.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 8 days ago 450 bytes Add MCP server with llama.cpp integration and docs
{
	"version": "2.0.0",
	"tasks": [
		{
			"label": "Run Electron MCP Server",
			"type": "shell",
			"command": "bun start",
			"isBackground": true,
			"problemMatcher": {
				"pattern": [
					{
						"regexp": ".",
						"file": 1,
						"location": 2,
						"message": 3
					}
				],
				"background": {
					"activeOnStart": true,
					"beginsPattern": "Electron app is ready",
					"endsPattern": "MCP SSE Server listening"
				}
			}
		}
	]
}