Skip to content

Commit 4ebcbcf

Browse files
committed
Add Aikido Security MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit 4ebcbcf

1 file changed

Lines changed: 71 additions & 0 deletions

File tree

servers/com.aikido-mcp-npx.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.aikido-mcp-npx",
4+
"name": "Aikido Security (npx)",
5+
"alias": "aikido",
6+
"description": "Scan code and secrets with Aikido Security directly from your AI coding agent. Exposes Aikido's Code and Secrets Scan as an MCP tool returning machine-readable findings you can triage, fix, or ignore.",
7+
"logo": "https://avatars.githubusercontent.com/u/110776285?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"security"
11+
],
12+
"tags": [
13+
"aikido",
14+
"security",
15+
"code-scanning",
16+
"secrets-scanning",
17+
"sast",
18+
"appsec"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@aikidosec/mcp"
26+
],
27+
"env": {
28+
"AIKIDO_API_KEY": "${input:AIKIDO_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "AIKIDO_API_KEY",
34+
"label": "Aikido Personal Access Token",
35+
"description": "Personal Access Token for headless/CI use. Optional: if omitted, the first tool call returns one-time browser sign-in links (EU / US / ME) instead. When set, AIKIDO_API_KEY takes precedence over the cached browser token. Generate it in the Aikido dashboard under Settings > Integrations > MCP Server.",
36+
"type": "text",
37+
"required": false,
38+
"secret": true,
39+
"placeholder": "aik_********************************",
40+
"obtain": {
41+
"url": "https://app.aikido.dev",
42+
"instructions": "1. Sign in to the Aikido dashboard at app.aikido.dev\n2. Go to Settings > Integrations > MCP Server\n3. Generate a Personal Access Token\n4. Copy the token\n\nAlternatively, leave this blank and run any Aikido tool: the first call returns one-time browser sign-in links (EU / US / ME) for your account region.",
43+
"button_label": "Open Aikido Dashboard"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Generate a Personal Access Token in the Aikido dashboard under Settings > Integrations > MCP Server and provide it as AIKIDO_API_KEY. Alternatively, leave it unset to use the interactive browser sign-in flow (one-time links per region returned on the first tool call)."
52+
},
53+
"contributor": {
54+
"name": "Aikido Security",
55+
"github": "AikidoSec",
56+
"url": "https://www.aikido.dev"
57+
},
58+
"links": {
59+
"homepage": "https://www.aikido.dev",
60+
"documentation": "https://www.npmjs.com/package/@aikidosec/mcp"
61+
},
62+
"platforms": [
63+
"all"
64+
],
65+
"capabilities": {
66+
"tools": true,
67+
"resources": false,
68+
"prompts": false,
69+
"read_only_mode": false
70+
}
71+
}

0 commit comments

Comments
 (0)