1. Conduid
  2. Developer Tools
  3. Search Solodit MCP
MCP server · Developer Tools

Search Solodit MCP

MCP server for searching and retrieving Solodit vulnerability reports.

Unclaimed last commit a year ago devtools
46Fair

Scored 3 months ago · breakdown

About Search Solodit MCP

Search Solodit MCP is an MCP server published by LyuboslavLyubenov in the Developer Tools category: mCP server for searching and retrieving Solodit vulnerability reports. It has been installed 0 times through Conduid.

The repository has 40 stars and 12 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx search-solodit-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Search Solodit MCP

Powered by Claude · Grounded in docs

I know everything about Search Solodit MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

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

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Search Solodit MCP

How do I install Search Solodit MCP?

Run npx search-solodit-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Search Solodit MCP safe to use with an AI agent?

Its trust score is 46 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Search Solodit MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.