Mcp
@aikidosec/mcp
Aikido MCP server
0 downloads
v1.0.3
Capabilities
tools
Installation
Quick Install
Install using the MCPSearch CLI (recommended)
mcp install @aikidosec/mcpDon't have the CLI? Install it first
Run with npx
Run directly without installing
npx -y @aikidosec/mcpManual Configuration
Add to your MCP client configuration file
CClaude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aikidosec/mcp"
]
}
}
}CuCursor
Add to ~/.cursor/mcp.json
{
"mcp": {
"servers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aikidosec/mcp"
]
}
}
}
}VSVS Code / Continue.dev
Add to .vscode/mcp.json or Continue settings
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aikidosec/mcp"
]
}
}
}About
# Aikido MCP Server
A lightweight Model Context Protocol (MCP) server that exposes Aikido’s Code and Secrets Scan as a tool for AI coding agents and IDEs. It lets your agent scan code and returns machine-readable findings you can triage or fix.
## Prerequisites
- **Node.js** 18 or newer
- An **Aikido API key** (get yours from [Aikido Security](https://app.aikido.dev))
## Configuration
### API Key Setup
The MCP server requires an Aikido API key to authenticate with the Aikido API. You can provide it in two ways:
1. **Via MCP Configuration (Recommended)**: Set the `AIKIDO_API_KEY` environment variable in your MCP configuration file
2. **Via System Environment Variable**: Set `AIKIDO_API_KEY` as a system environment variable
## Add to your IDE or agent
Below are example configurations to add to your the Aikido MCP to your IDE.
### Cursor
Go to `Settings` > `Cursor Settings` > `MCP & Integrations` > `New MCP server`
Add the following configuration to your Cursor `~/.cursor/mcp.json` file. See [Cursor MCP docs](https://docs.cursor.com/en/context/mcp) for more info.
```json
{
"mcpServers": {
"aikido": {
"command": "npx",
"args": ["-y", "@aikidosec/mcp"],
"env": {
"AIKIDO_API_KEY": "your-api-key-here"
}
}
}
}
```
**Note**: Replace `"your-api-key-here"` with your actual Aikido API key.
### Windsurf
Add the following config to `~/.codeium/windsurf/mcp_config.json`. See [Windsurf MCP docs](https://docs.windsurf.com/windsurf/cascade/mcp) for more info.
```json
{
"mcpServers": {
"aikido": {
"command": "npx",
"args": ["-y", "@aikidosec/mcp"],
"env": {
"AIKIDO_API_KEY": "your-api-key-here"
}
}
}
}
```
**Note**: Replace `"your-api-key-here"` with your actual Aikido API key.
### VS Code
Open the VS Code Command Palette by using Ctrl+⇧Shift+P or ⌘Command+⇧Shift+P (macOS). Type `MCP: Open User Configuration`.
Add the following config to the MCP config file. See [VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) for more info.
```json
{
"servers": {
"aikido": {
"command": "npx",
"args": ["-y", "@aikidosec/mcp"],
"env": {
"AIKIDO_API_KEY": "your-api-key-here"
}
}
}
}
```
**Note**: Replace `"your-api-key-here"` with your actual Aikido API key.
Reviews
No reviews yet. Be the first to review this package!
Quick Install
Install using the MCPSearch CLI (recommended)
mcp install @aikidosec/mcpDon't have the CLI? Install it first
Run with npx
Run directly without installing
npx -y @aikidosec/mcpManual Configuration
Add to your MCP client configuration file
CClaude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aikidosec/mcp"
]
}
}
}CuCursor
Add to ~/.cursor/mcp.json
{
"mcp": {
"servers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aikidosec/mcp"
]
}
}
}
}VSVS Code / Continue.dev
Add to .vscode/mcp.json or Continue settings
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aikidosec/mcp"
]
}
}
}Compatible With
Claude CodeCursorWindsurfContinue.dev
Details
- Version
- 1.0.3
- License
- AGPL
- Category
- ai
- MCP Version
- 1.0
- Published
- 12/3/2025
- Updated
- 1/21/2026