Document channel architecture, M3U/XMLTV integration with Jellyfin, and fork maintenance strategy for the archived upstream. Also includes CLAUDE.md updates for implementer workflow and project boundaries. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"mcpServers": {
|
|
"docker-mcp": {
|
|
"command": "uvx",
|
|
"args": [
|
|
"mcp-server-docker"
|
|
],
|
|
"env": {
|
|
"DOCKER_HOST": "ssh://timothy@192.168.1.99"
|
|
}
|
|
},
|
|
"ssh-mcp": {
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"ssh-mcp",
|
|
"--",
|
|
"--host=192.168.1.99",
|
|
"--user=timothy"
|
|
],
|
|
"env": {}
|
|
},
|
|
"gitea": {
|
|
"command": "gitea-mcp-server",
|
|
"args": [
|
|
"-t", "stdio",
|
|
"-host", "http://192.168.1.95:3000",
|
|
"-token", "8341af0733ab9ce084ea7adf38b76aa9ebc3bd67"
|
|
],
|
|
"env": {}
|
|
},
|
|
"csharp-lsp": {
|
|
"command": "/usr/local/share/dotnet/dotnet",
|
|
"args": [
|
|
"run",
|
|
"--project", "/Users/timothy/ersatztv/.mcp/csharp-lsp-mcp/csharp-lsp-mcp/src/CSharpLspMcp",
|
|
"-c", "Release"
|
|
],
|
|
"env": {
|
|
"PATH": "/usr/local/share/dotnet:/Users/timothy/.dotnet/tools:/usr/bin:/bin:/usr/sbin:/sbin"
|
|
}
|
|
},
|
|
"nuget": {
|
|
"command": "/usr/local/share/dotnet/dotnet",
|
|
"args": [
|
|
"dnx",
|
|
"NuGet.Mcp.Server",
|
|
"--source", "https://api.nuget.org/v3/index.json",
|
|
"--yes"
|
|
],
|
|
"env": {
|
|
"DOTNET_ROOT": "/usr/local/share/dotnet"
|
|
}
|
|
}
|
|
}
|
|
}
|