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}" + } + } + } +}