refactor: Gave the GitHub MCP server a default placeholder value that doesn't require the vault

This commit is contained in:
2025-11-08 16:09:32 -07:00
parent efbe76e1fc
commit 46517a4e15
4 changed files with 16 additions and 4 deletions
-2
View File
@@ -1,5 +1,3 @@
## v0.1.2 (2025-11-08)
## v0.1.1 (2025-11-08)
## v0.1.0 (2025-11-07)
Generated
+1 -1
View File
@@ -3089,7 +3089,7 @@ dependencies = [
[[package]]
name = "loki-ai"
version = "0.1.2"
version = "0.1.1"
dependencies = [
"ansi_colours",
"anyhow",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "loki-ai"
version = "0.1.2"
version = "0.1.1"
edition = "2024"
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
description = "An all-in-one, batteries included LLM CLI Tool"
+14
View File
@@ -1,5 +1,19 @@
{
"mcpServers": {
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN"
}
},
"docker": {
"command": "uvx",
"args": ["mcp-server-docker"]