Skip to content

Commit c10eaef

Browse files
authored
Add Codacy MCP server (#182)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 78aff09 commit c10eaef

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

servers/com.codacy-mcp-npx.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.codacy-mcp-npx",
4+
"name": "Codacy (npx)",
5+
"alias": "codacy",
6+
"description": "Connect to Codacy to analyze code quality and security, run static analysis (SAST, secrets, dependency, and IaC scans), browse repositories, list issues, and surface coverage data from your Codacy account via npx.",
7+
"logo": "https://avatars.githubusercontent.com/u/1834093?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"security"
12+
],
13+
"tags": [
14+
"codacy",
15+
"code-quality",
16+
"static-analysis",
17+
"security",
18+
"sast",
19+
"code-review"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@codacy/codacy-mcp"
27+
],
28+
"env": {
29+
"CODACY_ACCOUNT_TOKEN": "${input:CODACY_ACCOUNT_TOKEN}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "CODACY_ACCOUNT_TOKEN",
35+
"label": "Codacy Account API Token",
36+
"description": "Account API Token from your Codacy account. Used to authenticate requests to the Codacy API for code analysis, repositories, issues, and coverage.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "********************************",
41+
"obtain": {
42+
"url": "https://app.codacy.com/account/access-management",
43+
"instructions": "1. Sign in to Codacy at https://app.codacy.com\n2. Go to your Account > Access Management (Account API Tokens)\n3. Click 'Create API Token'\n4. Copy the generated Account API Token",
44+
"button_label": "Create API Token"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Create an Account API Token in your Codacy account at https://app.codacy.com/account/access-management and set it as CODACY_ACCOUNT_TOKEN."
53+
},
54+
"contributor": {
55+
"name": "Codacy",
56+
"github": "codacy",
57+
"url": "https://www.codacy.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/codacy/codacy-mcp-server",
61+
"homepage": "https://www.codacy.com",
62+
"documentation": "https://github.com/codacy/codacy-mcp-server#readme"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
},
73+
"changelog_url": "https://github.com/codacy/codacy-mcp-server/releases"
74+
}

0 commit comments

Comments
 (0)