Skip to main content
Glama
ivanidknow

runsec

by ivanidknow
README.md
# RunSec MCP Server

**AI-powered MCP Server for Secure Coding. Zero noise, instant proof.**

RunSec MCP brings security verification into AI coding workflows so teams can ship faster with confidence.

## Requirements

- `RUNSEC_API_KEY` environment variable is required.
- Node.js 18+ recommended.

## Installation

RunSec MCP is distributed via npm and can be launched directly with:

```bash
npx -y @runsec/mcp@latest
```

### Cursor

Add this to your MCP configuration:

```json
{
  "mcpServers": {
    "runsec": {
      "command": "npx",
      "args": ["-y", "@runsec/mcp@latest"],
      "env": {
        "RUNSEC_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

### Windsurf

Add this to your MCP server configuration:

```json
{
  "mcpServers": {
    "runsec": {
      "command": "npx",
      "args": ["-y", "@runsec/mcp@latest"],
      "env": {
        "RUNSEC_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

### Claude Desktop

Add this to your Claude Desktop MCP configuration:

```json
{
  "mcpServers": {
    "runsec": {
      "command": "npx",
      "args": ["-y", "@runsec/mcp@latest"],
      "env": {
        "RUNSEC_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

## Links

- Website: [runsec.io](https://runsec.io)
- npm: [@runsec/mcp](https://www.npmjs.com/package/@runsec/mcp)