From ad3e811fdaa05b2609ee0c0e5ee4cb5ad564ca44 Mon Sep 17 00:00:00 2001 From: Byron Williams Date: Mon, 29 Jun 2026 08:14:25 -0700 Subject: [PATCH] chore(mcp): add context7 and sonarqube MCP servers --- .gitignore | 3 +++ .mcp.json | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .mcp.json diff --git a/.gitignore b/.gitignore index 6caed2b..274fc9d 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,6 @@ sbom.cdx.json # Ignore specific directories /styles/ /ledgerbase_secure_env/service-account.json + +# Track project MCP server config (exception to *.json) +!.mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..75af5b6 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,18 @@ +{ + "mcpServers": { + "context7": { + "command": "npx", + "args": [ + "-y", + "@upstash/context7-mcp@2.2.4" + ] + }, + "sonarqube": { + "type": "http", + "url": "http://localhost:8091/mcp", + "headers": { + "Authorization": "Bearer ${SONARQUBE_TOKEN}" + } + } + } +}