Snyk MCP Server
Provides tools for listing Snyk projects, querying security issues by severity, filtering by project or scope (Frontend/Backend), and obtaining normalized issue data with CVEs, dependencies, and fix information.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Snyk MCP Servershow critical security issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Snyk MCP Server
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
Related MCP server: Snyk MCP REST
Prerequisites
Node.js 18+
A Snyk account with API access
Snyk organization ID
Installation
Clone the repository:
git clone https://github.com/ozturkaburak/snyk-mcp-server.git
cd snyk-mcp-serverInstall dependencies:
npm installCreate
.envfile from template:
cp .env.example .envConfigure your Snyk credentials in
.env:
SNYK_TOKEN=your_snyk_token_here
SNYK_ORG_ID=your-org-id_hereUsage
Build the project
npm run buildRun in production mode
npm startRun in development mode
npm run devMCP Tools
This server provides three MCP tools:
1. list_snyk_projects
Lists all projects in your Snyk organization.
Parameters: None
Example:
list_snyk_projects()2. get_project_issues
Get all issues for a specific project.
Parameters:
projectId(required): The Snyk project IDseverity(optional): Filter by severity - "critical", "high", "medium", or "low"
Example:
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 IDsprojectNames(optional): Array of project names (fuzzy matching)severity(optional): Filter by severityscope(optional): "FE" (Frontend), "BE" (Backend), or "UNKNOWN"
Examples:
// 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 |
| Your Snyk API token | Yes |
| Your Snyk organization ID | Yes |
Getting Your Credentials
SNYK_TOKEN: Get from Snyk Account Settings
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.jsonDevelopment
TypeScript Development
npm run devBuilding
npm run buildAPI Documentation
See API_DOCUMENTATION.md for detailed Snyk REST API documentation.
Troubleshooting
Common Issues
"SNYK_TOKEN not set"
Make sure you created
.envfile with your token
"No projects found"
Verify your
SNYK_ORG_IDis correctCheck 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseBqualityDmaintenanceAllows developers to query security findings (SAST issues, secrets, patches) using natural language within AI-assisted tools like Claude Desktop, Cursor, and other MCP-compatible environments.Last updated179MIT- Alicense-qualityFmaintenanceProvides security scanning capabilities through Snyk CLI tools and REST API, enabling AI assistants to test projects for vulnerabilities, retrieve security issues, and manage Snyk projects with comprehensive SAST, container, and infrastructure as code scanning.Last updated2MIT
- Flicense-quality-maintenanceAn MCP server that provides Claude Code with access to Black Duck SCA for managing vulnerabilities, licenses, and policy violations through natural language. It enables users to query component risks and execute Black Duck Detect scans directly within their workspace.Last updated

@repomend/mcpofficial
Alicense-qualityCmaintenanceSecurity scanning MCP server that connects Claude to RepoMend findings, enabling vulnerability management and automated fix drafting.Last updatedMIT
Related MCP Connectors
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Scan any public GitHub MCP-server repo for security issues. 37 MCP-specific L1 rules, 8 languages.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ozturkaburak/snyk-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server