
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@aikidosec/mcp
Advanced tools
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.
The MCP server requires an Aikido API key to authenticate with the Aikido API. You can provide it in two ways:
AIKIDO_API_KEY environment variable in your MCP configuration fileAIKIDO_API_KEY as a system environment variableBelow are example configurations to add to your the Aikido MCP to your IDE.
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 for more info.
{
"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.
Add the following config to ~/.codeium/windsurf/mcp_config.json. See Windsurf MCP docs for more info.
{
"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.
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 for more info.
{
"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.
FAQs
Aikido MCP server
We found that @aikidosec/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: whatâs affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.