No description
Find a file
Lyuboslav Lyubenov 1e74a9a88f update version
2025-06-30 19:42:11 +03:00
bin add command for npx 2025-06-21 15:35:59 +03:00
src Merge branch 'main' of https://github.com/LyuboslavLyubenov/search-solodit-mcp 2025-06-30 19:31:56 +03:00
.gitignore Initial commit 2025-06-21 14:33:33 +03:00
.node-version Initial commit 2025-06-21 14:33:33 +03:00
Dockerfile Initial commit 2025-06-21 14:33:33 +03:00
package.json update version 2025-06-30 19:42:11 +03:00
pnpm-lock.yaml add pnpm lock file 2025-06-30 19:31:37 +03:00
README.md Update readme 2025-06-21 15:42:17 +03:00
solodit-mcp.gif Add gif 2025-06-21 15:17:06 +03:00
solodit-mcp.webm add webm 2025-06-21 15:19:53 +03:00
tsconfig.json Initial commit 2025-06-21 14:33:33 +03:00

Solodit MCP Server

A Model Context Protocol (MCP) server for searching and retrieving Solodit vulnerability reports.

https://github.com/user-attachments/assets/057ca6a2-8ca2-400c-b92b-9ed585ae2e79

Features

  • Search vulnerability reports by keywords
  • Get full report content

Setup

Easiest way is to start the server with npx or with docker:

npx @lyuboslavlyubenov/solodit-mcp

or with remote docker:

docker run -p 3000:3000 lyuboslavl/solodit-mcp:latest

Local setup

Using Docker

  1. Build the image:
docker build -t solodit-mcp .
  1. Run the container:
docker run -p 3000:3000 solodit-mcp

Local build

  1. Install dependencies:
npm install -g pnpm && pnpm install
  1. Build and run:
pnpm build && node dist/index.js

IDE Integration

Add this to your mcp.json configuration file:

{
  "mcpServers": {
    "solodit-mcp": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

API Usage

The server exposes an MCP endpoint at POST /mcp with these tools:

  1. Search Tool (search):
  • Input: { "keywords": "your search terms" }
  • Returns: JSON array of matching report titles
  1. Get by Title (get-by-title):
  • Input: { "title": "exact report title" }
  • Returns: Full content of the matching report