Snyk Server
БесплатноНе проверенIntegrates Snyk security scanning with MCP clients like Claude Code, enabling listing of projects, querying issues by severity, and filtering by project or scop
Описание
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
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
- Clone the repository:
git clone https://github.com/ozturkaburak/snyk-mcp-server.git
cd snyk-mcp-server
- Install dependencies:
npm install
- Create
.envfile from template:
cp .env.example .env
- 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:
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 |
|---|---|---|
SNYK_TOKEN |
Your Snyk API token | Yes |
SNYK_ORG_ID |
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.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
.envfile with your token
"No projects found"
- Verify your
SNYK_ORG_IDis 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
Установка Snyk Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/ozturkaburak/snyk-mcp-serverFAQ
Snyk Server MCP бесплатный?
Да, Snyk Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Snyk Server?
Нет, Snyk Server работает без API-ключей и переменных окружения.
Snyk Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Snyk Server в Claude Desktop, Claude Code или Cursor?
Открой Snyk Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Snyk Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
