asterisk-mcp-server
by winfunc·★ 33·Score 38
Asterisk MCP server provides security scanning tools for code snippets and codebases via the Asterisk API.
Overview
Asterisk MCP Server is a middleware component that connects to the Asterisk security API to provide real-time security analysis of code. It implements the Model Context Protocol to expose security scanning tools to AI assistants like Claude, Cursor, Cline, and Windsurf. The server supports code snippet scanning, codebase scanning, and verification of code changes with a beautiful settings UI and flexible transport options including stdio and SSE protocols.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server if you need security scanning integration for your AI coding assistant and are already using or willing to integrate with the Asterisk API.
When NOT to choose this
Avoid if you need offline security scanning capabilities or prefer open-source solutions without vendor dependencies.
Tools this server exposes
4 tools extracted from the READMEscan_snippetScans individual code snippets for security vulnerabilities.
scan_codebaseScans multiple files for security issues.
verifyVerifies if code changes introduce security vulnerabilities.
settingsOpens the settings UI when the user enters '/asterisk'.
Comparable tools
Installation
Installation
- Install Python 3.10+
- Install using pipx or uvx:
``bash pipx install asterisk-mcp-server # or uvx install asterisk-mcp-server ``
- Configure in your AI assistant (example for Claude Desktop):
``json { "mcpServers": { "asterisk-mcp": { "command": "pipx", "args": [ "run", "asterisk-mcp-server", "--api-url", "https://api.mcp.asterisk.so", "--transport", "stdio", "--key", "YOUR_API_KEY" ], "timeout": 3600 } } } ``
FAQ
- How do I get an API key?
- You can get your API key from https://app.mcp.asterisk.so
- What transport protocols are supported?
- The server supports both stdio and SSE (Server-Sent Events) transport protocols.
Compare asterisk-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.