Manages penetration testing reports and vulnerabilities via a REST API.
A Model Context Protocol (MCP) server for managing penetration testing reports and vulnerabilities. This server provides tools to create, read, update, and delete reports and vulnerabilities through a REST API.
Download and install Node.js (version 18 or higher) from nodejs.org.
On macOS:
# Using Homebrew (recommended)
brew install node
# Or download from nodejs.org
On Windows:
On Linux:
# Ubuntu/Debian
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
# CentOS/RHEL/Fedora
curl -fsSL https://rpm.nodesource.com/setup_20.x | sudo bash -
sudo dnf install nodejs npm
node --version # Should show v18.0.0 or higher
npm --version # Should show npm version
git clone https://github.com/yourusername/mcp-reports-server.git
cd mcp-reports-server
npm install
This will install:
@modelcontextprotocol/sdk
: The MCP SDK for Node.jsaxios
: HTTP client for making API requestsnpm start
You should see:
Reports MCP server running on stdio
No JWT token configured - bearerToken parameter required for all requests
Press Ctrl+C
to stop the server.
Obtain your JWT authentication token from your reports API system.
Add the server to your Claude Desktop MCP configuration file:
Location of config file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Configuration:
{
"mcpServers": {
"reports-server": {
"command": "node",
"args": ["/full/path/to/your/reports-mcp-server/server.js"],
"env": {
"REPORTS_JWT_TOKEN": "your_actual_jwt_token_here"
}
}
}
}
Important Notes:
/full/path/to/your/reports-mcp-server/server.js
with the actual full path to your server.js fileyour_actual_jwt_token_here
with your real JWT token/
in paths, even on WindowsExample paths:
/Users/username/reports-mcp-server/server.js
C:/Users/username/reports-mcp-server/server.js
Close and reopen Claude Desktop for the configuration to take effect.
An SSE-based MCP server that allows LLM-powered applications to interact with OCI registries. It provides tools for retrieving information about container images, listing tags, and more.
connects QGIS Desktop to Claude AI through the MCP. This integration enables prompt-assisted project creation, layer loading, code execution, and more.
Popular MCP server that enables AI agents to scaffold, build, run and test iOS, macOS, visionOS and watchOS apps or simulators and wired and wireless devices. It has powerful UI-automation capabilities like controlling the simulator, capturing run-time logs, as well as taking screenshots and viewing the accessibility hierarchy.
Set up MCP servers in Claude Desktop
A local MCP server for developers that mirrors your in-development MCP server, allowing seamless restarts and tool updates so you can build, test, and iterate on your MCP server within the same AI session without interruption.
ALAPI MCP Tools,Call hundreds of API interfaces via MCP
Provides access to OpenTelemetry traces and metrics through Logfire.
Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning with Cycode.
MCP server for text-to-graphql, integrates with Claude Desktop and Cursor.
Provides API documentation from Apifox projects as a data source for AI programming tools that support MCP.