Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Integrates Snyk security scanning with MCP clients like Claude Code, enabling listing of projects, querying issues by severity, and filtering by project or scope.

README.md

Snyk MCP Server

![License: MIT](https://opensource.org/licenses/MIT) ![TypeScript](https://www.typescriptlang.org/) ![MCP](https://modelcontextprotocol.io/)

A Model Context Protocol (MCP) server that integrates Snyk security scanning with Claude Code and other MCP clients.

Features

  • 🔍 List all Snyk projects in your organization
  • 🐛 Query security issues by severity (critical, high, medium, low)
  • 🎯 Filter issues by project name or ID
  • 🔧 Scope filtering (Frontend/Backend)
  • 📊 Get normalized issue data with CVEs, dependencies, and fix information

Prerequisites

  • Node.js 18+
  • A Snyk account with API access
  • Snyk organization ID

Installation

  1. Clone the repository:
git clone https://github.com/ozturkaburak/snyk-mcp-server.git
cd snyk-mcp-server
  1. Install dependencies:
npm install
  1. Create .env file from template:
cp .env.example .env
  1. Configure your Snyk credentials in .env:
SNYK_TOKEN=your_snyk_token_here
SNYK_ORG_ID=your-org-id_here

Usage

Build the project

npm run build

Run in production mode

npm start

Run in development mode

npm run dev

MCP Tools

This server provides three MCP tools:

1. list_snyk_projects

Lists all projects in your Snyk organization.

Parameters: None

Example: ``typescript list_snyk_projects() ``

2. get_project_issues

Get all issues for a specific project.

Parameters:

  • projectId (required): The Snyk project ID
  • severity (optional): Filter by severity - "critical", "high", "medium", or "low"

Example: ``typescript get_project_issues({ projectId: "abc-123-def-456", severity: "critical" }) ``

3. get_snyk_issues

Get issues across multiple projects with advanced filtering.

Parameters:

  • projectIds (optional): Array of project IDs
  • projectNames (optional): Array of project names (fuzzy matching)
  • severity (optional): Filter by severity
  • scope (optional): "FE" (Frontend), "BE" (Backend), or "UNKNOWN"

Examples: ```typescript // Get all critical backend issues across multiple microservices get_snyk_issues({ projectNames: [ "api-gateway", "auth-service", "payment-service", "user-service", "notification-service" ], severity: "critical", scope: "BE" })

// Get high severity frontend issues get_snyk_issues({ projectNames: ["web-app", "mobile-app"], severity: "high", scope: "FE" })

// Get all critical issues without filtering by project get_snyk_issues({ severity: "critical" }) ```

Integration with Claude Code

Add this to your Claude Code MCP settings (.claude/mcp_settings.json):

{
  "mcpServers": {
    "snyk-local": {
      "command": "node",
      "args": ["/path/to/snyk-mcp-server/dist/index.js"],
      "env": {
        "SNYK_TOKEN": "your-snyk-token",
        "SNYK_ORG_ID": "your-org-id"
      }
    }
  }
}

Configuration

The server uses environment variables for configuration:

| Variable | Description | Required | |----------|-------------|----------| | SNYK_TOKEN | Your Snyk API token | Yes | | SNYK_ORG_ID | Your Snyk organization ID | Yes |

Getting Your Credentials

  1. SNYK_TOKEN: Get from Snyk Account Settings
  2. SNYK_ORG_ID: Find in your org settings URL: https://app.snyk.io/org/your-org-id/manage/settings

Project Structure

snyk-mcp-server/
├── src/
│   ├── index.ts      # MCP server implementation
│   ├── snyk.ts       # Snyk API client
│   └── types.ts      # TypeScript type definitions
├── dist/             # Compiled JavaScript
├── .env.example      # Environment template
└── package.json

Development

TypeScript Development

npm run dev

Building

npm run build

API Documentation

See API_DOCUMENTATION.md for detailed Snyk REST API documentation.

Troubleshooting

Common Issues

"SNYK_TOKEN not set"

  • Make sure you created .env file with your token

"No projects found"

  • Verify your SNYK_ORG_ID is correct
  • Check your token has access to the organization

"Critical issues not showing"

  • Some issues may not be synced to REST API yet
  • Check the issue in Snyk UI to verify it exists
  • See FINDINGS_REPORT.md for analysis

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see the LICENSE file for details.

Related Resources

Author

Built with ❤️ for secure software development

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.