ghost-mcp-server
Verified Safeby ghostsecurity
Overview
Provides a Model Context Protocol (MCP) server for the Ghost Security API, enabling AI agents to securely manage security findings and analyze repository data through standardized tools.
Installation
npx ghostsecurity-mcpEnvironment Variables
- GHOST_SECURITY_API_KEY
- GHOST_SECURITY_BASE_URL
- GHOST_SECURITY_REPO_ID
- ANTHROPIC_API_KEY
Security Notes
The core server and client code adhere to standard security practices for API interaction, utilizing API keys passed via environment variables or command-line arguments for authentication. Responses containing large lists of findings are intelligently truncated to prevent excessive token usage by AI models, which is a good reliability and cost-control measure. No direct use of 'eval' or other dynamic code execution that could lead to runtime injection vulnerabilities was observed. Installation scripts (e.g., `install.js`, `setup-claude-code.sh`) use `execSync` for system commands and directly embed user-provided API keys into JSON configuration files. While this is a common installer pattern, it carries a minor, theoretical risk if a maliciously crafted API key were to bypass string escaping during setup. This is a setup-time, not runtime, consideration, and assumes the user trusts the installer script itself.
Similar Servers
mcp-zap-server
Orchestrates OWASP ZAP security scanning actions (spider, active scan, OpenAPI import, reporting) via the Model Context Protocol, enabling AI agents like Claude Desktop or Cursor to perform security testing.
Mcpwn
Automated security testing framework for Model Context Protocol (MCP) servers, detecting RCE, path traversal, prompt injection, and protocol vulnerabilities.
Ghost-MCP-Server
Manages a Ghost CMS instance programmatically by exposing its Admin API as an MCP Server, allowing AI agents or other systems to create, update, delete, and retrieve content (posts, pages, tags, members, newsletters, tiers) and upload images.
MCP-Security-Framework
Automated security assessment and vulnerability detection for Model Context Protocol (MCP) servers.