-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathserver.json
More file actions
42 lines (42 loc) · 1.25 KB
/
server.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.SonarSource/sonarqube-mcp-server",
"description": "An MCP server that enables integration with SonarQube Server or Cloud for code quality and security.",
"repository": {
"url": "https://github.com/SonarSource/sonarqube-mcp-server",
"source": "github"
},
"version": "1.13.0",
"packages": [
{
"registryType": "oci",
"identifier": "docker.io/mcp/sonarqube:latest",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Your SonarQube USER token",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "SONARQUBE_TOKEN"
},
{
"description": "Your SonarQube Cloud organization key (if using SonarQube Cloud)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "SONARQUBE_ORG"
},
{
"description": "Your SonarQube Server URL (if using SonarQube Server)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "SONARQUBE_URL"
}
]
}
]
}