From d66797d6da0f49eb36894fe9deeed3a79d75c670 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Wed, 16 Jul 2025 13:56:27 +0200 Subject: [PATCH] chore: add github mcp --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7071ed94e9ec656ea06652c421e6f2441962bf58..91301808b695c7fd40724b04a764cd7e8c1f587f 100644 --- a/README.md +++ b/README.md @@ -82,15 +82,22 @@ Crush can use LSPs for additional context to help inform its decisions, just lik Crush can also use MCPs for additional context. Add LSPs to the config like so: -``` +```json { "mcp": { "context7": { "command": "", "url": "https://mcp.context7.com/mcp", "type": "http" + }, + "github": { + "type": "http", + "url": "https://api.githubcopilot.com/mcp/", + "headers": { + "Authorization": "$(echo Bearer $GH_MCP_TOKEN)" + } } - }, + } } ```